From ecdd04374a4cabdf682e427b59619ef2e42d2997 Mon Sep 17 00:00:00 2001 From: Michael Kuhn Date: Sat, 26 Jul 2014 02:00:49 +0200 Subject: [PATCH 01/56] Allow specifying the item source in unshareFromSelf(). --- lib/private/share/share.php | 13 +++++++------ lib/public/share.php | 4 ++-- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 673c0dc383a..80389625c61 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -718,23 +718,24 @@ class Share extends \OC\Share\Constants { /** * Unshare an item shared with the current user * @param string $itemType - * @param string $itemTarget + * @param string $itemOrigin Item target or source + * @param boolean $originIsSource true if $itemOrigin is the source, false if $itemOrigin is the target (optional) * @return boolean true on success or false on failure * * Unsharing from self is not allowed for items inside collections */ - public static function unshareFromSelf($itemType, $itemTarget) { - + public static function unshareFromSelf($itemType, $itemOrigin, $originIsSource = false) { + $originType = ($originIsSource) ? 'source' : 'target'; $uid = \OCP\User::getUser(); if ($itemType === 'file' || $itemType === 'folder') { - $statement = 'SELECT * FROM `*PREFIX*share` WHERE `item_type` = ? and `file_target` = ?'; + $statement = 'SELECT * FROM `*PREFIX*share` WHERE `item_type` = ? and `file_' . $originType . '` = ?'; } else { - $statement = 'SELECT * FROM `*PREFIX*share` WHERE `item_type` = ? and `item_target` = ?'; + $statement = 'SELECT * FROM `*PREFIX*share` WHERE `item_type` = ? and `item_' . $originType . '` = ?'; } $query = \OCP\DB::prepare($statement); - $result = $query->execute(array($itemType, $itemTarget)); + $result = $query->execute(array($itemType, $itemOrigin)); $shares = $result->fetchAll(); diff --git a/lib/public/share.php b/lib/public/share.php index 8566a38c61e..3a08fd59b72 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -265,8 +265,8 @@ class Share extends \OC\Share\Constants { * * Unsharing from self is not allowed for items inside collections */ - public static function unshareFromSelf($itemType, $itemTarget) { - return \OC\Share\Share::unshareFromSelf($itemType, $itemTarget); + public static function unshareFromSelf($itemType, $itemOrigin, $originIsSource = false) { + return \OC\Share\Share::unshareFromSelf($itemType, $itemOrigin, $originIsSource); } /** -- GitLab From 0a77a5ec1938529f4a190df33a35b3a0c9633e4f Mon Sep 17 00:00:00 2001 From: Michael Kuhn Date: Sat, 23 Aug 2014 12:05:19 +0200 Subject: [PATCH 02/56] Add unit tests for new unshareFromSelf() functionality. --- tests/lib/share/share.php | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/tests/lib/share/share.php b/tests/lib/share/share.php index 5920b44a8e0..072cf32cd66 100644 --- a/tests/lib/share/share.php +++ b/tests/lib/share/share.php @@ -314,6 +314,25 @@ class Test_Share extends PHPUnit_Framework_TestCase { $this->assertTrue(in_array('test.txt', $to_test)); $this->assertTrue(in_array('test1.txt', $to_test)); + // Unshare from self + $this->assertTrue(OCP\Share::unshareFromSelf('test', 'test.txt')); + $this->assertEquals(array('test1.txt'), OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET)); + + // Unshare from self via source + $this->assertTrue(OCP\Share::unshareFromSelf('test', 'share.txt', true)); + $this->assertEquals(array(), OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET)); + + OC_User::setUserId($this->user1); + $this->assertTrue(OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user2, OCP\PERMISSION_READ)); + OC_User::setUserId($this->user3); + $this->assertTrue(OCP\Share::shareItem('test', 'share.txt', OCP\Share::SHARE_TYPE_USER, $this->user2, OCP\PERMISSION_READ)); + + OC_User::setUserId($this->user2); + $to_test = OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET); + $this->assertEquals(2, count($to_test)); + $this->assertTrue(in_array('test.txt', $to_test)); + $this->assertTrue(in_array('test1.txt', $to_test)); + // Remove user OC_User::setUserId($this->user1); OC_User::deleteUser($this->user1); @@ -513,6 +532,11 @@ class Test_Share extends PHPUnit_Framework_TestCase { OC_User::setUserId($this->user2); $this->assertEquals(array('test.txt'), OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET)); + // Unshare from self via source + OC_User::setUserId($this->user1); + $this->assertTrue(OCP\Share::unshareFromSelf('test', 'share.txt', true)); + $this->assertEquals(array(), OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET)); + // Remove group OC_Group::deleteGroup($this->group1); OC_User::setUserId($this->user4); -- GitLab From 4bc72cc4e0899f9b597e4dd8f3c17a2603c1059d Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Sun, 24 Aug 2014 20:22:15 +0200 Subject: [PATCH 03/56] Remove different URL for EE This can now be achieved by setting `appstoreenabled` to `false` in config.php --- lib/private/ocsclient.php | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/lib/private/ocsclient.php b/lib/private/ocsclient.php index e4cce6b2260..d173f39eba7 100644 --- a/lib/private/ocsclient.php +++ b/lib/private/ocsclient.php @@ -36,13 +36,7 @@ class OC_OCSClient{ * to set it in the config file or it will fallback to the default */ private static function getAppStoreURL() { - if(OC_Util::getEditionString()===''){ - $default='https://api.owncloud.com/v1'; - }else{ - $default=''; - } - $url = OC_Config::getValue('appstoreurl', $default); - return($url); + return \OC::$server->getConfig()->getSystemValue('appstoreurl', 'https://api.owncloud.com/v1'); } -- GitLab From bff39f796e16142346d14ce9b61512644ba6f6cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Thu, 8 May 2014 15:23:06 +0200 Subject: [PATCH 04/56] add select2 to app specific thirdparty --- .../3rdparty/select2/.gitignore | 2 + apps/files_external/3rdparty/select2/LICENSE | 18 + .../files_external/3rdparty/select2/README.md | 90 + .../3rdparty/select2/bower.json | 8 + .../3rdparty/select2/component.json | 66 + .../3rdparty/select2/composer.json | 29 + .../3rdparty/select2/package.json | 20 + .../3rdparty/select2/release.sh | 79 + .../3rdparty/select2/select2-bootstrap.css | 87 + .../3rdparty/select2/select2-spinner.gif | Bin 0 -> 1849 bytes .../3rdparty/select2/select2.css | 646 +++ .../3rdparty/select2/select2.jquery.json | 36 + .../3rdparty/select2/select2.js | 3448 +++++++++++++++++ .../3rdparty/select2/select2.min.js | 22 + .../3rdparty/select2/select2.png | Bin 0 -> 613 bytes .../3rdparty/select2/select2_locale_ar.js | 17 + .../3rdparty/select2/select2_locale_bg.js | 18 + .../3rdparty/select2/select2_locale_ca.js | 17 + .../3rdparty/select2/select2_locale_cs.js | 49 + .../3rdparty/select2/select2_locale_da.js | 17 + .../3rdparty/select2/select2_locale_de.js | 15 + .../3rdparty/select2/select2_locale_el.js | 17 + .../select2/select2_locale_en.js.template | 18 + .../3rdparty/select2/select2_locale_es.js | 15 + .../3rdparty/select2/select2_locale_et.js | 17 + .../3rdparty/select2/select2_locale_eu.js | 43 + .../3rdparty/select2/select2_locale_fa.js | 19 + .../3rdparty/select2/select2_locale_fi.js | 28 + .../3rdparty/select2/select2_locale_fr.js | 16 + .../3rdparty/select2/select2_locale_gl.js | 43 + .../3rdparty/select2/select2_locale_he.js | 17 + .../3rdparty/select2/select2_locale_hr.js | 22 + .../3rdparty/select2/select2_locale_hu.js | 15 + .../3rdparty/select2/select2_locale_id.js | 17 + .../3rdparty/select2/select2_locale_is.js | 15 + .../3rdparty/select2/select2_locale_it.js | 15 + .../3rdparty/select2/select2_locale_ja.js | 15 + .../3rdparty/select2/select2_locale_ka.js | 17 + .../3rdparty/select2/select2_locale_ko.js | 17 + .../3rdparty/select2/select2_locale_lt.js | 24 + .../3rdparty/select2/select2_locale_lv.js | 17 + .../3rdparty/select2/select2_locale_mk.js | 17 + .../3rdparty/select2/select2_locale_ms.js | 17 + .../3rdparty/select2/select2_locale_nl.js | 15 + .../3rdparty/select2/select2_locale_no.js | 18 + .../3rdparty/select2/select2_locale_pl.js | 22 + .../3rdparty/select2/select2_locale_pt-BR.js | 15 + .../3rdparty/select2/select2_locale_pt-PT.js | 15 + .../3rdparty/select2/select2_locale_ro.js | 15 + .../3rdparty/select2/select2_locale_rs.js | 17 + .../3rdparty/select2/select2_locale_ru.js | 21 + .../3rdparty/select2/select2_locale_sk.js | 48 + .../3rdparty/select2/select2_locale_sv.js | 17 + .../3rdparty/select2/select2_locale_th.js | 17 + .../3rdparty/select2/select2_locale_tr.js | 17 + .../3rdparty/select2/select2_locale_uk.js | 23 + .../3rdparty/select2/select2_locale_vi.js | 18 + .../3rdparty/select2/select2_locale_zh-CN.js | 14 + .../3rdparty/select2/select2_locale_zh-TW.js | 14 + .../3rdparty/select2/select2x2.png | Bin 0 -> 845 bytes 60 files changed, 5431 insertions(+) create mode 100644 apps/files_external/3rdparty/select2/.gitignore create mode 100644 apps/files_external/3rdparty/select2/LICENSE create mode 100644 apps/files_external/3rdparty/select2/README.md create mode 100644 apps/files_external/3rdparty/select2/bower.json create mode 100644 apps/files_external/3rdparty/select2/component.json create mode 100644 apps/files_external/3rdparty/select2/composer.json create mode 100644 apps/files_external/3rdparty/select2/package.json create mode 100755 apps/files_external/3rdparty/select2/release.sh create mode 100644 apps/files_external/3rdparty/select2/select2-bootstrap.css create mode 100644 apps/files_external/3rdparty/select2/select2-spinner.gif create mode 100644 apps/files_external/3rdparty/select2/select2.css create mode 100644 apps/files_external/3rdparty/select2/select2.jquery.json create mode 100644 apps/files_external/3rdparty/select2/select2.js create mode 100644 apps/files_external/3rdparty/select2/select2.min.js create mode 100644 apps/files_external/3rdparty/select2/select2.png create mode 100644 apps/files_external/3rdparty/select2/select2_locale_ar.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_bg.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_ca.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_cs.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_da.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_de.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_el.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_en.js.template create mode 100644 apps/files_external/3rdparty/select2/select2_locale_es.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_et.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_eu.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_fa.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_fi.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_fr.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_gl.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_he.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_hr.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_hu.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_id.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_is.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_it.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_ja.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_ka.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_ko.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_lt.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_lv.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_mk.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_ms.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_nl.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_no.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_pl.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_pt-BR.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_pt-PT.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_ro.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_rs.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_ru.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_sk.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_sv.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_th.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_tr.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_uk.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_vi.js create mode 100644 apps/files_external/3rdparty/select2/select2_locale_zh-CN.js create mode 100755 apps/files_external/3rdparty/select2/select2_locale_zh-TW.js create mode 100644 apps/files_external/3rdparty/select2/select2x2.png diff --git a/apps/files_external/3rdparty/select2/.gitignore b/apps/files_external/3rdparty/select2/.gitignore new file mode 100644 index 00000000000..c6ef2182bdc --- /dev/null +++ b/apps/files_external/3rdparty/select2/.gitignore @@ -0,0 +1,2 @@ +.idea + diff --git a/apps/files_external/3rdparty/select2/LICENSE b/apps/files_external/3rdparty/select2/LICENSE new file mode 100644 index 00000000000..0247cc76273 --- /dev/null +++ b/apps/files_external/3rdparty/select2/LICENSE @@ -0,0 +1,18 @@ +Copyright 2014 Igor Vaynberg + +Version: @@ver@@ Timestamp: @@timestamp@@ + +This software is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU +General Public License version 2 (the "GPL License"). You may choose either license to govern your +use of this software only upon the condition that you accept all of the terms of either the Apache +License or the GPL License. + +You may obtain a copy of the Apache License and the GPL License at: + +http://www.apache.org/licenses/LICENSE-2.0 +http://www.gnu.org/licenses/gpl-2.0.html + +Unless required by applicable law or agreed to in writing, software distributed under the Apache License +or the GPL Licesnse is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, +either express or implied. See the Apache License and the GPL License for the specific language governing +permissions and limitations under the Apache License and the GPL License. diff --git a/apps/files_external/3rdparty/select2/README.md b/apps/files_external/3rdparty/select2/README.md new file mode 100644 index 00000000000..406fe79dc95 --- /dev/null +++ b/apps/files_external/3rdparty/select2/README.md @@ -0,0 +1,90 @@ +Select2 +======= + +Select2 is a jQuery-based replacement for select boxes. It supports searching, remote data sets, and infinite scrolling of results. + +To get started, checkout examples and documentation at http://ivaynberg.github.com/select2 + +Use cases +--------- + +* Enhancing native selects with search. +* Enhancing native selects with a better multi-select interface. +* Loading data from JavaScript: easily load items via ajax and have them searchable. +* Nesting optgroups: native selects only support one level of nested. Select2 does not have this restriction. +* Tagging: ability to add new items on the fly. +* Working with large, remote datasets: ability to partially load a dataset based on the search term. +* Paging of large datasets: easy support for loading more pages when the results are scrolled to the end. +* Templating: support for custom rendering of results and selections. + +Browser compatibility +--------------------- +* IE 8+ +* Chrome 8+ +* Firefox 10+ +* Safari 3+ +* Opera 10.6+ + +Usage +----- +You can source Select2 directly from a [CDN like JSDliver](http://www.jsdelivr.com/#!select2), [download it from this GitHub repo](https://github.com/ivaynberg/select2/tags), or use one of the integrations below. + +Integrations +------------ + +* [Wicket-Select2](https://github.com/ivaynberg/wicket-select2) (Java / [Apache Wicket](http://wicket.apache.org)) +* [select2-rails](https://github.com/argerim/select2-rails) (Ruby on Rails) +* [AngularUI](http://angular-ui.github.com/#directives-select2) ([AngularJS](angularjs.org)) +* [Django](https://github.com/applegrew/django-select2) +* [Symfony](https://github.com/19Gerhard85/sfSelect2WidgetsPlugin) +* [Symfony2](https://github.com/avocode/FormExtensions) +* [Bootstrap 2](https://github.com/t0m/select2-bootstrap-css) and [Bootstrap 3](https://github.com/t0m/select2-bootstrap-css/tree/bootstrap3) (CSS skins) +* [Meteor](https://github.com/nate-strauser/meteor-select2) (modern reactive JavaScript framework; + [Bootstrap 3 skin](https://github.com/esperadomedia/meteor-select2-bootstrap3-css/)) +* [Yii 2.x](http://demos.krajee.com/widgets#select2) +* [Yii 1.x](https://github.com/tonybolzan/yii-select2) + +Internationalization (i18n) +--------------------------- + +Select2 supports multiple languages by simply including the right +language JS file (`select2_locale_it.js`, `select2_locale_nl.js`, etc.). + +Missing a language? Just copy `select2_locale_en.js.template`, translate +it, and make a pull request back to Select2 here on GitHub. + +Bug tracker +----------- + +Have a bug? Please create an issue here on GitHub! + +https://github.com/ivaynberg/select2/issues + +Mailing list +------------ + +Have a question? Ask on our mailing list! + +select2@googlegroups.com + +https://groups.google.com/d/forum/select2 + + +Copyright and license +--------------------- + +Copyright 2012 Igor Vaynberg + +This software is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU +General Public License version 2 (the "GPL License"). You may choose either license to govern your +use of this software only upon the condition that you accept all of the terms of either the Apache +License or the GPL License. + +You may obtain a copy of the Apache License and the GPL License in the LICENSE file, or at: + +http://www.apache.org/licenses/LICENSE-2.0 +http://www.gnu.org/licenses/gpl-2.0.html + +Unless required by applicable law or agreed to in writing, software distributed under the Apache License +or the GPL License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, +either express or implied. See the Apache License and the GPL License for the specific language governing +permissions and limitations under the Apache License and the GPL License. diff --git a/apps/files_external/3rdparty/select2/bower.json b/apps/files_external/3rdparty/select2/bower.json new file mode 100644 index 00000000000..80e8596e806 --- /dev/null +++ b/apps/files_external/3rdparty/select2/bower.json @@ -0,0 +1,8 @@ +{ + "name": "select2", + "version": "3.4.8", + "main": ["select2.js", "select2.css", "select2.png", "select2x2.png", "select2-spinner.gif"], + "dependencies": { + "jquery": ">= 1.7.1" + } +} diff --git a/apps/files_external/3rdparty/select2/component.json b/apps/files_external/3rdparty/select2/component.json new file mode 100644 index 00000000000..ad7abf9d9fa --- /dev/null +++ b/apps/files_external/3rdparty/select2/component.json @@ -0,0 +1,66 @@ +{ + "name": "select2", + "repo": "ivaynberg/select2", + "description": "Select2 is a jQuery based replacement for select boxes. It supports searching, remote data sets, and infinite scrolling of results.", + "version": "3.4.8", + "demo": "http://ivaynberg.github.io/select2/", + "keywords": [ + "jquery" + ], + "main": "select2.js", + "styles": [ + "select2.css", + "select2-bootstrap.css" + ], + "scripts": [ + "select2.js", + "select2_locale_ar.js", + "select2_locale_bg.js", + "select2_locale_ca.js", + "select2_locale_cs.js", + "select2_locale_da.js", + "select2_locale_de.js", + "select2_locale_el.js", + "select2_locale_es.js", + "select2_locale_et.js", + "select2_locale_eu.js", + "select2_locale_fa.js", + "select2_locale_fi.js", + "select2_locale_fr.js", + "select2_locale_gl.js", + "select2_locale_he.js", + "select2_locale_hr.js", + "select2_locale_hu.js", + "select2_locale_id.js", + "select2_locale_is.js", + "select2_locale_it.js", + "select2_locale_ja.js", + "select2_locale_ka.js", + "select2_locale_ko.js", + "select2_locale_lt.js", + "select2_locale_lv.js", + "select2_locale_mk.js", + "select2_locale_ms.js", + "select2_locale_nl.js", + "select2_locale_no.js", + "select2_locale_pl.js", + "select2_locale_pt-BR.js", + "select2_locale_pt-PT.js", + "select2_locale_ro.js", + "select2_locale_ru.js", + "select2_locale_sk.js", + "select2_locale_sv.js", + "select2_locale_th.js", + "select2_locale_tr.js", + "select2_locale_uk.js", + "select2_locale_vi.js", + "select2_locale_zh-CN.js", + "select2_locale_zh-TW.js" + ], + "images": [ + "select2-spinner.gif", + "select2.png", + "select2x2.png" + ], + "license": "MIT" +} diff --git a/apps/files_external/3rdparty/select2/composer.json b/apps/files_external/3rdparty/select2/composer.json new file mode 100644 index 00000000000..c50fadba855 --- /dev/null +++ b/apps/files_external/3rdparty/select2/composer.json @@ -0,0 +1,29 @@ +{ + "name": + "ivaynberg/select2", + "description": "Select2 is a jQuery based replacement for select boxes.", + "version": "3.4.8", + "type": "component", + "homepage": "http://ivaynberg.github.io/select2/", + "license": "Apache-2.0", + "require": { + "robloach/component-installer": "*", + "components/jquery": ">=1.7.1" + }, + "extra": { + "component": { + "scripts": [ + "select2.js" + ], + "files": [ + "select2.js", + "select2_locale_*.js", + "select2.css", + "select2-bootstrap.css", + "select2-spinner.gif", + "select2.png", + "select2x2.png" + ] + } + } +} diff --git a/apps/files_external/3rdparty/select2/package.json b/apps/files_external/3rdparty/select2/package.json new file mode 100644 index 00000000000..75ad84acaf8 --- /dev/null +++ b/apps/files_external/3rdparty/select2/package.json @@ -0,0 +1,20 @@ +{ + "name" : "Select2", + "description": "Select2 is a jQuery based replacement for select boxes. It supports searching, remote data sets, and infinite scrolling of results.", + "homepage": "http://ivaynberg.github.io/select2", + "author": "Igor Vaynberg", + "repository": {"type": "git", "url": "git://github.com/ivaynberg/select2.git"}, + "main": "select2.js", + "version": "3.4.8", + "jspm": { + "main": "select2", + "files": ["select2.js", "select2.png", "select2.css", "select2-spinner.gif"], + "shim": { + "select2": { + "imports": ["jquery", "./select2.css!"], + "exports": "$" + } + }, + "buildConfig": { "uglify": true } + } +} diff --git a/apps/files_external/3rdparty/select2/release.sh b/apps/files_external/3rdparty/select2/release.sh new file mode 100755 index 00000000000..0d2e279ead4 --- /dev/null +++ b/apps/files_external/3rdparty/select2/release.sh @@ -0,0 +1,79 @@ +#!/bin/bash +set -e + +echo -n "Enter the version for this release: " + +read ver + +if [ ! $ver ]; then + echo "Invalid version." + exit +fi + +name="select2" +js="$name.js" +mini="$name.min.js" +css="$name.css" +release="$name-$ver" +tag="$ver" +branch="build-$ver" +curbranch=`git branch | grep "*" | sed "s/* //"` +timestamp=$(date) +tokens="s/@@ver@@/$ver/g;s/\@@timestamp@@/$timestamp/g" +remote="github" + +echo "Pulling from origin" + +git pull + +echo "Updating Version Identifiers" + +sed -E -e "s/\"version\": \"([0-9\.]+)\",/\"version\": \"$ver\",/g" -i -- bower.json select2.jquery.json component.json composer.json package.json + +git add bower.json +git add select2.jquery.json +git add component.json +git add composer.json +git add package.json + +git commit -m "modified version identifiers in descriptors for release $ver" +git push + +git branch "$branch" +git checkout "$branch" + +echo "Tokenizing..." + +find . -name "$js" | xargs -I{} sed -e "$tokens" -i -- {} +find . -name "$css" | xargs -I{} sed -e "$tokens" -i -- {} + +sed -e "s/latest/$ver/g" -i -- bower.json + +git add "$js" +git add "$css" + +echo "Minifying..." + +echo "/*" > "$mini" +cat LICENSE | sed "$tokens" >> "$mini" +echo "*/" >> "$mini" + +curl -s \ + --data-urlencode "js_code@$js" \ + http://marijnhaverbeke.nl/uglifyjs \ + >> "$mini" + +git add "$mini" + +git commit -m "release $ver" + +echo "Tagging..." +git tag -a "$tag" -m "tagged version $ver" +git push "$remote" --tags + +echo "Cleaning Up..." + +git checkout "$curbranch" +git branch -D "$branch" + +echo "Done" diff --git a/apps/files_external/3rdparty/select2/select2-bootstrap.css b/apps/files_external/3rdparty/select2/select2-bootstrap.css new file mode 100644 index 00000000000..3b83f0a2297 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2-bootstrap.css @@ -0,0 +1,87 @@ +.form-control .select2-choice { + border: 0; + border-radius: 2px; +} + +.form-control .select2-choice .select2-arrow { + border-radius: 0 2px 2px 0; +} + +.form-control.select2-container { + height: auto !important; + padding: 0; +} + +.form-control.select2-container.select2-dropdown-open { + border-color: #5897FB; + border-radius: 3px 3px 0 0; +} + +.form-control .select2-container.select2-dropdown-open .select2-choices { + border-radius: 3px 3px 0 0; +} + +.form-control.select2-container .select2-choices { + border: 0 !important; + border-radius: 3px; +} + +.control-group.warning .select2-container .select2-choice, +.control-group.warning .select2-container .select2-choices, +.control-group.warning .select2-container-active .select2-choice, +.control-group.warning .select2-container-active .select2-choices, +.control-group.warning .select2-dropdown-open.select2-drop-above .select2-choice, +.control-group.warning .select2-dropdown-open.select2-drop-above .select2-choices, +.control-group.warning .select2-container-multi.select2-container-active .select2-choices { + border: 1px solid #C09853 !important; +} + +.control-group.warning .select2-container .select2-choice div { + border-left: 1px solid #C09853 !important; + background: #FCF8E3 !important; +} + +.control-group.error .select2-container .select2-choice, +.control-group.error .select2-container .select2-choices, +.control-group.error .select2-container-active .select2-choice, +.control-group.error .select2-container-active .select2-choices, +.control-group.error .select2-dropdown-open.select2-drop-above .select2-choice, +.control-group.error .select2-dropdown-open.select2-drop-above .select2-choices, +.control-group.error .select2-container-multi.select2-container-active .select2-choices { + border: 1px solid #B94A48 !important; +} + +.control-group.error .select2-container .select2-choice div { + border-left: 1px solid #B94A48 !important; + background: #F2DEDE !important; +} + +.control-group.info .select2-container .select2-choice, +.control-group.info .select2-container .select2-choices, +.control-group.info .select2-container-active .select2-choice, +.control-group.info .select2-container-active .select2-choices, +.control-group.info .select2-dropdown-open.select2-drop-above .select2-choice, +.control-group.info .select2-dropdown-open.select2-drop-above .select2-choices, +.control-group.info .select2-container-multi.select2-container-active .select2-choices { + border: 1px solid #3A87AD !important; +} + +.control-group.info .select2-container .select2-choice div { + border-left: 1px solid #3A87AD !important; + background: #D9EDF7 !important; +} + +.control-group.success .select2-container .select2-choice, +.control-group.success .select2-container .select2-choices, +.control-group.success .select2-container-active .select2-choice, +.control-group.success .select2-container-active .select2-choices, +.control-group.success .select2-dropdown-open.select2-drop-above .select2-choice, +.control-group.success .select2-dropdown-open.select2-drop-above .select2-choices, +.control-group.success .select2-container-multi.select2-container-active .select2-choices { + border: 1px solid #468847 !important; +} + +.control-group.success .select2-container .select2-choice div { + border-left: 1px solid #468847 !important; + background: #DFF0D8 !important; +} diff --git a/apps/files_external/3rdparty/select2/select2-spinner.gif b/apps/files_external/3rdparty/select2/select2-spinner.gif new file mode 100644 index 0000000000000000000000000000000000000000..5b33f7e54f4e55b6b8774d86d96895db9af044b4 GIT binary patch literal 1849 zcma*odr(tX9tZI2z31lM+(&YVk%mZ}5P~KlG2s=WSbGzm0!x7^P##Mnh7t-jP!X0Q zk_SQ}Po-L1tlDK;6l?(>v)e5ZBQx4|Y-Q?nr@Px3?9h(3ZWr3^tj=`TP57gKr87N$ zp2wWee1GRRCwo_xahnw)5cxNPJbCg2L6DV|6`#+yw6v6!mDS$f9-JvFD^n;GQ&UrZ zzh5jCkByB101O60U0q#p_1BM>Cv-vP?&s4@g_((4_1L=L$(a91)0=J91Gas#R{McE znYG^9*0A5YZ>#;~+Wkn(W5B0^yELIYLP!K}mB~<)AM@1&nqekynuaEGqPrzoH|KodRXJy)%+w_fu3nE5>@Bd_b zqC$EQ;{c`T&?EsNO|igL9gC7Ygxv?aQUEXMq?~>wg{EyW;VcJ37CUF#HjrT=KQO_* zS>M9yydXk18D(+QDJ1>r);Lav_uYKp$T?4vr{Q$lTo&pKv^?(>L-)G2*lwH!Ah7k? z7oH<8h-(KTKt5V6$8gF)C7Io&P5=SjTh)=zV=E2EUhQZP##L8S{d%UK>>+y82>+FV+#^BzW7u3F)Bb>=lYQ%%j`F>ASe zo*cw@V#u6T`A2He;70mR(V&iV&-7{qP~=SRf&jm9-T{*ZeZ}$rd0#6c&fLG^xJcf5 z+p<`wJYgW+_s*V{uI$nMB;%8`S_3>PfGOj3Rq}@Cx^+j?rk92fANSFDBYnOqQ>Vdj z)(|$AhP4t&Lb=Gvo2#3Gl%9<=Gv`Mz?Po@P4iLF!x}GUWJICDlFk-hS^Whyh7x~VH z@0vD1>HYD4&e+~yzS*-sFR{9`{QEEZO1zg7>R&7cHts-6j!xHVdA8eI+ZlVzd%`es zJT@$#GX(gvCJ1oJN%yLBK}{V=V;seo;!w|Yte!W1%5qLNFWqvZW>h&IiH+oPT=b@E zPhGzv5=(Un*X>v`>%8h_nj^NdYcE6NHS_ifkCV$*D)Tqrbu`s;<=t<4 zAHNqNV?6(g<1PY-w@#I-WYFViz?9TrkMr)u0g`O`u|>T;k|2sV*YF^punvT;$SuTy{j3Gv)yqD!R_CF>yR)MzmmYS5v+~R zXAdD%ng9?df;wd8GxR#%3O+gz};Vo;)sK%Bj-q>Oq%R7JU-KD?vYu>#2UjaDo z&8$>5xW~?KPD_#XFToU1hIb*VOMidUr6iYiO0N|i-7s`T8!cFT`rN!^1Pt78J93i6 z5HI1wIM$94m{3SLDvISDe6$ZG1;eq_D9RTaaC>=cO{@Bs>$IlPCPJJ$h$)-3vzNUQ6OsN#_zWxey!_9%hxwH2_dEJi=yY|1c7nDm2_Lm!Cof8-R_+9UkS zcBE(o47yE)oMR(Q=dp1a2wTX5KvvGyLqlWTa7V&!A*|w|)ax~1_~aJ0=_Lilg*0iQk7#ZD EAHN$8j{pDw literal 0 HcmV?d00001 diff --git a/apps/files_external/3rdparty/select2/select2.css b/apps/files_external/3rdparty/select2/select2.css new file mode 100644 index 00000000000..1eb4d229f6d --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2.css @@ -0,0 +1,646 @@ +/* +Version: 3.4.8 Timestamp: Thu May 1 09:50:32 EDT 2014 +*/ +.select2-container { + margin: 0; + position: relative; + display: inline-block; + /* inline-block for ie7 */ + zoom: 1; + *display: inline; + vertical-align: middle; +} + +.select2-container, +.select2-drop, +.select2-search, +.select2-search input { + /* + Force border-box so that % widths fit the parent + container without overlap because of margin/padding. + More Info : http://www.quirksmode.org/css/box.html + */ + -webkit-box-sizing: border-box; /* webkit */ + -moz-box-sizing: border-box; /* firefox */ + box-sizing: border-box; /* css3 */ +} + +.select2-container .select2-choice { + display: block; + height: 26px; + padding: 0 0 0 8px; + overflow: hidden; + position: relative; + + border: 1px solid #aaa; + white-space: nowrap; + line-height: 26px; + color: #444; + text-decoration: none; + + border-radius: 4px; + + background-clip: padding-box; + + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + + background-color: #fff; + background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff)); + background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%); + background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0); + background-image: linear-gradient(to top, #eee 0%, #fff 50%); +} + +.select2-container.select2-drop-above .select2-choice { + border-bottom-color: #aaa; + + border-radius: 0 0 4px 4px; + + background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff)); + background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%); + background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0); + background-image: linear-gradient(to bottom, #eee 0%, #fff 90%); +} + +.select2-container.select2-allowclear .select2-choice .select2-chosen { + margin-right: 42px; +} + +.select2-container .select2-choice > .select2-chosen { + margin-right: 26px; + display: block; + overflow: hidden; + + white-space: nowrap; + + text-overflow: ellipsis; + float: none; + width: auto; +} + +.select2-container .select2-choice abbr { + display: none; + width: 12px; + height: 12px; + position: absolute; + right: 24px; + top: 8px; + + font-size: 1px; + text-decoration: none; + + border: 0; + background: url('select2.png') right top no-repeat; + cursor: pointer; + outline: 0; +} + +.select2-container.select2-allowclear .select2-choice abbr { + display: inline-block; +} + +.select2-container .select2-choice abbr:hover { + background-position: right -11px; + cursor: pointer; +} + +.select2-drop-mask { + border: 0; + margin: 0; + padding: 0; + position: fixed; + left: 0; + top: 0; + min-height: 100%; + min-width: 100%; + height: auto; + width: auto; + opacity: 0; + z-index: 9998; + /* styles required for IE to work */ + background-color: #fff; + filter: alpha(opacity=0); +} + +.select2-drop { + width: 100%; + margin-top: -1px; + position: absolute; + z-index: 9999; + top: 100%; + + background: #fff; + color: #000; + border: 1px solid #aaa; + border-top: 0; + + border-radius: 0 0 4px 4px; + + -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15); + box-shadow: 0 4px 5px rgba(0, 0, 0, .15); +} + +.select2-drop.select2-drop-above { + margin-top: 1px; + border-top: 1px solid #aaa; + border-bottom: 0; + + border-radius: 4px 4px 0 0; + + -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15); + box-shadow: 0 -4px 5px rgba(0, 0, 0, .15); +} + +.select2-drop-active { + border: 1px solid #5897fb; + border-top: none; +} + +.select2-drop.select2-drop-above.select2-drop-active { + border-top: 1px solid #5897fb; +} + +.select2-drop-auto-width { + border-top: 1px solid #aaa; + width: auto; +} + +.select2-drop-auto-width .select2-search { + padding-top: 4px; +} + +.select2-container .select2-choice .select2-arrow { + display: inline-block; + width: 18px; + height: 100%; + position: absolute; + right: 0; + top: 0; + + border-left: 1px solid #aaa; + border-radius: 0 4px 4px 0; + + background-clip: padding-box; + + background: #ccc; + background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee)); + background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%); + background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0); + background-image: linear-gradient(to top, #ccc 0%, #eee 60%); +} + +.select2-container .select2-choice .select2-arrow b { + display: block; + width: 100%; + height: 100%; + background: url('select2.png') no-repeat 0 1px; +} + +.select2-search { + display: inline-block; + width: 100%; + min-height: 26px; + margin: 0; + padding-left: 4px; + padding-right: 4px; + + position: relative; + z-index: 10000; + + white-space: nowrap; +} + +.select2-search input { + width: 100%; + height: auto !important; + min-height: 26px; + padding: 4px 20px 4px 5px; + margin: 0; + + outline: 0; + font-family: sans-serif; + font-size: 1em; + + border: 1px solid #aaa; + border-radius: 0; + + -webkit-box-shadow: none; + box-shadow: none; + + background: #fff url('select2.png') no-repeat 100% -22px; + background: url('select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee)); + background: url('select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%); + background: url('select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%); + background: url('select2.png') no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0; +} + +.select2-drop.select2-drop-above .select2-search input { + margin-top: 4px; +} + +.select2-search input.select2-active { + background: #fff url('select2-spinner.gif') no-repeat 100%; + background: url('select2-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee)); + background: url('select2-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%); + background: url('select2-spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%); + background: url('select2-spinner.gif') no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0; +} + +.select2-container-active .select2-choice, +.select2-container-active .select2-choices { + border: 1px solid #5897fb; + outline: none; + + -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3); + box-shadow: 0 0 5px rgba(0, 0, 0, .3); +} + +.select2-dropdown-open .select2-choice { + border-bottom-color: transparent; + -webkit-box-shadow: 0 1px 0 #fff inset; + box-shadow: 0 1px 0 #fff inset; + + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + + background-color: #eee; + background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee)); + background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%); + background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0); + background-image: linear-gradient(to top, #fff 0%, #eee 50%); +} + +.select2-dropdown-open.select2-drop-above .select2-choice, +.select2-dropdown-open.select2-drop-above .select2-choices { + border: 1px solid #5897fb; + border-top-color: transparent; + + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee)); + background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%); + background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0); + background-image: linear-gradient(to bottom, #fff 0%, #eee 50%); +} + +.select2-dropdown-open .select2-choice .select2-arrow { + background: transparent; + border-left: none; + filter: none; +} +.select2-dropdown-open .select2-choice .select2-arrow b { + background-position: -18px 1px; +} + +.select2-hidden-accessible { + border: 0; + clip: rect(0 0 0 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; +} + +/* results */ +.select2-results { + max-height: 200px; + padding: 0 0 0 4px; + margin: 4px 4px 4px 0; + position: relative; + overflow-x: hidden; + overflow-y: auto; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} + +.select2-results ul.select2-result-sub { + margin: 0; + padding-left: 0; +} + +.select2-results li { + list-style: none; + display: list-item; + background-image: none; +} + +.select2-results li.select2-result-with-children > .select2-result-label { + font-weight: bold; +} + +.select2-results .select2-result-label { + padding: 3px 7px 4px; + margin: 0; + cursor: pointer; + + min-height: 1em; + + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.select2-results-dept-1 .select2-result-label { padding-left: 20px } +.select2-results-dept-2 .select2-result-label { padding-left: 40px } +.select2-results-dept-3 .select2-result-label { padding-left: 60px } +.select2-results-dept-4 .select2-result-label { padding-left: 80px } +.select2-results-dept-5 .select2-result-label { padding-left: 100px } +.select2-results-dept-6 .select2-result-label { padding-left: 110px } +.select2-results-dept-7 .select2-result-label { padding-left: 120px } + +.select2-results .select2-highlighted { + background: #3875d7; + color: #fff; +} + +.select2-results li em { + background: #feffde; + font-style: normal; +} + +.select2-results .select2-highlighted em { + background: transparent; +} + +.select2-results .select2-highlighted ul { + background: #fff; + color: #000; +} + + +.select2-results .select2-no-results, +.select2-results .select2-searching, +.select2-results .select2-selection-limit { + background: #f4f4f4; + display: list-item; + padding-left: 5px; +} + +/* +disabled look for disabled choices in the results dropdown +*/ +.select2-results .select2-disabled.select2-highlighted { + color: #666; + background: #f4f4f4; + display: list-item; + cursor: default; +} +.select2-results .select2-disabled { + background: #f4f4f4; + display: list-item; + cursor: default; +} + +.select2-results .select2-selected { + display: none; +} + +.select2-more-results.select2-active { + background: #f4f4f4 url('select2-spinner.gif') no-repeat 100%; +} + +.select2-more-results { + background: #f4f4f4; + display: list-item; +} + +/* disabled styles */ + +.select2-container.select2-container-disabled .select2-choice { + background-color: #f4f4f4; + background-image: none; + border: 1px solid #ddd; + cursor: default; +} + +.select2-container.select2-container-disabled .select2-choice .select2-arrow { + background-color: #f4f4f4; + background-image: none; + border-left: 0; +} + +.select2-container.select2-container-disabled .select2-choice abbr { + display: none; +} + + +/* multiselect */ + +.select2-container-multi .select2-choices { + height: auto !important; + height: 1%; + margin: 0; + padding: 0; + position: relative; + + border: 1px solid #aaa; + cursor: text; + overflow: hidden; + + background-color: #fff; + background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff)); + background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%); + background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%); + background-image: linear-gradient(to bottom, #eee 1%, #fff 15%); +} + +.select2-locked { + padding: 3px 5px 3px 5px !important; +} + +.select2-container-multi .select2-choices { + min-height: 26px; +} + +.select2-container-multi.select2-container-active .select2-choices { + border: 1px solid #5897fb; + outline: none; + + -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3); + box-shadow: 0 0 5px rgba(0, 0, 0, .3); +} +.select2-container-multi .select2-choices li { + float: left; + list-style: none; +} +html[dir="rtl"] .select2-container-multi .select2-choices li +{ + float: right; +} +.select2-container-multi .select2-choices .select2-search-field { + margin: 0; + padding: 0; + white-space: nowrap; +} + +.select2-container-multi .select2-choices .select2-search-field input { + padding: 5px; + margin: 1px 0; + + font-family: sans-serif; + font-size: 100%; + color: #666; + outline: 0; + border: 0; + -webkit-box-shadow: none; + box-shadow: none; + background: transparent !important; +} + +.select2-container-multi .select2-choices .select2-search-field input.select2-active { + background: #fff url('select2-spinner.gif') no-repeat 100% !important; +} + +.select2-default { + color: #999 !important; +} + +.select2-container-multi .select2-choices .select2-search-choice { + padding: 3px 5px 3px 18px; + margin: 3px 0 3px 5px; + position: relative; + + line-height: 13px; + color: #333; + cursor: default; + border: 1px solid #aaaaaa; + + border-radius: 3px; + + -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05); + box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05); + + background-clip: padding-box; + + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + + background-color: #e4e4e4; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0); + background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee)); + background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); + background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); + background-image: linear-gradient(to top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); +} +html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice +{ + margin-left: 0; + margin-right: 5px; +} +.select2-container-multi .select2-choices .select2-search-choice .select2-chosen { + cursor: default; +} +.select2-container-multi .select2-choices .select2-search-choice-focus { + background: #d4d4d4; +} + +.select2-search-choice-close { + display: block; + width: 12px; + height: 13px; + position: absolute; + right: 3px; + top: 4px; + + font-size: 1px; + outline: none; + background: url('select2.png') right top no-repeat; +} +html[dir="rtl"] .select2-search-choice-close { + right: auto; + left: 3px; +} + +.select2-container-multi .select2-search-choice-close { + left: 3px; +} + +.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover { + background-position: right -11px; +} +.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close { + background-position: right -11px; +} + +/* disabled styles */ +.select2-container-multi.select2-container-disabled .select2-choices { + background-color: #f4f4f4; + background-image: none; + border: 1px solid #ddd; + cursor: default; +} + +.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice { + padding: 3px 5px 3px 5px; + border: 1px solid #ddd; + background-image: none; + background-color: #f4f4f4; +} + +.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close { display: none; + background: none; +} +/* end multiselect */ + + +.select2-result-selectable .select2-match, +.select2-result-unselectable .select2-match { + text-decoration: underline; +} + +.select2-offscreen, .select2-offscreen:focus { + clip: rect(0 0 0 0) !important; + width: 1px !important; + height: 1px !important; + border: 0 !important; + margin: 0 !important; + padding: 0 !important; + overflow: hidden !important; + position: absolute !important; + outline: 0 !important; + left: 0px !important; + top: 0px !important; +} + +.select2-display-none { + display: none; +} + +.select2-measure-scrollbar { + position: absolute; + top: -10000px; + left: -10000px; + width: 100px; + height: 100px; + overflow: scroll; +} + +/* Retina-ize icons */ + +@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx) { + .select2-search input, + .select2-search-choice-close, + .select2-container .select2-choice abbr, + .select2-container .select2-choice .select2-arrow b { + background-image: url('select2x2.png') !important; + background-repeat: no-repeat !important; + background-size: 60px 40px !important; + } + + .select2-search input { + background-position: 100% -21px !important; + } +} diff --git a/apps/files_external/3rdparty/select2/select2.jquery.json b/apps/files_external/3rdparty/select2/select2.jquery.json new file mode 100644 index 00000000000..e9119279f11 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2.jquery.json @@ -0,0 +1,36 @@ +{ + "name": "select2", + "title": "Select2", + "description": "Select2 is a jQuery based replacement for select boxes. It supports searching, remote data sets, and infinite scrolling of results.", + "keywords": [ + "select", + "autocomplete", + "typeahead", + "dropdown", + "multiselect", + "tag", + "tagging" + ], + "version": "3.4.8", + "author": { + "name": "Igor Vaynberg", + "url": "https://github.com/ivaynberg" + }, + "licenses": [ + { + "type": "Apache", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "type": "GPL v2", + "url": "http://www.gnu.org/licenses/gpl-2.0.html" + } + ], + "bugs": "https://github.com/ivaynberg/select2/issues", + "homepage": "http://ivaynberg.github.com/select2", + "docs": "http://ivaynberg.github.com/select2/", + "download": "https://github.com/ivaynberg/select2/tags", + "dependencies": { + "jquery": ">=1.7.1" + } +} diff --git a/apps/files_external/3rdparty/select2/select2.js b/apps/files_external/3rdparty/select2/select2.js new file mode 100644 index 00000000000..2969da5d1f7 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2.js @@ -0,0 +1,3448 @@ +/* +Copyright 2012 Igor Vaynberg + +Version: 3.4.8 Timestamp: Thu May 1 09:50:32 EDT 2014 + +This software is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU +General Public License version 2 (the "GPL License"). You may choose either license to govern your +use of this software only upon the condition that you accept all of the terms of either the Apache +License or the GPL License. + +You may obtain a copy of the Apache License and the GPL License at: + + http://www.apache.org/licenses/LICENSE-2.0 + http://www.gnu.org/licenses/gpl-2.0.html + +Unless required by applicable law or agreed to in writing, software distributed under the +Apache License or the GPL License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +CONDITIONS OF ANY KIND, either express or implied. See the Apache License and the GPL License for +the specific language governing permissions and limitations under the Apache License and the GPL License. +*/ +(function ($) { + if(typeof $.fn.each2 == "undefined") { + $.extend($.fn, { + /* + * 4-10 times faster .each replacement + * use it carefully, as it overrides jQuery context of element on each iteration + */ + each2 : function (c) { + var j = $([0]), i = -1, l = this.length; + while ( + ++i < l + && (j.context = j[0] = this[i]) + && c.call(j[0], i, j) !== false //"this"=DOM, i=index, j=jQuery object + ); + return this; + } + }); + } +})(jQuery); + +(function ($, undefined) { + "use strict"; + /*global document, window, jQuery, console */ + + if (window.Select2 !== undefined) { + return; + } + + var KEY, AbstractSelect2, SingleSelect2, MultiSelect2, nextUid, sizer, + lastMousePosition={x:0,y:0}, $document, scrollBarDimensions, + + KEY = { + TAB: 9, + ENTER: 13, + ESC: 27, + SPACE: 32, + LEFT: 37, + UP: 38, + RIGHT: 39, + DOWN: 40, + SHIFT: 16, + CTRL: 17, + ALT: 18, + PAGE_UP: 33, + PAGE_DOWN: 34, + HOME: 36, + END: 35, + BACKSPACE: 8, + DELETE: 46, + isArrow: function (k) { + k = k.which ? k.which : k; + switch (k) { + case KEY.LEFT: + case KEY.RIGHT: + case KEY.UP: + case KEY.DOWN: + return true; + } + return false; + }, + isControl: function (e) { + var k = e.which; + switch (k) { + case KEY.SHIFT: + case KEY.CTRL: + case KEY.ALT: + return true; + } + + if (e.metaKey) return true; + + return false; + }, + isFunctionKey: function (k) { + k = k.which ? k.which : k; + return k >= 112 && k <= 123; + } + }, + MEASURE_SCROLLBAR_TEMPLATE = "
", + + DIACRITICS = {"\u24B6":"A","\uFF21":"A","\u00C0":"A","\u00C1":"A","\u00C2":"A","\u1EA6":"A","\u1EA4":"A","\u1EAA":"A","\u1EA8":"A","\u00C3":"A","\u0100":"A","\u0102":"A","\u1EB0":"A","\u1EAE":"A","\u1EB4":"A","\u1EB2":"A","\u0226":"A","\u01E0":"A","\u00C4":"A","\u01DE":"A","\u1EA2":"A","\u00C5":"A","\u01FA":"A","\u01CD":"A","\u0200":"A","\u0202":"A","\u1EA0":"A","\u1EAC":"A","\u1EB6":"A","\u1E00":"A","\u0104":"A","\u023A":"A","\u2C6F":"A","\uA732":"AA","\u00C6":"AE","\u01FC":"AE","\u01E2":"AE","\uA734":"AO","\uA736":"AU","\uA738":"AV","\uA73A":"AV","\uA73C":"AY","\u24B7":"B","\uFF22":"B","\u1E02":"B","\u1E04":"B","\u1E06":"B","\u0243":"B","\u0182":"B","\u0181":"B","\u24B8":"C","\uFF23":"C","\u0106":"C","\u0108":"C","\u010A":"C","\u010C":"C","\u00C7":"C","\u1E08":"C","\u0187":"C","\u023B":"C","\uA73E":"C","\u24B9":"D","\uFF24":"D","\u1E0A":"D","\u010E":"D","\u1E0C":"D","\u1E10":"D","\u1E12":"D","\u1E0E":"D","\u0110":"D","\u018B":"D","\u018A":"D","\u0189":"D","\uA779":"D","\u01F1":"DZ","\u01C4":"DZ","\u01F2":"Dz","\u01C5":"Dz","\u24BA":"E","\uFF25":"E","\u00C8":"E","\u00C9":"E","\u00CA":"E","\u1EC0":"E","\u1EBE":"E","\u1EC4":"E","\u1EC2":"E","\u1EBC":"E","\u0112":"E","\u1E14":"E","\u1E16":"E","\u0114":"E","\u0116":"E","\u00CB":"E","\u1EBA":"E","\u011A":"E","\u0204":"E","\u0206":"E","\u1EB8":"E","\u1EC6":"E","\u0228":"E","\u1E1C":"E","\u0118":"E","\u1E18":"E","\u1E1A":"E","\u0190":"E","\u018E":"E","\u24BB":"F","\uFF26":"F","\u1E1E":"F","\u0191":"F","\uA77B":"F","\u24BC":"G","\uFF27":"G","\u01F4":"G","\u011C":"G","\u1E20":"G","\u011E":"G","\u0120":"G","\u01E6":"G","\u0122":"G","\u01E4":"G","\u0193":"G","\uA7A0":"G","\uA77D":"G","\uA77E":"G","\u24BD":"H","\uFF28":"H","\u0124":"H","\u1E22":"H","\u1E26":"H","\u021E":"H","\u1E24":"H","\u1E28":"H","\u1E2A":"H","\u0126":"H","\u2C67":"H","\u2C75":"H","\uA78D":"H","\u24BE":"I","\uFF29":"I","\u00CC":"I","\u00CD":"I","\u00CE":"I","\u0128":"I","\u012A":"I","\u012C":"I","\u0130":"I","\u00CF":"I","\u1E2E":"I","\u1EC8":"I","\u01CF":"I","\u0208":"I","\u020A":"I","\u1ECA":"I","\u012E":"I","\u1E2C":"I","\u0197":"I","\u24BF":"J","\uFF2A":"J","\u0134":"J","\u0248":"J","\u24C0":"K","\uFF2B":"K","\u1E30":"K","\u01E8":"K","\u1E32":"K","\u0136":"K","\u1E34":"K","\u0198":"K","\u2C69":"K","\uA740":"K","\uA742":"K","\uA744":"K","\uA7A2":"K","\u24C1":"L","\uFF2C":"L","\u013F":"L","\u0139":"L","\u013D":"L","\u1E36":"L","\u1E38":"L","\u013B":"L","\u1E3C":"L","\u1E3A":"L","\u0141":"L","\u023D":"L","\u2C62":"L","\u2C60":"L","\uA748":"L","\uA746":"L","\uA780":"L","\u01C7":"LJ","\u01C8":"Lj","\u24C2":"M","\uFF2D":"M","\u1E3E":"M","\u1E40":"M","\u1E42":"M","\u2C6E":"M","\u019C":"M","\u24C3":"N","\uFF2E":"N","\u01F8":"N","\u0143":"N","\u00D1":"N","\u1E44":"N","\u0147":"N","\u1E46":"N","\u0145":"N","\u1E4A":"N","\u1E48":"N","\u0220":"N","\u019D":"N","\uA790":"N","\uA7A4":"N","\u01CA":"NJ","\u01CB":"Nj","\u24C4":"O","\uFF2F":"O","\u00D2":"O","\u00D3":"O","\u00D4":"O","\u1ED2":"O","\u1ED0":"O","\u1ED6":"O","\u1ED4":"O","\u00D5":"O","\u1E4C":"O","\u022C":"O","\u1E4E":"O","\u014C":"O","\u1E50":"O","\u1E52":"O","\u014E":"O","\u022E":"O","\u0230":"O","\u00D6":"O","\u022A":"O","\u1ECE":"O","\u0150":"O","\u01D1":"O","\u020C":"O","\u020E":"O","\u01A0":"O","\u1EDC":"O","\u1EDA":"O","\u1EE0":"O","\u1EDE":"O","\u1EE2":"O","\u1ECC":"O","\u1ED8":"O","\u01EA":"O","\u01EC":"O","\u00D8":"O","\u01FE":"O","\u0186":"O","\u019F":"O","\uA74A":"O","\uA74C":"O","\u01A2":"OI","\uA74E":"OO","\u0222":"OU","\u24C5":"P","\uFF30":"P","\u1E54":"P","\u1E56":"P","\u01A4":"P","\u2C63":"P","\uA750":"P","\uA752":"P","\uA754":"P","\u24C6":"Q","\uFF31":"Q","\uA756":"Q","\uA758":"Q","\u024A":"Q","\u24C7":"R","\uFF32":"R","\u0154":"R","\u1E58":"R","\u0158":"R","\u0210":"R","\u0212":"R","\u1E5A":"R","\u1E5C":"R","\u0156":"R","\u1E5E":"R","\u024C":"R","\u2C64":"R","\uA75A":"R","\uA7A6":"R","\uA782":"R","\u24C8":"S","\uFF33":"S","\u1E9E":"S","\u015A":"S","\u1E64":"S","\u015C":"S","\u1E60":"S","\u0160":"S","\u1E66":"S","\u1E62":"S","\u1E68":"S","\u0218":"S","\u015E":"S","\u2C7E":"S","\uA7A8":"S","\uA784":"S","\u24C9":"T","\uFF34":"T","\u1E6A":"T","\u0164":"T","\u1E6C":"T","\u021A":"T","\u0162":"T","\u1E70":"T","\u1E6E":"T","\u0166":"T","\u01AC":"T","\u01AE":"T","\u023E":"T","\uA786":"T","\uA728":"TZ","\u24CA":"U","\uFF35":"U","\u00D9":"U","\u00DA":"U","\u00DB":"U","\u0168":"U","\u1E78":"U","\u016A":"U","\u1E7A":"U","\u016C":"U","\u00DC":"U","\u01DB":"U","\u01D7":"U","\u01D5":"U","\u01D9":"U","\u1EE6":"U","\u016E":"U","\u0170":"U","\u01D3":"U","\u0214":"U","\u0216":"U","\u01AF":"U","\u1EEA":"U","\u1EE8":"U","\u1EEE":"U","\u1EEC":"U","\u1EF0":"U","\u1EE4":"U","\u1E72":"U","\u0172":"U","\u1E76":"U","\u1E74":"U","\u0244":"U","\u24CB":"V","\uFF36":"V","\u1E7C":"V","\u1E7E":"V","\u01B2":"V","\uA75E":"V","\u0245":"V","\uA760":"VY","\u24CC":"W","\uFF37":"W","\u1E80":"W","\u1E82":"W","\u0174":"W","\u1E86":"W","\u1E84":"W","\u1E88":"W","\u2C72":"W","\u24CD":"X","\uFF38":"X","\u1E8A":"X","\u1E8C":"X","\u24CE":"Y","\uFF39":"Y","\u1EF2":"Y","\u00DD":"Y","\u0176":"Y","\u1EF8":"Y","\u0232":"Y","\u1E8E":"Y","\u0178":"Y","\u1EF6":"Y","\u1EF4":"Y","\u01B3":"Y","\u024E":"Y","\u1EFE":"Y","\u24CF":"Z","\uFF3A":"Z","\u0179":"Z","\u1E90":"Z","\u017B":"Z","\u017D":"Z","\u1E92":"Z","\u1E94":"Z","\u01B5":"Z","\u0224":"Z","\u2C7F":"Z","\u2C6B":"Z","\uA762":"Z","\u24D0":"a","\uFF41":"a","\u1E9A":"a","\u00E0":"a","\u00E1":"a","\u00E2":"a","\u1EA7":"a","\u1EA5":"a","\u1EAB":"a","\u1EA9":"a","\u00E3":"a","\u0101":"a","\u0103":"a","\u1EB1":"a","\u1EAF":"a","\u1EB5":"a","\u1EB3":"a","\u0227":"a","\u01E1":"a","\u00E4":"a","\u01DF":"a","\u1EA3":"a","\u00E5":"a","\u01FB":"a","\u01CE":"a","\u0201":"a","\u0203":"a","\u1EA1":"a","\u1EAD":"a","\u1EB7":"a","\u1E01":"a","\u0105":"a","\u2C65":"a","\u0250":"a","\uA733":"aa","\u00E6":"ae","\u01FD":"ae","\u01E3":"ae","\uA735":"ao","\uA737":"au","\uA739":"av","\uA73B":"av","\uA73D":"ay","\u24D1":"b","\uFF42":"b","\u1E03":"b","\u1E05":"b","\u1E07":"b","\u0180":"b","\u0183":"b","\u0253":"b","\u24D2":"c","\uFF43":"c","\u0107":"c","\u0109":"c","\u010B":"c","\u010D":"c","\u00E7":"c","\u1E09":"c","\u0188":"c","\u023C":"c","\uA73F":"c","\u2184":"c","\u24D3":"d","\uFF44":"d","\u1E0B":"d","\u010F":"d","\u1E0D":"d","\u1E11":"d","\u1E13":"d","\u1E0F":"d","\u0111":"d","\u018C":"d","\u0256":"d","\u0257":"d","\uA77A":"d","\u01F3":"dz","\u01C6":"dz","\u24D4":"e","\uFF45":"e","\u00E8":"e","\u00E9":"e","\u00EA":"e","\u1EC1":"e","\u1EBF":"e","\u1EC5":"e","\u1EC3":"e","\u1EBD":"e","\u0113":"e","\u1E15":"e","\u1E17":"e","\u0115":"e","\u0117":"e","\u00EB":"e","\u1EBB":"e","\u011B":"e","\u0205":"e","\u0207":"e","\u1EB9":"e","\u1EC7":"e","\u0229":"e","\u1E1D":"e","\u0119":"e","\u1E19":"e","\u1E1B":"e","\u0247":"e","\u025B":"e","\u01DD":"e","\u24D5":"f","\uFF46":"f","\u1E1F":"f","\u0192":"f","\uA77C":"f","\u24D6":"g","\uFF47":"g","\u01F5":"g","\u011D":"g","\u1E21":"g","\u011F":"g","\u0121":"g","\u01E7":"g","\u0123":"g","\u01E5":"g","\u0260":"g","\uA7A1":"g","\u1D79":"g","\uA77F":"g","\u24D7":"h","\uFF48":"h","\u0125":"h","\u1E23":"h","\u1E27":"h","\u021F":"h","\u1E25":"h","\u1E29":"h","\u1E2B":"h","\u1E96":"h","\u0127":"h","\u2C68":"h","\u2C76":"h","\u0265":"h","\u0195":"hv","\u24D8":"i","\uFF49":"i","\u00EC":"i","\u00ED":"i","\u00EE":"i","\u0129":"i","\u012B":"i","\u012D":"i","\u00EF":"i","\u1E2F":"i","\u1EC9":"i","\u01D0":"i","\u0209":"i","\u020B":"i","\u1ECB":"i","\u012F":"i","\u1E2D":"i","\u0268":"i","\u0131":"i","\u24D9":"j","\uFF4A":"j","\u0135":"j","\u01F0":"j","\u0249":"j","\u24DA":"k","\uFF4B":"k","\u1E31":"k","\u01E9":"k","\u1E33":"k","\u0137":"k","\u1E35":"k","\u0199":"k","\u2C6A":"k","\uA741":"k","\uA743":"k","\uA745":"k","\uA7A3":"k","\u24DB":"l","\uFF4C":"l","\u0140":"l","\u013A":"l","\u013E":"l","\u1E37":"l","\u1E39":"l","\u013C":"l","\u1E3D":"l","\u1E3B":"l","\u017F":"l","\u0142":"l","\u019A":"l","\u026B":"l","\u2C61":"l","\uA749":"l","\uA781":"l","\uA747":"l","\u01C9":"lj","\u24DC":"m","\uFF4D":"m","\u1E3F":"m","\u1E41":"m","\u1E43":"m","\u0271":"m","\u026F":"m","\u24DD":"n","\uFF4E":"n","\u01F9":"n","\u0144":"n","\u00F1":"n","\u1E45":"n","\u0148":"n","\u1E47":"n","\u0146":"n","\u1E4B":"n","\u1E49":"n","\u019E":"n","\u0272":"n","\u0149":"n","\uA791":"n","\uA7A5":"n","\u01CC":"nj","\u24DE":"o","\uFF4F":"o","\u00F2":"o","\u00F3":"o","\u00F4":"o","\u1ED3":"o","\u1ED1":"o","\u1ED7":"o","\u1ED5":"o","\u00F5":"o","\u1E4D":"o","\u022D":"o","\u1E4F":"o","\u014D":"o","\u1E51":"o","\u1E53":"o","\u014F":"o","\u022F":"o","\u0231":"o","\u00F6":"o","\u022B":"o","\u1ECF":"o","\u0151":"o","\u01D2":"o","\u020D":"o","\u020F":"o","\u01A1":"o","\u1EDD":"o","\u1EDB":"o","\u1EE1":"o","\u1EDF":"o","\u1EE3":"o","\u1ECD":"o","\u1ED9":"o","\u01EB":"o","\u01ED":"o","\u00F8":"o","\u01FF":"o","\u0254":"o","\uA74B":"o","\uA74D":"o","\u0275":"o","\u01A3":"oi","\u0223":"ou","\uA74F":"oo","\u24DF":"p","\uFF50":"p","\u1E55":"p","\u1E57":"p","\u01A5":"p","\u1D7D":"p","\uA751":"p","\uA753":"p","\uA755":"p","\u24E0":"q","\uFF51":"q","\u024B":"q","\uA757":"q","\uA759":"q","\u24E1":"r","\uFF52":"r","\u0155":"r","\u1E59":"r","\u0159":"r","\u0211":"r","\u0213":"r","\u1E5B":"r","\u1E5D":"r","\u0157":"r","\u1E5F":"r","\u024D":"r","\u027D":"r","\uA75B":"r","\uA7A7":"r","\uA783":"r","\u24E2":"s","\uFF53":"s","\u00DF":"s","\u015B":"s","\u1E65":"s","\u015D":"s","\u1E61":"s","\u0161":"s","\u1E67":"s","\u1E63":"s","\u1E69":"s","\u0219":"s","\u015F":"s","\u023F":"s","\uA7A9":"s","\uA785":"s","\u1E9B":"s","\u24E3":"t","\uFF54":"t","\u1E6B":"t","\u1E97":"t","\u0165":"t","\u1E6D":"t","\u021B":"t","\u0163":"t","\u1E71":"t","\u1E6F":"t","\u0167":"t","\u01AD":"t","\u0288":"t","\u2C66":"t","\uA787":"t","\uA729":"tz","\u24E4":"u","\uFF55":"u","\u00F9":"u","\u00FA":"u","\u00FB":"u","\u0169":"u","\u1E79":"u","\u016B":"u","\u1E7B":"u","\u016D":"u","\u00FC":"u","\u01DC":"u","\u01D8":"u","\u01D6":"u","\u01DA":"u","\u1EE7":"u","\u016F":"u","\u0171":"u","\u01D4":"u","\u0215":"u","\u0217":"u","\u01B0":"u","\u1EEB":"u","\u1EE9":"u","\u1EEF":"u","\u1EED":"u","\u1EF1":"u","\u1EE5":"u","\u1E73":"u","\u0173":"u","\u1E77":"u","\u1E75":"u","\u0289":"u","\u24E5":"v","\uFF56":"v","\u1E7D":"v","\u1E7F":"v","\u028B":"v","\uA75F":"v","\u028C":"v","\uA761":"vy","\u24E6":"w","\uFF57":"w","\u1E81":"w","\u1E83":"w","\u0175":"w","\u1E87":"w","\u1E85":"w","\u1E98":"w","\u1E89":"w","\u2C73":"w","\u24E7":"x","\uFF58":"x","\u1E8B":"x","\u1E8D":"x","\u24E8":"y","\uFF59":"y","\u1EF3":"y","\u00FD":"y","\u0177":"y","\u1EF9":"y","\u0233":"y","\u1E8F":"y","\u00FF":"y","\u1EF7":"y","\u1E99":"y","\u1EF5":"y","\u01B4":"y","\u024F":"y","\u1EFF":"y","\u24E9":"z","\uFF5A":"z","\u017A":"z","\u1E91":"z","\u017C":"z","\u017E":"z","\u1E93":"z","\u1E95":"z","\u01B6":"z","\u0225":"z","\u0240":"z","\u2C6C":"z","\uA763":"z"}; + + $document = $(document); + + nextUid=(function() { var counter=1; return function() { return counter++; }; }()); + + + function reinsertElement(element) { + var placeholder = $(document.createTextNode('')); + + element.before(placeholder); + placeholder.before(element); + placeholder.remove(); + } + + function stripDiacritics(str) { + // Used 'uni range + named function' from http://jsperf.com/diacritics/18 + function match(a) { + return DIACRITICS[a] || a; + } + + return str.replace(/[^\u0000-\u007E]/g, match); + } + + function indexOf(value, array) { + var i = 0, l = array.length; + for (; i < l; i = i + 1) { + if (equal(value, array[i])) return i; + } + return -1; + } + + function measureScrollbar () { + var $template = $( MEASURE_SCROLLBAR_TEMPLATE ); + $template.appendTo('body'); + + var dim = { + width: $template.width() - $template[0].clientWidth, + height: $template.height() - $template[0].clientHeight + }; + $template.remove(); + + return dim; + } + + /** + * Compares equality of a and b + * @param a + * @param b + */ + function equal(a, b) { + if (a === b) return true; + if (a === undefined || b === undefined) return false; + if (a === null || b === null) return false; + // Check whether 'a' or 'b' is a string (primitive or object). + // The concatenation of an empty string (+'') converts its argument to a string's primitive. + if (a.constructor === String) return a+'' === b+''; // a+'' - in case 'a' is a String object + if (b.constructor === String) return b+'' === a+''; // b+'' - in case 'b' is a String object + return false; + } + + /** + * Splits the string into an array of values, trimming each value. An empty array is returned for nulls or empty + * strings + * @param string + * @param separator + */ + function splitVal(string, separator) { + var val, i, l; + if (string === null || string.length < 1) return []; + val = string.split(separator); + for (i = 0, l = val.length; i < l; i = i + 1) val[i] = $.trim(val[i]); + return val; + } + + function getSideBorderPadding(element) { + return element.outerWidth(false) - element.width(); + } + + function installKeyUpChangeEvent(element) { + var key="keyup-change-value"; + element.on("keydown", function () { + if ($.data(element, key) === undefined) { + $.data(element, key, element.val()); + } + }); + element.on("keyup", function () { + var val= $.data(element, key); + if (val !== undefined && element.val() !== val) { + $.removeData(element, key); + element.trigger("keyup-change"); + } + }); + } + + $document.on("mousemove", function (e) { + lastMousePosition.x = e.pageX; + lastMousePosition.y = e.pageY; + }); + + /** + * filters mouse events so an event is fired only if the mouse moved. + * + * filters out mouse events that occur when mouse is stationary but + * the elements under the pointer are scrolled. + */ + function installFilteredMouseMove(element) { + element.on("mousemove", function (e) { + var lastpos = lastMousePosition; + if (lastpos === undefined || lastpos.x !== e.pageX || lastpos.y !== e.pageY) { + $(e.target).trigger("mousemove-filtered", e); + } + }); + } + + /** + * Debounces a function. Returns a function that calls the original fn function only if no invocations have been made + * within the last quietMillis milliseconds. + * + * @param quietMillis number of milliseconds to wait before invoking fn + * @param fn function to be debounced + * @param ctx object to be used as this reference within fn + * @return debounced version of fn + */ + function debounce(quietMillis, fn, ctx) { + ctx = ctx || undefined; + var timeout; + return function () { + var args = arguments; + window.clearTimeout(timeout); + timeout = window.setTimeout(function() { + fn.apply(ctx, args); + }, quietMillis); + }; + } + + function installDebouncedScroll(threshold, element) { + var notify = debounce(threshold, function (e) { element.trigger("scroll-debounced", e);}); + element.on("scroll", function (e) { + if (indexOf(e.target, element.get()) >= 0) notify(e); + }); + } + + function focus($el) { + if ($el[0] === document.activeElement) return; + + /* set the focus in a 0 timeout - that way the focus is set after the processing + of the current event has finished - which seems like the only reliable way + to set focus */ + window.setTimeout(function() { + var el=$el[0], pos=$el.val().length, range; + + $el.focus(); + + /* make sure el received focus so we do not error out when trying to manipulate the caret. + sometimes modals or others listeners may steal it after its set */ + var isVisible = (el.offsetWidth > 0 || el.offsetHeight > 0); + if (isVisible && el === document.activeElement) { + + /* after the focus is set move the caret to the end, necessary when we val() + just before setting focus */ + if(el.setSelectionRange) + { + el.setSelectionRange(pos, pos); + } + else if (el.createTextRange) { + range = el.createTextRange(); + range.collapse(false); + range.select(); + } + } + }, 0); + } + + function getCursorInfo(el) { + el = $(el)[0]; + var offset = 0; + var length = 0; + if ('selectionStart' in el) { + offset = el.selectionStart; + length = el.selectionEnd - offset; + } else if ('selection' in document) { + el.focus(); + var sel = document.selection.createRange(); + length = document.selection.createRange().text.length; + sel.moveStart('character', -el.value.length); + offset = sel.text.length - length; + } + return { offset: offset, length: length }; + } + + function killEvent(event) { + event.preventDefault(); + event.stopPropagation(); + } + function killEventImmediately(event) { + event.preventDefault(); + event.stopImmediatePropagation(); + } + + function measureTextWidth(e) { + if (!sizer){ + var style = e[0].currentStyle || window.getComputedStyle(e[0], null); + sizer = $(document.createElement("div")).css({ + position: "absolute", + left: "-10000px", + top: "-10000px", + display: "none", + fontSize: style.fontSize, + fontFamily: style.fontFamily, + fontStyle: style.fontStyle, + fontWeight: style.fontWeight, + letterSpacing: style.letterSpacing, + textTransform: style.textTransform, + whiteSpace: "nowrap" + }); + sizer.attr("class","select2-sizer"); + $("body").append(sizer); + } + sizer.text(e.val()); + return sizer.width(); + } + + function syncCssClasses(dest, src, adapter) { + var classes, replacements = [], adapted; + + classes = dest.attr("class"); + if (classes) { + classes = '' + classes; // for IE which returns object + $(classes.split(" ")).each2(function() { + if (this.indexOf("select2-") === 0) { + replacements.push(this); + } + }); + } + classes = src.attr("class"); + if (classes) { + classes = '' + classes; // for IE which returns object + $(classes.split(" ")).each2(function() { + if (this.indexOf("select2-") !== 0) { + adapted = adapter(this); + if (adapted) { + replacements.push(adapted); + } + } + }); + } + dest.attr("class", replacements.join(" ")); + } + + + function markMatch(text, term, markup, escapeMarkup) { + var match=stripDiacritics(text.toUpperCase()).indexOf(stripDiacritics(term.toUpperCase())), + tl=term.length; + + if (match<0) { + markup.push(escapeMarkup(text)); + return; + } + + markup.push(escapeMarkup(text.substring(0, match))); + markup.push(""); + markup.push(escapeMarkup(text.substring(match, match + tl))); + markup.push(""); + markup.push(escapeMarkup(text.substring(match + tl, text.length))); + } + + function defaultEscapeMarkup(markup) { + var replace_map = { + '\\': '\', + '&': '&', + '<': '<', + '>': '>', + '"': '"', + "'": ''', + "/": '/' + }; + + return String(markup).replace(/[&<>"'\/\\]/g, function (match) { + return replace_map[match]; + }); + } + + /** + * Produces an ajax-based query function + * + * @param options object containing configuration parameters + * @param options.params parameter map for the transport ajax call, can contain such options as cache, jsonpCallback, etc. see $.ajax + * @param options.transport function that will be used to execute the ajax request. must be compatible with parameters supported by $.ajax + * @param options.url url for the data + * @param options.data a function(searchTerm, pageNumber, context) that should return an object containing query string parameters for the above url. + * @param options.dataType request data type: ajax, jsonp, other datatypes supported by jQuery's $.ajax function or the transport function if specified + * @param options.quietMillis (optional) milliseconds to wait before making the ajaxRequest, helps debounce the ajax function if invoked too often + * @param options.results a function(remoteData, pageNumber) that converts data returned form the remote request to the format expected by Select2. + * The expected format is an object containing the following keys: + * results array of objects that will be used as choices + * more (optional) boolean indicating whether there are more results available + * Example: {results:[{id:1, text:'Red'},{id:2, text:'Blue'}], more:true} + */ + function ajax(options) { + var timeout, // current scheduled but not yet executed request + handler = null, + quietMillis = options.quietMillis || 100, + ajaxUrl = options.url, + self = this; + + return function (query) { + window.clearTimeout(timeout); + timeout = window.setTimeout(function () { + var data = options.data, // ajax data function + url = ajaxUrl, // ajax url string or function + transport = options.transport || $.fn.select2.ajaxDefaults.transport, + // deprecated - to be removed in 4.0 - use params instead + deprecated = { + type: options.type || 'GET', // set type of request (GET or POST) + cache: options.cache || false, + jsonpCallback: options.jsonpCallback||undefined, + dataType: options.dataType||"json" + }, + params = $.extend({}, $.fn.select2.ajaxDefaults.params, deprecated); + + data = data ? data.call(self, query.term, query.page, query.context) : null; + url = (typeof url === 'function') ? url.call(self, query.term, query.page, query.context) : url; + + if (handler && typeof handler.abort === "function") { handler.abort(); } + + if (options.params) { + if ($.isFunction(options.params)) { + $.extend(params, options.params.call(self)); + } else { + $.extend(params, options.params); + } + } + + $.extend(params, { + url: url, + dataType: options.dataType, + data: data, + success: function (data) { + // TODO - replace query.page with query so users have access to term, page, etc. + var results = options.results(data, query.page); + query.callback(results); + } + }); + handler = transport.call(self, params); + }, quietMillis); + }; + } + + /** + * Produces a query function that works with a local array + * + * @param options object containing configuration parameters. The options parameter can either be an array or an + * object. + * + * If the array form is used it is assumed that it contains objects with 'id' and 'text' keys. + * + * If the object form is used it is assumed that it contains 'data' and 'text' keys. The 'data' key should contain + * an array of objects that will be used as choices. These objects must contain at least an 'id' key. The 'text' + * key can either be a String in which case it is expected that each element in the 'data' array has a key with the + * value of 'text' which will be used to match choices. Alternatively, text can be a function(item) that can extract + * the text. + */ + function local(options) { + var data = options, // data elements + dataText, + tmp, + text = function (item) { return ""+item.text; }; // function used to retrieve the text portion of a data item that is matched against the search + + if ($.isArray(data)) { + tmp = data; + data = { results: tmp }; + } + + if ($.isFunction(data) === false) { + tmp = data; + data = function() { return tmp; }; + } + + var dataItem = data(); + if (dataItem.text) { + text = dataItem.text; + // if text is not a function we assume it to be a key name + if (!$.isFunction(text)) { + dataText = dataItem.text; // we need to store this in a separate variable because in the next step data gets reset and data.text is no longer available + text = function (item) { return item[dataText]; }; + } + } + + return function (query) { + var t = query.term, filtered = { results: [] }, process; + if (t === "") { + query.callback(data()); + return; + } + + process = function(datum, collection) { + var group, attr; + datum = datum[0]; + if (datum.children) { + group = {}; + for (attr in datum) { + if (datum.hasOwnProperty(attr)) group[attr]=datum[attr]; + } + group.children=[]; + $(datum.children).each2(function(i, childDatum) { process(childDatum, group.children); }); + if (group.children.length || query.matcher(t, text(group), datum)) { + collection.push(group); + } + } else { + if (query.matcher(t, text(datum), datum)) { + collection.push(datum); + } + } + }; + + $(data().results).each2(function(i, datum) { process(datum, filtered.results); }); + query.callback(filtered); + }; + } + + // TODO javadoc + function tags(data) { + var isFunc = $.isFunction(data); + return function (query) { + var t = query.term, filtered = {results: []}; + var result = isFunc ? data(query) : data; + if ($.isArray(result)) { + $(result).each(function () { + var isObject = this.text !== undefined, + text = isObject ? this.text : this; + if (t === "" || query.matcher(t, text)) { + filtered.results.push(isObject ? this : {id: this, text: this}); + } + }); + query.callback(filtered); + } + }; + } + + /** + * Checks if the formatter function should be used. + * + * Throws an error if it is not a function. Returns true if it should be used, + * false if no formatting should be performed. + * + * @param formatter + */ + function checkFormatter(formatter, formatterName) { + if ($.isFunction(formatter)) return true; + if (!formatter) return false; + if (typeof(formatter) === 'string') return true; + throw new Error(formatterName +" must be a string, function, or falsy value"); + } + + function evaluate(val) { + if ($.isFunction(val)) { + var args = Array.prototype.slice.call(arguments, 1); + return val.apply(null, args); + } + return val; + } + + function countResults(results) { + var count = 0; + $.each(results, function(i, item) { + if (item.children) { + count += countResults(item.children); + } else { + count++; + } + }); + return count; + } + + /** + * Default tokenizer. This function uses breaks the input on substring match of any string from the + * opts.tokenSeparators array and uses opts.createSearchChoice to create the choice object. Both of those + * two options have to be defined in order for the tokenizer to work. + * + * @param input text user has typed so far or pasted into the search field + * @param selection currently selected choices + * @param selectCallback function(choice) callback tho add the choice to selection + * @param opts select2's opts + * @return undefined/null to leave the current input unchanged, or a string to change the input to the returned value + */ + function defaultTokenizer(input, selection, selectCallback, opts) { + var original = input, // store the original so we can compare and know if we need to tell the search to update its text + dupe = false, // check for whether a token we extracted represents a duplicate selected choice + token, // token + index, // position at which the separator was found + i, l, // looping variables + separator; // the matched separator + + if (!opts.createSearchChoice || !opts.tokenSeparators || opts.tokenSeparators.length < 1) return undefined; + + while (true) { + index = -1; + + for (i = 0, l = opts.tokenSeparators.length; i < l; i++) { + separator = opts.tokenSeparators[i]; + index = input.indexOf(separator); + if (index >= 0) break; + } + + if (index < 0) break; // did not find any token separator in the input string, bail + + token = input.substring(0, index); + input = input.substring(index + separator.length); + + if (token.length > 0) { + token = opts.createSearchChoice.call(this, token, selection); + if (token !== undefined && token !== null && opts.id(token) !== undefined && opts.id(token) !== null) { + dupe = false; + for (i = 0, l = selection.length; i < l; i++) { + if (equal(opts.id(token), opts.id(selection[i]))) { + dupe = true; break; + } + } + + if (!dupe) selectCallback(token); + } + } + } + + if (original!==input) return input; + } + + function cleanupJQueryElements() { + var self = this; + + Array.prototype.forEach.call(arguments, function (element) { + self[element].remove(); + self[element] = null; + }); + } + + /** + * Creates a new class + * + * @param superClass + * @param methods + */ + function clazz(SuperClass, methods) { + var constructor = function () {}; + constructor.prototype = new SuperClass; + constructor.prototype.constructor = constructor; + constructor.prototype.parent = SuperClass.prototype; + constructor.prototype = $.extend(constructor.prototype, methods); + return constructor; + } + + AbstractSelect2 = clazz(Object, { + + // abstract + bind: function (func) { + var self = this; + return function () { + func.apply(self, arguments); + }; + }, + + // abstract + init: function (opts) { + var results, search, resultsSelector = ".select2-results"; + + // prepare options + this.opts = opts = this.prepareOpts(opts); + + this.id=opts.id; + + // destroy if called on an existing component + if (opts.element.data("select2") !== undefined && + opts.element.data("select2") !== null) { + opts.element.data("select2").destroy(); + } + + this.container = this.createContainer(); + + this.liveRegion = $("", { + role: "status", + "aria-live": "polite" + }) + .addClass("select2-hidden-accessible") + .appendTo(document.body); + + this.containerId="s2id_"+(opts.element.attr("id") || "autogen"+nextUid()); + this.containerEventName= this.containerId + .replace(/([.])/g, '_') + .replace(/([;&,\-\.\+\*\~':"\!\^#$%@\[\]\(\)=>\|])/g, '\\$1'); + this.container.attr("id", this.containerId); + + this.container.attr("title", opts.element.attr("title")); + + this.body = $("body"); + + syncCssClasses(this.container, this.opts.element, this.opts.adaptContainerCssClass); + + this.container.attr("style", opts.element.attr("style")); + this.container.css(evaluate(opts.containerCss)); + this.container.addClass(evaluate(opts.containerCssClass)); + + this.elementTabIndex = this.opts.element.attr("tabindex"); + + // swap container for the element + this.opts.element + .data("select2", this) + .attr("tabindex", "-1") + .before(this.container) + .on("click.select2", killEvent); // do not leak click events + + this.container.data("select2", this); + + this.dropdown = this.container.find(".select2-drop"); + + syncCssClasses(this.dropdown, this.opts.element, this.opts.adaptDropdownCssClass); + + this.dropdown.addClass(evaluate(opts.dropdownCssClass)); + this.dropdown.data("select2", this); + this.dropdown.on("click", killEvent); + + this.results = results = this.container.find(resultsSelector); + this.search = search = this.container.find("input.select2-input"); + + this.queryCount = 0; + this.resultsPage = 0; + this.context = null; + + // initialize the container + this.initContainer(); + + this.container.on("click", killEvent); + + installFilteredMouseMove(this.results); + + this.dropdown.on("mousemove-filtered", resultsSelector, this.bind(this.highlightUnderEvent)); + this.dropdown.on("touchstart touchmove touchend", resultsSelector, this.bind(function (event) { + this._touchEvent = true; + this.highlightUnderEvent(event); + })); + this.dropdown.on("touchmove", resultsSelector, this.bind(this.touchMoved)); + this.dropdown.on("touchstart touchend", resultsSelector, this.bind(this.clearTouchMoved)); + + // Waiting for a click event on touch devices to select option and hide dropdown + // otherwise click will be triggered on an underlying element + this.dropdown.on('click', this.bind(function (event) { + if (this._touchEvent) { + this._touchEvent = false; + this.selectHighlighted(); + } + })); + + installDebouncedScroll(80, this.results); + this.dropdown.on("scroll-debounced", resultsSelector, this.bind(this.loadMoreIfNeeded)); + + // do not propagate change event from the search field out of the component + $(this.container).on("change", ".select2-input", function(e) {e.stopPropagation();}); + $(this.dropdown).on("change", ".select2-input", function(e) {e.stopPropagation();}); + + // if jquery.mousewheel plugin is installed we can prevent out-of-bounds scrolling of results via mousewheel + if ($.fn.mousewheel) { + results.mousewheel(function (e, delta, deltaX, deltaY) { + var top = results.scrollTop(); + if (deltaY > 0 && top - deltaY <= 0) { + results.scrollTop(0); + killEvent(e); + } else if (deltaY < 0 && results.get(0).scrollHeight - results.scrollTop() + deltaY <= results.height()) { + results.scrollTop(results.get(0).scrollHeight - results.height()); + killEvent(e); + } + }); + } + + installKeyUpChangeEvent(search); + search.on("keyup-change input paste", this.bind(this.updateResults)); + search.on("focus", function () { search.addClass("select2-focused"); }); + search.on("blur", function () { search.removeClass("select2-focused");}); + + this.dropdown.on("mouseup", resultsSelector, this.bind(function (e) { + if ($(e.target).closest(".select2-result-selectable").length > 0) { + this.highlightUnderEvent(e); + this.selectHighlighted(e); + } + })); + + // trap all mouse events from leaving the dropdown. sometimes there may be a modal that is listening + // for mouse events outside of itself so it can close itself. since the dropdown is now outside the select2's + // dom it will trigger the popup close, which is not what we want + // focusin can cause focus wars between modals and select2 since the dropdown is outside the modal. + this.dropdown.on("click mouseup mousedown touchstart touchend focusin", function (e) { e.stopPropagation(); }); + + this.nextSearchTerm = undefined; + + if ($.isFunction(this.opts.initSelection)) { + // initialize selection based on the current value of the source element + this.initSelection(); + + // if the user has provided a function that can set selection based on the value of the source element + // we monitor the change event on the element and trigger it, allowing for two way synchronization + this.monitorSource(); + } + + if (opts.maximumInputLength !== null) { + this.search.attr("maxlength", opts.maximumInputLength); + } + + var disabled = opts.element.prop("disabled"); + if (disabled === undefined) disabled = false; + this.enable(!disabled); + + var readonly = opts.element.prop("readonly"); + if (readonly === undefined) readonly = false; + this.readonly(readonly); + + // Calculate size of scrollbar + scrollBarDimensions = scrollBarDimensions || measureScrollbar(); + + this.autofocus = opts.element.prop("autofocus"); + opts.element.prop("autofocus", false); + if (this.autofocus) this.focus(); + + this.search.attr("placeholder", opts.searchInputPlaceholder); + }, + + // abstract + destroy: function () { + var element=this.opts.element, select2 = element.data("select2"); + + this.close(); + + if (this.propertyObserver) { + this.propertyObserver.disconnect(); + this.propertyObserver = null; + } + + if (select2 !== undefined) { + select2.container.remove(); + select2.liveRegion.remove(); + select2.dropdown.remove(); + element + .removeClass("select2-offscreen") + .removeData("select2") + .off(".select2") + .prop("autofocus", this.autofocus || false); + if (this.elementTabIndex) { + element.attr({tabindex: this.elementTabIndex}); + } else { + element.removeAttr("tabindex"); + } + element.show(); + } + + cleanupJQueryElements.call(this, + "container", + "liveRegion", + "dropdown", + "results", + "search" + ); + }, + + // abstract + optionToData: function(element) { + if (element.is("option")) { + return { + id:element.prop("value"), + text:element.text(), + element: element.get(), + css: element.attr("class"), + disabled: element.prop("disabled"), + locked: equal(element.attr("locked"), "locked") || equal(element.data("locked"), true) + }; + } else if (element.is("optgroup")) { + return { + text:element.attr("label"), + children:[], + element: element.get(), + css: element.attr("class") + }; + } + }, + + // abstract + prepareOpts: function (opts) { + var element, select, idKey, ajaxUrl, self = this; + + element = opts.element; + + if (element.get(0).tagName.toLowerCase() === "select") { + this.select = select = opts.element; + } + + if (select) { + // these options are not allowed when attached to a select because they are picked up off the element itself + $.each(["id", "multiple", "ajax", "query", "createSearchChoice", "initSelection", "data", "tags"], function () { + if (this in opts) { + throw new Error("Option '" + this + "' is not allowed for Select2 when attached to a ", + "
", + " ", + "
    ", + "
", + "
"].join("")); + return container; + }, + + // single + enableInterface: function() { + if (this.parent.enableInterface.apply(this, arguments)) { + this.focusser.prop("disabled", !this.isInterfaceEnabled()); + } + }, + + // single + opening: function () { + var el, range, len; + + if (this.opts.minimumResultsForSearch >= 0) { + this.showSearch(true); + } + + this.parent.opening.apply(this, arguments); + + if (this.showSearchInput !== false) { + // IE appends focusser.val() at the end of field :/ so we manually insert it at the beginning using a range + // all other browsers handle this just fine + + this.search.val(this.focusser.val()); + } + if (this.opts.shouldFocusInput(this)) { + this.search.focus(); + // move the cursor to the end after focussing, otherwise it will be at the beginning and + // new text will appear *before* focusser.val() + el = this.search.get(0); + if (el.createTextRange) { + range = el.createTextRange(); + range.collapse(false); + range.select(); + } else if (el.setSelectionRange) { + len = this.search.val().length; + el.setSelectionRange(len, len); + } + } + + // initializes search's value with nextSearchTerm (if defined by user) + // ignore nextSearchTerm if the dropdown is opened by the user pressing a letter + if(this.search.val() === "") { + if(this.nextSearchTerm != undefined){ + this.search.val(this.nextSearchTerm); + this.search.select(); + } + } + + this.focusser.prop("disabled", true).val(""); + this.updateResults(true); + this.opts.element.trigger($.Event("select2-open")); + }, + + // single + close: function () { + if (!this.opened()) return; + this.parent.close.apply(this, arguments); + + this.focusser.prop("disabled", false); + + if (this.opts.shouldFocusInput(this)) { + this.focusser.focus(); + } + }, + + // single + focus: function () { + if (this.opened()) { + this.close(); + } else { + this.focusser.prop("disabled", false); + if (this.opts.shouldFocusInput(this)) { + this.focusser.focus(); + } + } + }, + + // single + isFocused: function () { + return this.container.hasClass("select2-container-active"); + }, + + // single + cancel: function () { + this.parent.cancel.apply(this, arguments); + this.focusser.prop("disabled", false); + + if (this.opts.shouldFocusInput(this)) { + this.focusser.focus(); + } + }, + + // single + destroy: function() { + $("label[for='" + this.focusser.attr('id') + "']") + .attr('for', this.opts.element.attr("id")); + this.parent.destroy.apply(this, arguments); + + cleanupJQueryElements.call(this, + "selection", + "focusser" + ); + }, + + // single + initContainer: function () { + + var selection, + container = this.container, + dropdown = this.dropdown, + idSuffix = nextUid(), + elementLabel; + + if (this.opts.minimumResultsForSearch < 0) { + this.showSearch(false); + } else { + this.showSearch(true); + } + + this.selection = selection = container.find(".select2-choice"); + + this.focusser = container.find(".select2-focusser"); + + // add aria associations + selection.find(".select2-chosen").attr("id", "select2-chosen-"+idSuffix); + this.focusser.attr("aria-labelledby", "select2-chosen-"+idSuffix); + this.results.attr("id", "select2-results-"+idSuffix); + this.search.attr("aria-owns", "select2-results-"+idSuffix); + + // rewrite labels from original element to focusser + this.focusser.attr("id", "s2id_autogen"+idSuffix); + + elementLabel = $("label[for='" + this.opts.element.attr("id") + "']"); + + this.focusser.prev() + .text(elementLabel.text()) + .attr('for', this.focusser.attr('id')); + + // Ensure the original element retains an accessible name + var originalTitle = this.opts.element.attr("title"); + this.opts.element.attr("title", (originalTitle || elementLabel.text())); + + this.focusser.attr("tabindex", this.elementTabIndex); + + // write label for search field using the label from the focusser element + this.search.attr("id", this.focusser.attr('id') + '_search'); + + this.search.prev() + .text($("label[for='" + this.focusser.attr('id') + "']").text()) + .attr('for', this.search.attr('id')); + + this.search.on("keydown", this.bind(function (e) { + if (!this.isInterfaceEnabled()) return; + + if (e.which === KEY.PAGE_UP || e.which === KEY.PAGE_DOWN) { + // prevent the page from scrolling + killEvent(e); + return; + } + + switch (e.which) { + case KEY.UP: + case KEY.DOWN: + this.moveHighlight((e.which === KEY.UP) ? -1 : 1); + killEvent(e); + return; + case KEY.ENTER: + this.selectHighlighted(); + killEvent(e); + return; + case KEY.TAB: + this.selectHighlighted({noFocus: true}); + return; + case KEY.ESC: + this.cancel(e); + killEvent(e); + return; + } + })); + + this.search.on("blur", this.bind(function(e) { + // a workaround for chrome to keep the search field focussed when the scroll bar is used to scroll the dropdown. + // without this the search field loses focus which is annoying + if (document.activeElement === this.body.get(0)) { + window.setTimeout(this.bind(function() { + if (this.opened()) { + this.search.focus(); + } + }), 0); + } + })); + + this.focusser.on("keydown", this.bind(function (e) { + if (!this.isInterfaceEnabled()) return; + + if (e.which === KEY.TAB || KEY.isControl(e) || KEY.isFunctionKey(e) || e.which === KEY.ESC) { + return; + } + + if (this.opts.openOnEnter === false && e.which === KEY.ENTER) { + killEvent(e); + return; + } + + if (e.which == KEY.DOWN || e.which == KEY.UP + || (e.which == KEY.ENTER && this.opts.openOnEnter)) { + + if (e.altKey || e.ctrlKey || e.shiftKey || e.metaKey) return; + + this.open(); + killEvent(e); + return; + } + + if (e.which == KEY.DELETE || e.which == KEY.BACKSPACE) { + if (this.opts.allowClear) { + this.clear(); + } + killEvent(e); + return; + } + })); + + + installKeyUpChangeEvent(this.focusser); + this.focusser.on("keyup-change input", this.bind(function(e) { + if (this.opts.minimumResultsForSearch >= 0) { + e.stopPropagation(); + if (this.opened()) return; + this.open(); + } + })); + + selection.on("mousedown touchstart", "abbr", this.bind(function (e) { + if (!this.isInterfaceEnabled()) return; + this.clear(); + killEventImmediately(e); + this.close(); + this.selection.focus(); + })); + + selection.on("mousedown touchstart", this.bind(function (e) { + // Prevent IE from generating a click event on the body + reinsertElement(selection); + + if (!this.container.hasClass("select2-container-active")) { + this.opts.element.trigger($.Event("select2-focus")); + } + + if (this.opened()) { + this.close(); + } else if (this.isInterfaceEnabled()) { + this.open(); + } + + killEvent(e); + })); + + dropdown.on("mousedown touchstart", this.bind(function() { + if (this.opts.shouldFocusInput(this)) { + this.search.focus(); + } + })); + + selection.on("focus", this.bind(function(e) { + killEvent(e); + })); + + this.focusser.on("focus", this.bind(function(){ + if (!this.container.hasClass("select2-container-active")) { + this.opts.element.trigger($.Event("select2-focus")); + } + this.container.addClass("select2-container-active"); + })).on("blur", this.bind(function() { + if (!this.opened()) { + this.container.removeClass("select2-container-active"); + this.opts.element.trigger($.Event("select2-blur")); + } + })); + this.search.on("focus", this.bind(function(){ + if (!this.container.hasClass("select2-container-active")) { + this.opts.element.trigger($.Event("select2-focus")); + } + this.container.addClass("select2-container-active"); + })); + + this.initContainerWidth(); + this.opts.element.addClass("select2-offscreen"); + this.setPlaceholder(); + + }, + + // single + clear: function(triggerChange) { + var data=this.selection.data("select2-data"); + if (data) { // guard against queued quick consecutive clicks + var evt = $.Event("select2-clearing"); + this.opts.element.trigger(evt); + if (evt.isDefaultPrevented()) { + return; + } + var placeholderOption = this.getPlaceholderOption(); + this.opts.element.val(placeholderOption ? placeholderOption.val() : ""); + this.selection.find(".select2-chosen").empty(); + this.selection.removeData("select2-data"); + this.setPlaceholder(); + + if (triggerChange !== false){ + this.opts.element.trigger({ type: "select2-removed", val: this.id(data), choice: data }); + this.triggerChange({removed:data}); + } + } + }, + + /** + * Sets selection based on source element's value + */ + // single + initSelection: function () { + var selected; + if (this.isPlaceholderOptionSelected()) { + this.updateSelection(null); + this.close(); + this.setPlaceholder(); + } else { + var self = this; + this.opts.initSelection.call(null, this.opts.element, function(selected){ + if (selected !== undefined && selected !== null) { + self.updateSelection(selected); + self.close(); + self.setPlaceholder(); + self.nextSearchTerm = self.opts.nextSearchTerm(selected, self.search.val()); + } + }); + } + }, + + isPlaceholderOptionSelected: function() { + var placeholderOption; + if (this.getPlaceholder() === undefined) return false; // no placeholder specified so no option should be considered + return ((placeholderOption = this.getPlaceholderOption()) !== undefined && placeholderOption.prop("selected")) + || (this.opts.element.val() === "") + || (this.opts.element.val() === undefined) + || (this.opts.element.val() === null); + }, + + // single + prepareOpts: function () { + var opts = this.parent.prepareOpts.apply(this, arguments), + self=this; + + if (opts.element.get(0).tagName.toLowerCase() === "select") { + // install the selection initializer + opts.initSelection = function (element, callback) { + var selected = element.find("option").filter(function() { return this.selected && !this.disabled }); + // a single select box always has a value, no need to null check 'selected' + callback(self.optionToData(selected)); + }; + } else if ("data" in opts) { + // install default initSelection when applied to hidden input and data is local + opts.initSelection = opts.initSelection || function (element, callback) { + var id = element.val(); + //search in data by id, storing the actual matching item + var match = null; + opts.query({ + matcher: function(term, text, el){ + var is_match = equal(id, opts.id(el)); + if (is_match) { + match = el; + } + return is_match; + }, + callback: !$.isFunction(callback) ? $.noop : function() { + callback(match); + } + }); + }; + } + + return opts; + }, + + // single + getPlaceholder: function() { + // if a placeholder is specified on a single select without a valid placeholder option ignore it + if (this.select) { + if (this.getPlaceholderOption() === undefined) { + return undefined; + } + } + + return this.parent.getPlaceholder.apply(this, arguments); + }, + + // single + setPlaceholder: function () { + var placeholder = this.getPlaceholder(); + + if (this.isPlaceholderOptionSelected() && placeholder !== undefined) { + + // check for a placeholder option if attached to a select + if (this.select && this.getPlaceholderOption() === undefined) return; + + this.selection.find(".select2-chosen").html(this.opts.escapeMarkup(placeholder)); + + this.selection.addClass("select2-default"); + + this.container.removeClass("select2-allowclear"); + } + }, + + // single + postprocessResults: function (data, initial, noHighlightUpdate) { + var selected = 0, self = this, showSearchInput = true; + + // find the selected element in the result list + + this.findHighlightableChoices().each2(function (i, elm) { + if (equal(self.id(elm.data("select2-data")), self.opts.element.val())) { + selected = i; + return false; + } + }); + + // and highlight it + if (noHighlightUpdate !== false) { + if (initial === true && selected >= 0) { + this.highlight(selected); + } else { + this.highlight(0); + } + } + + // hide the search box if this is the first we got the results and there are enough of them for search + + if (initial === true) { + var min = this.opts.minimumResultsForSearch; + if (min >= 0) { + this.showSearch(countResults(data.results) >= min); + } + } + }, + + // single + showSearch: function(showSearchInput) { + if (this.showSearchInput === showSearchInput) return; + + this.showSearchInput = showSearchInput; + + this.dropdown.find(".select2-search").toggleClass("select2-search-hidden", !showSearchInput); + this.dropdown.find(".select2-search").toggleClass("select2-offscreen", !showSearchInput); + //add "select2-with-searchbox" to the container if search box is shown + $(this.dropdown, this.container).toggleClass("select2-with-searchbox", showSearchInput); + }, + + // single + onSelect: function (data, options) { + + if (!this.triggerSelect(data)) { return; } + + var old = this.opts.element.val(), + oldData = this.data(); + + this.opts.element.val(this.id(data)); + this.updateSelection(data); + + this.opts.element.trigger({ type: "select2-selected", val: this.id(data), choice: data }); + + this.nextSearchTerm = this.opts.nextSearchTerm(data, this.search.val()); + this.close(); + + if ((!options || !options.noFocus) && this.opts.shouldFocusInput(this)) { + this.focusser.focus(); + } + + if (!equal(old, this.id(data))) { + this.triggerChange({ added: data, removed: oldData }); + } + }, + + // single + updateSelection: function (data) { + + var container=this.selection.find(".select2-chosen"), formatted, cssClass; + + this.selection.data("select2-data", data); + + container.empty(); + if (data !== null) { + formatted=this.opts.formatSelection(data, container, this.opts.escapeMarkup); + } + if (formatted !== undefined) { + container.append(formatted); + } + cssClass=this.opts.formatSelectionCssClass(data, container); + if (cssClass !== undefined) { + container.addClass(cssClass); + } + + this.selection.removeClass("select2-default"); + + if (this.opts.allowClear && this.getPlaceholder() !== undefined) { + this.container.addClass("select2-allowclear"); + } + }, + + // single + val: function () { + var val, + triggerChange = false, + data = null, + self = this, + oldData = this.data(); + + if (arguments.length === 0) { + return this.opts.element.val(); + } + + val = arguments[0]; + + if (arguments.length > 1) { + triggerChange = arguments[1]; + } + + if (this.select) { + this.select + .val(val) + .find("option").filter(function() { return this.selected }).each2(function (i, elm) { + data = self.optionToData(elm); + return false; + }); + this.updateSelection(data); + this.setPlaceholder(); + if (triggerChange) { + this.triggerChange({added: data, removed:oldData}); + } + } else { + // val is an id. !val is true for [undefined,null,'',0] - 0 is legal + if (!val && val !== 0) { + this.clear(triggerChange); + return; + } + if (this.opts.initSelection === undefined) { + throw new Error("cannot call val() if initSelection() is not defined"); + } + this.opts.element.val(val); + this.opts.initSelection(this.opts.element, function(data){ + self.opts.element.val(!data ? "" : self.id(data)); + self.updateSelection(data); + self.setPlaceholder(); + if (triggerChange) { + self.triggerChange({added: data, removed:oldData}); + } + }); + } + }, + + // single + clearSearch: function () { + this.search.val(""); + this.focusser.val(""); + }, + + // single + data: function(value) { + var data, + triggerChange = false; + + if (arguments.length === 0) { + data = this.selection.data("select2-data"); + if (data == undefined) data = null; + return data; + } else { + if (arguments.length > 1) { + triggerChange = arguments[1]; + } + if (!value) { + this.clear(triggerChange); + } else { + data = this.data(); + this.opts.element.val(!value ? "" : this.id(value)); + this.updateSelection(value); + if (triggerChange) { + this.triggerChange({added: value, removed:data}); + } + } + } + } + }); + + MultiSelect2 = clazz(AbstractSelect2, { + + // multi + createContainer: function () { + var container = $(document.createElement("div")).attr({ + "class": "select2-container select2-container-multi" + }).html([ + "
    ", + "
  • ", + " ", + " ", + "
  • ", + "
", + "
", + "
    ", + "
", + "
"].join("")); + return container; + }, + + // multi + prepareOpts: function () { + var opts = this.parent.prepareOpts.apply(this, arguments), + self=this; + + // TODO validate placeholder is a string if specified + + if (opts.element.get(0).tagName.toLowerCase() === "select") { + // install the selection initializer + opts.initSelection = function (element, callback) { + + var data = []; + + element.find("option").filter(function() { return this.selected && !this.disabled }).each2(function (i, elm) { + data.push(self.optionToData(elm)); + }); + callback(data); + }; + } else if ("data" in opts) { + // install default initSelection when applied to hidden input and data is local + opts.initSelection = opts.initSelection || function (element, callback) { + var ids = splitVal(element.val(), opts.separator); + //search in data by array of ids, storing matching items in a list + var matches = []; + opts.query({ + matcher: function(term, text, el){ + var is_match = $.grep(ids, function(id) { + return equal(id, opts.id(el)); + }).length; + if (is_match) { + matches.push(el); + } + return is_match; + }, + callback: !$.isFunction(callback) ? $.noop : function() { + // reorder matches based on the order they appear in the ids array because right now + // they are in the order in which they appear in data array + var ordered = []; + for (var i = 0; i < ids.length; i++) { + var id = ids[i]; + for (var j = 0; j < matches.length; j++) { + var match = matches[j]; + if (equal(id, opts.id(match))) { + ordered.push(match); + matches.splice(j, 1); + break; + } + } + } + callback(ordered); + } + }); + }; + } + + return opts; + }, + + // multi + selectChoice: function (choice) { + + var selected = this.container.find(".select2-search-choice-focus"); + if (selected.length && choice && choice[0] == selected[0]) { + + } else { + if (selected.length) { + this.opts.element.trigger("choice-deselected", selected); + } + selected.removeClass("select2-search-choice-focus"); + if (choice && choice.length) { + this.close(); + choice.addClass("select2-search-choice-focus"); + this.opts.element.trigger("choice-selected", choice); + } + } + }, + + // multi + destroy: function() { + $("label[for='" + this.search.attr('id') + "']") + .attr('for', this.opts.element.attr("id")); + this.parent.destroy.apply(this, arguments); + + cleanupJQueryElements.call(this, + "searchContainer", + "selection" + ); + }, + + // multi + initContainer: function () { + + var selector = ".select2-choices", selection; + + this.searchContainer = this.container.find(".select2-search-field"); + this.selection = selection = this.container.find(selector); + + var _this = this; + this.selection.on("click", ".select2-search-choice:not(.select2-locked)", function (e) { + //killEvent(e); + _this.search[0].focus(); + _this.selectChoice($(this)); + }); + + // rewrite labels from original element to focusser + this.search.attr("id", "s2id_autogen"+nextUid()); + + this.search.prev() + .text($("label[for='" + this.opts.element.attr("id") + "']").text()) + .attr('for', this.search.attr('id')); + + this.search.on("input paste", this.bind(function() { + if (!this.isInterfaceEnabled()) return; + if (!this.opened()) { + this.open(); + } + })); + + this.search.attr("tabindex", this.elementTabIndex); + + this.keydowns = 0; + this.search.on("keydown", this.bind(function (e) { + if (!this.isInterfaceEnabled()) return; + + ++this.keydowns; + var selected = selection.find(".select2-search-choice-focus"); + var prev = selected.prev(".select2-search-choice:not(.select2-locked)"); + var next = selected.next(".select2-search-choice:not(.select2-locked)"); + var pos = getCursorInfo(this.search); + + if (selected.length && + (e.which == KEY.LEFT || e.which == KEY.RIGHT || e.which == KEY.BACKSPACE || e.which == KEY.DELETE || e.which == KEY.ENTER)) { + var selectedChoice = selected; + if (e.which == KEY.LEFT && prev.length) { + selectedChoice = prev; + } + else if (e.which == KEY.RIGHT) { + selectedChoice = next.length ? next : null; + } + else if (e.which === KEY.BACKSPACE) { + if (this.unselect(selected.first())) { + this.search.width(10); + selectedChoice = prev.length ? prev : next; + } + } else if (e.which == KEY.DELETE) { + if (this.unselect(selected.first())) { + this.search.width(10); + selectedChoice = next.length ? next : null; + } + } else if (e.which == KEY.ENTER) { + selectedChoice = null; + } + + this.selectChoice(selectedChoice); + killEvent(e); + if (!selectedChoice || !selectedChoice.length) { + this.open(); + } + return; + } else if (((e.which === KEY.BACKSPACE && this.keydowns == 1) + || e.which == KEY.LEFT) && (pos.offset == 0 && !pos.length)) { + + this.selectChoice(selection.find(".select2-search-choice:not(.select2-locked)").last()); + killEvent(e); + return; + } else { + this.selectChoice(null); + } + + if (this.opened()) { + switch (e.which) { + case KEY.UP: + case KEY.DOWN: + this.moveHighlight((e.which === KEY.UP) ? -1 : 1); + killEvent(e); + return; + case KEY.ENTER: + this.selectHighlighted(); + killEvent(e); + return; + case KEY.TAB: + this.selectHighlighted({noFocus:true}); + this.close(); + return; + case KEY.ESC: + this.cancel(e); + killEvent(e); + return; + } + } + + if (e.which === KEY.TAB || KEY.isControl(e) || KEY.isFunctionKey(e) + || e.which === KEY.BACKSPACE || e.which === KEY.ESC) { + return; + } + + if (e.which === KEY.ENTER) { + if (this.opts.openOnEnter === false) { + return; + } else if (e.altKey || e.ctrlKey || e.shiftKey || e.metaKey) { + return; + } + } + + this.open(); + + if (e.which === KEY.PAGE_UP || e.which === KEY.PAGE_DOWN) { + // prevent the page from scrolling + killEvent(e); + } + + if (e.which === KEY.ENTER) { + // prevent form from being submitted + killEvent(e); + } + + })); + + this.search.on("keyup", this.bind(function (e) { + this.keydowns = 0; + this.resizeSearch(); + }) + ); + + this.search.on("blur", this.bind(function(e) { + this.container.removeClass("select2-container-active"); + this.search.removeClass("select2-focused"); + this.selectChoice(null); + if (!this.opened()) this.clearSearch(); + e.stopImmediatePropagation(); + this.opts.element.trigger($.Event("select2-blur")); + })); + + this.container.on("click", selector, this.bind(function (e) { + if (!this.isInterfaceEnabled()) return; + if ($(e.target).closest(".select2-search-choice").length > 0) { + // clicked inside a select2 search choice, do not open + return; + } + this.selectChoice(null); + this.clearPlaceholder(); + if (!this.container.hasClass("select2-container-active")) { + this.opts.element.trigger($.Event("select2-focus")); + } + this.open(); + this.focusSearch(); + e.preventDefault(); + })); + + this.container.on("focus", selector, this.bind(function () { + if (!this.isInterfaceEnabled()) return; + if (!this.container.hasClass("select2-container-active")) { + this.opts.element.trigger($.Event("select2-focus")); + } + this.container.addClass("select2-container-active"); + this.dropdown.addClass("select2-drop-active"); + this.clearPlaceholder(); + })); + + this.initContainerWidth(); + this.opts.element.addClass("select2-offscreen"); + + // set the placeholder if necessary + this.clearSearch(); + }, + + // multi + enableInterface: function() { + if (this.parent.enableInterface.apply(this, arguments)) { + this.search.prop("disabled", !this.isInterfaceEnabled()); + } + }, + + // multi + initSelection: function () { + var data; + if (this.opts.element.val() === "" && this.opts.element.text() === "") { + this.updateSelection([]); + this.close(); + // set the placeholder if necessary + this.clearSearch(); + } + if (this.select || this.opts.element.val() !== "") { + var self = this; + this.opts.initSelection.call(null, this.opts.element, function(data){ + if (data !== undefined && data !== null) { + self.updateSelection(data); + self.close(); + // set the placeholder if necessary + self.clearSearch(); + } + }); + } + }, + + // multi + clearSearch: function () { + var placeholder = this.getPlaceholder(), + maxWidth = this.getMaxSearchWidth(); + + if (placeholder !== undefined && this.getVal().length === 0 && this.search.hasClass("select2-focused") === false) { + this.search.val(placeholder).addClass("select2-default"); + // stretch the search box to full width of the container so as much of the placeholder is visible as possible + // we could call this.resizeSearch(), but we do not because that requires a sizer and we do not want to create one so early because of a firefox bug, see #944 + this.search.width(maxWidth > 0 ? maxWidth : this.container.css("width")); + } else { + this.search.val("").width(10); + } + }, + + // multi + clearPlaceholder: function () { + if (this.search.hasClass("select2-default")) { + this.search.val("").removeClass("select2-default"); + } + }, + + // multi + opening: function () { + this.clearPlaceholder(); // should be done before super so placeholder is not used to search + this.resizeSearch(); + + this.parent.opening.apply(this, arguments); + + this.focusSearch(); + + // initializes search's value with nextSearchTerm (if defined by user) + // ignore nextSearchTerm if the dropdown is opened by the user pressing a letter + if(this.search.val() === "") { + if(this.nextSearchTerm != undefined){ + this.search.val(this.nextSearchTerm); + this.search.select(); + } + } + + this.updateResults(true); + if (this.opts.shouldFocusInput(this)) { + this.search.focus(); + } + this.opts.element.trigger($.Event("select2-open")); + }, + + // multi + close: function () { + if (!this.opened()) return; + this.parent.close.apply(this, arguments); + }, + + // multi + focus: function () { + this.close(); + this.search.focus(); + }, + + // multi + isFocused: function () { + return this.search.hasClass("select2-focused"); + }, + + // multi + updateSelection: function (data) { + var ids = [], filtered = [], self = this; + + // filter out duplicates + $(data).each(function () { + if (indexOf(self.id(this), ids) < 0) { + ids.push(self.id(this)); + filtered.push(this); + } + }); + data = filtered; + + this.selection.find(".select2-search-choice").remove(); + $(data).each(function () { + self.addSelectedChoice(this); + }); + self.postprocessResults(); + }, + + // multi + tokenize: function() { + var input = this.search.val(); + input = this.opts.tokenizer.call(this, input, this.data(), this.bind(this.onSelect), this.opts); + if (input != null && input != undefined) { + this.search.val(input); + if (input.length > 0) { + this.open(); + } + } + + }, + + // multi + onSelect: function (data, options) { + + if (!this.triggerSelect(data)) { return; } + + this.addSelectedChoice(data); + + this.opts.element.trigger({ type: "selected", val: this.id(data), choice: data }); + + // keep track of the search's value before it gets cleared + this.nextSearchTerm = this.opts.nextSearchTerm(data, this.search.val()); + + this.clearSearch(); + this.updateResults(); + + if (this.select || !this.opts.closeOnSelect) this.postprocessResults(data, false, this.opts.closeOnSelect===true); + + if (this.opts.closeOnSelect) { + this.close(); + this.search.width(10); + } else { + if (this.countSelectableResults()>0) { + this.search.width(10); + this.resizeSearch(); + if (this.getMaximumSelectionSize() > 0 && this.val().length >= this.getMaximumSelectionSize()) { + // if we reached max selection size repaint the results so choices + // are replaced with the max selection reached message + this.updateResults(true); + } else { + // initializes search's value with nextSearchTerm and update search result + if(this.nextSearchTerm != undefined){ + this.search.val(this.nextSearchTerm); + this.updateResults(); + this.search.select(); + } + } + this.positionDropdown(); + } else { + // if nothing left to select close + this.close(); + this.search.width(10); + } + } + + // since its not possible to select an element that has already been + // added we do not need to check if this is a new element before firing change + this.triggerChange({ added: data }); + + if (!options || !options.noFocus) + this.focusSearch(); + }, + + // multi + cancel: function () { + this.close(); + this.focusSearch(); + }, + + addSelectedChoice: function (data) { + var enableChoice = !data.locked, + enabledItem = $( + "
  • " + + "
    " + + " " + + "
  • "), + disabledItem = $( + "
  • " + + "
    " + + "
  • "); + var choice = enableChoice ? enabledItem : disabledItem, + id = this.id(data), + val = this.getVal(), + formatted, + cssClass; + + formatted=this.opts.formatSelection(data, choice.find("div"), this.opts.escapeMarkup); + if (formatted != undefined) { + choice.find("div").replaceWith("
    "+formatted+"
    "); + } + cssClass=this.opts.formatSelectionCssClass(data, choice.find("div")); + if (cssClass != undefined) { + choice.addClass(cssClass); + } + + if(enableChoice){ + choice.find(".select2-search-choice-close") + .on("mousedown", killEvent) + .on("click dblclick", this.bind(function (e) { + if (!this.isInterfaceEnabled()) return; + + this.unselect($(e.target)); + this.selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus"); + killEvent(e); + this.close(); + this.focusSearch(); + })).on("focus", this.bind(function () { + if (!this.isInterfaceEnabled()) return; + this.container.addClass("select2-container-active"); + this.dropdown.addClass("select2-drop-active"); + })); + } + + choice.data("select2-data", data); + choice.insertBefore(this.searchContainer); + + val.push(id); + this.setVal(val); + }, + + // multi + unselect: function (selected) { + var val = this.getVal(), + data, + index; + selected = selected.closest(".select2-search-choice"); + + if (selected.length === 0) { + throw "Invalid argument: " + selected + ". Must be .select2-search-choice"; + } + + data = selected.data("select2-data"); + + if (!data) { + // prevent a race condition when the 'x' is clicked really fast repeatedly the event can be queued + // and invoked on an element already removed + return; + } + + var evt = $.Event("select2-removing"); + evt.val = this.id(data); + evt.choice = data; + this.opts.element.trigger(evt); + + if (evt.isDefaultPrevented()) { + return false; + } + + while((index = indexOf(this.id(data), val)) >= 0) { + val.splice(index, 1); + this.setVal(val); + if (this.select) this.postprocessResults(); + } + + selected.remove(); + + this.opts.element.trigger({ type: "select2-removed", val: this.id(data), choice: data }); + this.triggerChange({ removed: data }); + + return true; + }, + + // multi + postprocessResults: function (data, initial, noHighlightUpdate) { + var val = this.getVal(), + choices = this.results.find(".select2-result"), + compound = this.results.find(".select2-result-with-children"), + self = this; + + choices.each2(function (i, choice) { + var id = self.id(choice.data("select2-data")); + if (indexOf(id, val) >= 0) { + choice.addClass("select2-selected"); + // mark all children of the selected parent as selected + choice.find(".select2-result-selectable").addClass("select2-selected"); + } + }); + + compound.each2(function(i, choice) { + // hide an optgroup if it doesn't have any selectable children + if (!choice.is('.select2-result-selectable') + && choice.find(".select2-result-selectable:not(.select2-selected)").length === 0) { + choice.addClass("select2-selected"); + } + }); + + if (this.highlight() == -1 && noHighlightUpdate !== false){ + self.highlight(0); + } + + //If all results are chosen render formatNoMatches + if(!this.opts.createSearchChoice && !choices.filter('.select2-result:not(.select2-selected)').length > 0){ + if(!data || data && !data.more && this.results.find(".select2-no-results").length === 0) { + if (checkFormatter(self.opts.formatNoMatches, "formatNoMatches")) { + this.results.append("
  • " + evaluate(self.opts.formatNoMatches, self.search.val()) + "
  • "); + } + } + } + + }, + + // multi + getMaxSearchWidth: function() { + return this.selection.width() - getSideBorderPadding(this.search); + }, + + // multi + resizeSearch: function () { + var minimumWidth, left, maxWidth, containerLeft, searchWidth, + sideBorderPadding = getSideBorderPadding(this.search); + + minimumWidth = measureTextWidth(this.search) + 10; + + left = this.search.offset().left; + + maxWidth = this.selection.width(); + containerLeft = this.selection.offset().left; + + searchWidth = maxWidth - (left - containerLeft) - sideBorderPadding; + + if (searchWidth < minimumWidth) { + searchWidth = maxWidth - sideBorderPadding; + } + + if (searchWidth < 40) { + searchWidth = maxWidth - sideBorderPadding; + } + + if (searchWidth <= 0) { + searchWidth = minimumWidth; + } + + this.search.width(Math.floor(searchWidth)); + }, + + // multi + getVal: function () { + var val; + if (this.select) { + val = this.select.val(); + return val === null ? [] : val; + } else { + val = this.opts.element.val(); + return splitVal(val, this.opts.separator); + } + }, + + // multi + setVal: function (val) { + var unique; + if (this.select) { + this.select.val(val); + } else { + unique = []; + // filter out duplicates + $(val).each(function () { + if (indexOf(this, unique) < 0) unique.push(this); + }); + this.opts.element.val(unique.length === 0 ? "" : unique.join(this.opts.separator)); + } + }, + + // multi + buildChangeDetails: function (old, current) { + var current = current.slice(0), + old = old.slice(0); + + // remove intersection from each array + for (var i = 0; i < current.length; i++) { + for (var j = 0; j < old.length; j++) { + if (equal(this.opts.id(current[i]), this.opts.id(old[j]))) { + current.splice(i, 1); + if(i>0){ + i--; + } + old.splice(j, 1); + j--; + } + } + } + + return {added: current, removed: old}; + }, + + + // multi + val: function (val, triggerChange) { + var oldData, self=this; + + if (arguments.length === 0) { + return this.getVal(); + } + + oldData=this.data(); + if (!oldData.length) oldData=[]; + + // val is an id. !val is true for [undefined,null,'',0] - 0 is legal + if (!val && val !== 0) { + this.opts.element.val(""); + this.updateSelection([]); + this.clearSearch(); + if (triggerChange) { + this.triggerChange({added: this.data(), removed: oldData}); + } + return; + } + + // val is a list of ids + this.setVal(val); + + if (this.select) { + this.opts.initSelection(this.select, this.bind(this.updateSelection)); + if (triggerChange) { + this.triggerChange(this.buildChangeDetails(oldData, this.data())); + } + } else { + if (this.opts.initSelection === undefined) { + throw new Error("val() cannot be called if initSelection() is not defined"); + } + + this.opts.initSelection(this.opts.element, function(data){ + var ids=$.map(data, self.id); + self.setVal(ids); + self.updateSelection(data); + self.clearSearch(); + if (triggerChange) { + self.triggerChange(self.buildChangeDetails(oldData, self.data())); + } + }); + } + this.clearSearch(); + }, + + // multi + onSortStart: function() { + if (this.select) { + throw new Error("Sorting of elements is not supported when attached to instead."); + } + + // collapse search field into 0 width so its container can be collapsed as well + this.search.width(0); + // hide the container + this.searchContainer.hide(); + }, + + // multi + onSortEnd:function() { + + var val=[], self=this; + + // show search and move it to the end of the list + this.searchContainer.show(); + // make sure the search container is the last item in the list + this.searchContainer.appendTo(this.searchContainer.parent()); + // since we collapsed the width in dragStarted, we resize it here + this.resizeSearch(); + + // update selection + this.selection.find(".select2-search-choice").each(function() { + val.push(self.opts.id($(this).data("select2-data"))); + }); + this.setVal(val); + this.triggerChange(); + }, + + // multi + data: function(values, triggerChange) { + var self=this, ids, old; + if (arguments.length === 0) { + return this.selection + .children(".select2-search-choice") + .map(function() { return $(this).data("select2-data"); }) + .get(); + } else { + old = this.data(); + if (!values) { values = []; } + ids = $.map(values, function(e) { return self.opts.id(e); }); + this.setVal(ids); + this.updateSelection(values); + this.clearSearch(); + if (triggerChange) { + this.triggerChange(this.buildChangeDetails(old, this.data())); + } + } + } + }); + + $.fn.select2 = function () { + + var args = Array.prototype.slice.call(arguments, 0), + opts, + select2, + method, value, multiple, + allowedMethods = ["val", "destroy", "opened", "open", "close", "focus", "isFocused", "container", "dropdown", "onSortStart", "onSortEnd", "enable", "disable", "readonly", "positionDropdown", "data", "search"], + valueMethods = ["opened", "isFocused", "container", "dropdown"], + propertyMethods = ["val", "data"], + methodsMap = { search: "externalSearch" }; + + this.each(function () { + if (args.length === 0 || typeof(args[0]) === "object") { + opts = args.length === 0 ? {} : $.extend({}, args[0]); + opts.element = $(this); + + if (opts.element.get(0).tagName.toLowerCase() === "select") { + multiple = opts.element.prop("multiple"); + } else { + multiple = opts.multiple || false; + if ("tags" in opts) {opts.multiple = multiple = true;} + } + + select2 = multiple ? new window.Select2["class"].multi() : new window.Select2["class"].single(); + select2.init(opts); + } else if (typeof(args[0]) === "string") { + + if (indexOf(args[0], allowedMethods) < 0) { + throw "Unknown method: " + args[0]; + } + + value = undefined; + select2 = $(this).data("select2"); + if (select2 === undefined) return; + + method=args[0]; + + if (method === "container") { + value = select2.container; + } else if (method === "dropdown") { + value = select2.dropdown; + } else { + if (methodsMap[method]) method = methodsMap[method]; + + value = select2[method].apply(select2, args.slice(1)); + } + if (indexOf(args[0], valueMethods) >= 0 + || (indexOf(args[0], propertyMethods) >= 0 && args.length == 1)) { + return false; // abort the iteration, ready to return first matched value + } + } else { + throw "Invalid arguments to select2 plugin: " + args; + } + }); + return (value === undefined) ? this : value; + }; + + // plugin defaults, accessible to users + $.fn.select2.defaults = { + width: "copy", + loadMorePadding: 0, + closeOnSelect: true, + openOnEnter: true, + containerCss: {}, + dropdownCss: {}, + containerCssClass: "", + dropdownCssClass: "", + formatResult: function(result, container, query, escapeMarkup) { + var markup=[]; + markMatch(result.text, query.term, markup, escapeMarkup); + return markup.join(""); + }, + formatSelection: function (data, container, escapeMarkup) { + return data ? escapeMarkup(data.text) : undefined; + }, + sortResults: function (results, container, query) { + return results; + }, + formatResultCssClass: function(data) {return data.css;}, + formatSelectionCssClass: function(data, container) {return undefined;}, + formatMatches: function (matches) { return matches + " results are available, use up and down arrow keys to navigate."; }, + formatNoMatches: function () { return "No matches found"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Please enter " + n + " or more character" + (n == 1? "" : "s"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Please delete " + n + " character" + (n == 1? "" : "s"); }, + formatSelectionTooBig: function (limit) { return "You can only select " + limit + " item" + (limit == 1 ? "" : "s"); }, + formatLoadMore: function (pageNumber) { return "Loading more results…"; }, + formatSearching: function () { return "Searching…"; }, + minimumResultsForSearch: 0, + minimumInputLength: 0, + maximumInputLength: null, + maximumSelectionSize: 0, + id: function (e) { return e == undefined ? null : e.id; }, + matcher: function(term, text) { + return stripDiacritics(''+text).toUpperCase().indexOf(stripDiacritics(''+term).toUpperCase()) >= 0; + }, + separator: ",", + tokenSeparators: [], + tokenizer: defaultTokenizer, + escapeMarkup: defaultEscapeMarkup, + blurOnChange: false, + selectOnBlur: false, + adaptContainerCssClass: function(c) { return c; }, + adaptDropdownCssClass: function(c) { return null; }, + nextSearchTerm: function(selectedObject, currentSearchTerm) { return undefined; }, + searchInputPlaceholder: '', + createSearchChoicePosition: 'top', + shouldFocusInput: function (instance) { + // Attempt to detect touch devices + var supportsTouchEvents = (('ontouchstart' in window) || + (navigator.msMaxTouchPoints > 0)); + + // Only devices which support touch events should be special cased + if (!supportsTouchEvents) { + return true; + } + + // Never focus the input if search is disabled + if (instance.opts.minimumResultsForSearch < 0) { + return false; + } + + return true; + } + }; + + $.fn.select2.ajaxDefaults = { + transport: $.ajax, + params: { + type: "GET", + cache: false, + dataType: "json" + } + }; + + // exports + window.Select2 = { + query: { + ajax: ajax, + local: local, + tags: tags + }, util: { + debounce: debounce, + markMatch: markMatch, + escapeMarkup: defaultEscapeMarkup, + stripDiacritics: stripDiacritics + }, "class": { + "abstract": AbstractSelect2, + "single": SingleSelect2, + "multi": MultiSelect2 + } + }; + +}(jQuery)); diff --git a/apps/files_external/3rdparty/select2/select2.min.js b/apps/files_external/3rdparty/select2/select2.min.js new file mode 100644 index 00000000000..f396992f24b --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2.min.js @@ -0,0 +1,22 @@ +/* +Copyright 2014 Igor Vaynberg + +Version: 3.4.8 Timestamp: Thu May 1 09:50:32 EDT 2014 + +This software is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU +General Public License version 2 (the "GPL License"). You may choose either license to govern your +use of this software only upon the condition that you accept all of the terms of either the Apache +License or the GPL License. + +You may obtain a copy of the Apache License and the GPL License at: + +http://www.apache.org/licenses/LICENSE-2.0 +http://www.gnu.org/licenses/gpl-2.0.html + +Unless required by applicable law or agreed to in writing, software distributed under the Apache License +or the GPL Licesnse is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, +either express or implied. See the Apache License and the GPL License for the specific language governing +permissions and limitations under the Apache License and the GPL License. +*/ +!function(a){"undefined"==typeof a.fn.each2&&a.extend(a.fn,{each2:function(b){for(var c=a([0]),d=-1,e=this.length;++dc;c+=1)if(r(a,b[c]))return c;return-1}function q(){var b=a(l);b.appendTo("body");var c={width:b.width()-b[0].clientWidth,height:b.height()-b[0].clientHeight};return b.remove(),c}function r(a,c){return a===c?!0:a===b||c===b?!1:null===a||null===c?!1:a.constructor===String?a+""==c+"":c.constructor===String?c+""==a+"":!1}function s(b,c){var d,e,f;if(null===b||b.length<1)return[];for(d=b.split(c),e=0,f=d.length;f>e;e+=1)d[e]=a.trim(d[e]);return d}function t(a){return a.outerWidth(!1)-a.width()}function u(c){var d="keyup-change-value";c.on("keydown",function(){a.data(c,d)===b&&a.data(c,d,c.val())}),c.on("keyup",function(){var e=a.data(c,d);e!==b&&c.val()!==e&&(a.removeData(c,d),c.trigger("keyup-change"))})}function v(c){c.on("mousemove",function(c){var d=i;(d===b||d.x!==c.pageX||d.y!==c.pageY)&&a(c.target).trigger("mousemove-filtered",c)})}function w(a,c,d){d=d||b;var e;return function(){var b=arguments;window.clearTimeout(e),e=window.setTimeout(function(){c.apply(d,b)},a)}}function x(a,b){var c=w(a,function(a){b.trigger("scroll-debounced",a)});b.on("scroll",function(a){p(a.target,b.get())>=0&&c(a)})}function y(a){a[0]!==document.activeElement&&window.setTimeout(function(){var d,b=a[0],c=a.val().length;a.focus();var e=b.offsetWidth>0||b.offsetHeight>0;e&&b===document.activeElement&&(b.setSelectionRange?b.setSelectionRange(c,c):b.createTextRange&&(d=b.createTextRange(),d.collapse(!1),d.select()))},0)}function z(b){b=a(b)[0];var c=0,d=0;if("selectionStart"in b)c=b.selectionStart,d=b.selectionEnd-c;else if("selection"in document){b.focus();var e=document.selection.createRange();d=document.selection.createRange().text.length,e.moveStart("character",-b.value.length),c=e.text.length-d}return{offset:c,length:d}}function A(a){a.preventDefault(),a.stopPropagation()}function B(a){a.preventDefault(),a.stopImmediatePropagation()}function C(b){if(!h){var c=b[0].currentStyle||window.getComputedStyle(b[0],null);h=a(document.createElement("div")).css({position:"absolute",left:"-10000px",top:"-10000px",display:"none",fontSize:c.fontSize,fontFamily:c.fontFamily,fontStyle:c.fontStyle,fontWeight:c.fontWeight,letterSpacing:c.letterSpacing,textTransform:c.textTransform,whiteSpace:"nowrap"}),h.attr("class","select2-sizer"),a("body").append(h)}return h.text(b.val()),h.width()}function D(b,c,d){var e,g,f=[];e=b.attr("class"),e&&(e=""+e,a(e.split(" ")).each2(function(){0===this.indexOf("select2-")&&f.push(this)})),e=c.attr("class"),e&&(e=""+e,a(e.split(" ")).each2(function(){0!==this.indexOf("select2-")&&(g=d(this),g&&f.push(g))})),b.attr("class",f.join(" "))}function E(a,b,c,d){var e=o(a.toUpperCase()).indexOf(o(b.toUpperCase())),f=b.length;return 0>e?(c.push(d(a)),void 0):(c.push(d(a.substring(0,e))),c.push(""),c.push(d(a.substring(e,e+f))),c.push(""),c.push(d(a.substring(e+f,a.length))),void 0)}function F(a){var b={"\\":"\","&":"&","<":"<",">":">",'"':""","'":"'","/":"/"};return String(a).replace(/[&<>"'\/\\]/g,function(a){return b[a]})}function G(c){var d,e=null,f=c.quietMillis||100,g=c.url,h=this;return function(i){window.clearTimeout(d),d=window.setTimeout(function(){var d=c.data,f=g,j=c.transport||a.fn.select2.ajaxDefaults.transport,k={type:c.type||"GET",cache:c.cache||!1,jsonpCallback:c.jsonpCallback||b,dataType:c.dataType||"json"},l=a.extend({},a.fn.select2.ajaxDefaults.params,k);d=d?d.call(h,i.term,i.page,i.context):null,f="function"==typeof f?f.call(h,i.term,i.page,i.context):f,e&&"function"==typeof e.abort&&e.abort(),c.params&&(a.isFunction(c.params)?a.extend(l,c.params.call(h)):a.extend(l,c.params)),a.extend(l,{url:f,dataType:c.dataType,data:d,success:function(a){var b=c.results(a,i.page);i.callback(b)}}),e=j.call(h,l)},f)}}function H(b){var d,e,c=b,f=function(a){return""+a.text};a.isArray(c)&&(e=c,c={results:e}),a.isFunction(c)===!1&&(e=c,c=function(){return e});var g=c();return g.text&&(f=g.text,a.isFunction(f)||(d=g.text,f=function(a){return a[d]})),function(b){var g,d=b.term,e={results:[]};return""===d?(b.callback(c()),void 0):(g=function(c,e){var h,i;if(c=c[0],c.children){h={};for(i in c)c.hasOwnProperty(i)&&(h[i]=c[i]);h.children=[],a(c.children).each2(function(a,b){g(b,h.children)}),(h.children.length||b.matcher(d,f(h),c))&&e.push(h)}else b.matcher(d,f(c),c)&&e.push(c)},a(c().results).each2(function(a,b){g(b,e.results)}),b.callback(e),void 0)}}function I(c){var d=a.isFunction(c);return function(e){var f=e.term,g={results:[]},h=d?c(e):c;a.isArray(h)&&(a(h).each(function(){var a=this.text!==b,c=a?this.text:this;(""===f||e.matcher(f,c))&&g.results.push(a?this:{id:this,text:this})}),e.callback(g))}}function J(b,c){if(a.isFunction(b))return!0;if(!b)return!1;if("string"==typeof b)return!0;throw new Error(c+" must be a string, function, or falsy value")}function K(b){if(a.isFunction(b)){var c=Array.prototype.slice.call(arguments,1);return b.apply(null,c)}return b}function L(b){var c=0;return a.each(b,function(a,b){b.children?c+=L(b.children):c++}),c}function M(a,c,d,e){var h,i,j,k,l,f=a,g=!1;if(!e.createSearchChoice||!e.tokenSeparators||e.tokenSeparators.length<1)return b;for(;;){for(i=-1,j=0,k=e.tokenSeparators.length;k>j&&(l=e.tokenSeparators[j],i=a.indexOf(l),!(i>=0));j++);if(0>i)break;if(h=a.substring(0,i),a=a.substring(i+l.length),h.length>0&&(h=e.createSearchChoice.call(this,h,c),h!==b&&null!==h&&e.id(h)!==b&&null!==e.id(h))){for(g=!1,j=0,k=c.length;k>j;j++)if(r(e.id(h),e.id(c[j]))){g=!0;break}g||d(h)}}return f!==a?a:void 0}function N(){var a=this;Array.prototype.forEach.call(arguments,function(b){a[b].remove(),a[b]=null})}function O(b,c){var d=function(){};return d.prototype=new b,d.prototype.constructor=d,d.prototype.parent=b.prototype,d.prototype=a.extend(d.prototype,c),d}if(window.Select2===b){var c,d,e,f,g,h,j,k,i={x:0,y:0},c={TAB:9,ENTER:13,ESC:27,SPACE:32,LEFT:37,UP:38,RIGHT:39,DOWN:40,SHIFT:16,CTRL:17,ALT:18,PAGE_UP:33,PAGE_DOWN:34,HOME:36,END:35,BACKSPACE:8,DELETE:46,isArrow:function(a){switch(a=a.which?a.which:a){case c.LEFT:case c.RIGHT:case c.UP:case c.DOWN:return!0}return!1},isControl:function(a){var b=a.which;switch(b){case c.SHIFT:case c.CTRL:case c.ALT:return!0}return a.metaKey?!0:!1},isFunctionKey:function(a){return a=a.which?a.which:a,a>=112&&123>=a}},l="
    ",m={"\u24b6":"A","\uff21":"A","\xc0":"A","\xc1":"A","\xc2":"A","\u1ea6":"A","\u1ea4":"A","\u1eaa":"A","\u1ea8":"A","\xc3":"A","\u0100":"A","\u0102":"A","\u1eb0":"A","\u1eae":"A","\u1eb4":"A","\u1eb2":"A","\u0226":"A","\u01e0":"A","\xc4":"A","\u01de":"A","\u1ea2":"A","\xc5":"A","\u01fa":"A","\u01cd":"A","\u0200":"A","\u0202":"A","\u1ea0":"A","\u1eac":"A","\u1eb6":"A","\u1e00":"A","\u0104":"A","\u023a":"A","\u2c6f":"A","\ua732":"AA","\xc6":"AE","\u01fc":"AE","\u01e2":"AE","\ua734":"AO","\ua736":"AU","\ua738":"AV","\ua73a":"AV","\ua73c":"AY","\u24b7":"B","\uff22":"B","\u1e02":"B","\u1e04":"B","\u1e06":"B","\u0243":"B","\u0182":"B","\u0181":"B","\u24b8":"C","\uff23":"C","\u0106":"C","\u0108":"C","\u010a":"C","\u010c":"C","\xc7":"C","\u1e08":"C","\u0187":"C","\u023b":"C","\ua73e":"C","\u24b9":"D","\uff24":"D","\u1e0a":"D","\u010e":"D","\u1e0c":"D","\u1e10":"D","\u1e12":"D","\u1e0e":"D","\u0110":"D","\u018b":"D","\u018a":"D","\u0189":"D","\ua779":"D","\u01f1":"DZ","\u01c4":"DZ","\u01f2":"Dz","\u01c5":"Dz","\u24ba":"E","\uff25":"E","\xc8":"E","\xc9":"E","\xca":"E","\u1ec0":"E","\u1ebe":"E","\u1ec4":"E","\u1ec2":"E","\u1ebc":"E","\u0112":"E","\u1e14":"E","\u1e16":"E","\u0114":"E","\u0116":"E","\xcb":"E","\u1eba":"E","\u011a":"E","\u0204":"E","\u0206":"E","\u1eb8":"E","\u1ec6":"E","\u0228":"E","\u1e1c":"E","\u0118":"E","\u1e18":"E","\u1e1a":"E","\u0190":"E","\u018e":"E","\u24bb":"F","\uff26":"F","\u1e1e":"F","\u0191":"F","\ua77b":"F","\u24bc":"G","\uff27":"G","\u01f4":"G","\u011c":"G","\u1e20":"G","\u011e":"G","\u0120":"G","\u01e6":"G","\u0122":"G","\u01e4":"G","\u0193":"G","\ua7a0":"G","\ua77d":"G","\ua77e":"G","\u24bd":"H","\uff28":"H","\u0124":"H","\u1e22":"H","\u1e26":"H","\u021e":"H","\u1e24":"H","\u1e28":"H","\u1e2a":"H","\u0126":"H","\u2c67":"H","\u2c75":"H","\ua78d":"H","\u24be":"I","\uff29":"I","\xcc":"I","\xcd":"I","\xce":"I","\u0128":"I","\u012a":"I","\u012c":"I","\u0130":"I","\xcf":"I","\u1e2e":"I","\u1ec8":"I","\u01cf":"I","\u0208":"I","\u020a":"I","\u1eca":"I","\u012e":"I","\u1e2c":"I","\u0197":"I","\u24bf":"J","\uff2a":"J","\u0134":"J","\u0248":"J","\u24c0":"K","\uff2b":"K","\u1e30":"K","\u01e8":"K","\u1e32":"K","\u0136":"K","\u1e34":"K","\u0198":"K","\u2c69":"K","\ua740":"K","\ua742":"K","\ua744":"K","\ua7a2":"K","\u24c1":"L","\uff2c":"L","\u013f":"L","\u0139":"L","\u013d":"L","\u1e36":"L","\u1e38":"L","\u013b":"L","\u1e3c":"L","\u1e3a":"L","\u0141":"L","\u023d":"L","\u2c62":"L","\u2c60":"L","\ua748":"L","\ua746":"L","\ua780":"L","\u01c7":"LJ","\u01c8":"Lj","\u24c2":"M","\uff2d":"M","\u1e3e":"M","\u1e40":"M","\u1e42":"M","\u2c6e":"M","\u019c":"M","\u24c3":"N","\uff2e":"N","\u01f8":"N","\u0143":"N","\xd1":"N","\u1e44":"N","\u0147":"N","\u1e46":"N","\u0145":"N","\u1e4a":"N","\u1e48":"N","\u0220":"N","\u019d":"N","\ua790":"N","\ua7a4":"N","\u01ca":"NJ","\u01cb":"Nj","\u24c4":"O","\uff2f":"O","\xd2":"O","\xd3":"O","\xd4":"O","\u1ed2":"O","\u1ed0":"O","\u1ed6":"O","\u1ed4":"O","\xd5":"O","\u1e4c":"O","\u022c":"O","\u1e4e":"O","\u014c":"O","\u1e50":"O","\u1e52":"O","\u014e":"O","\u022e":"O","\u0230":"O","\xd6":"O","\u022a":"O","\u1ece":"O","\u0150":"O","\u01d1":"O","\u020c":"O","\u020e":"O","\u01a0":"O","\u1edc":"O","\u1eda":"O","\u1ee0":"O","\u1ede":"O","\u1ee2":"O","\u1ecc":"O","\u1ed8":"O","\u01ea":"O","\u01ec":"O","\xd8":"O","\u01fe":"O","\u0186":"O","\u019f":"O","\ua74a":"O","\ua74c":"O","\u01a2":"OI","\ua74e":"OO","\u0222":"OU","\u24c5":"P","\uff30":"P","\u1e54":"P","\u1e56":"P","\u01a4":"P","\u2c63":"P","\ua750":"P","\ua752":"P","\ua754":"P","\u24c6":"Q","\uff31":"Q","\ua756":"Q","\ua758":"Q","\u024a":"Q","\u24c7":"R","\uff32":"R","\u0154":"R","\u1e58":"R","\u0158":"R","\u0210":"R","\u0212":"R","\u1e5a":"R","\u1e5c":"R","\u0156":"R","\u1e5e":"R","\u024c":"R","\u2c64":"R","\ua75a":"R","\ua7a6":"R","\ua782":"R","\u24c8":"S","\uff33":"S","\u1e9e":"S","\u015a":"S","\u1e64":"S","\u015c":"S","\u1e60":"S","\u0160":"S","\u1e66":"S","\u1e62":"S","\u1e68":"S","\u0218":"S","\u015e":"S","\u2c7e":"S","\ua7a8":"S","\ua784":"S","\u24c9":"T","\uff34":"T","\u1e6a":"T","\u0164":"T","\u1e6c":"T","\u021a":"T","\u0162":"T","\u1e70":"T","\u1e6e":"T","\u0166":"T","\u01ac":"T","\u01ae":"T","\u023e":"T","\ua786":"T","\ua728":"TZ","\u24ca":"U","\uff35":"U","\xd9":"U","\xda":"U","\xdb":"U","\u0168":"U","\u1e78":"U","\u016a":"U","\u1e7a":"U","\u016c":"U","\xdc":"U","\u01db":"U","\u01d7":"U","\u01d5":"U","\u01d9":"U","\u1ee6":"U","\u016e":"U","\u0170":"U","\u01d3":"U","\u0214":"U","\u0216":"U","\u01af":"U","\u1eea":"U","\u1ee8":"U","\u1eee":"U","\u1eec":"U","\u1ef0":"U","\u1ee4":"U","\u1e72":"U","\u0172":"U","\u1e76":"U","\u1e74":"U","\u0244":"U","\u24cb":"V","\uff36":"V","\u1e7c":"V","\u1e7e":"V","\u01b2":"V","\ua75e":"V","\u0245":"V","\ua760":"VY","\u24cc":"W","\uff37":"W","\u1e80":"W","\u1e82":"W","\u0174":"W","\u1e86":"W","\u1e84":"W","\u1e88":"W","\u2c72":"W","\u24cd":"X","\uff38":"X","\u1e8a":"X","\u1e8c":"X","\u24ce":"Y","\uff39":"Y","\u1ef2":"Y","\xdd":"Y","\u0176":"Y","\u1ef8":"Y","\u0232":"Y","\u1e8e":"Y","\u0178":"Y","\u1ef6":"Y","\u1ef4":"Y","\u01b3":"Y","\u024e":"Y","\u1efe":"Y","\u24cf":"Z","\uff3a":"Z","\u0179":"Z","\u1e90":"Z","\u017b":"Z","\u017d":"Z","\u1e92":"Z","\u1e94":"Z","\u01b5":"Z","\u0224":"Z","\u2c7f":"Z","\u2c6b":"Z","\ua762":"Z","\u24d0":"a","\uff41":"a","\u1e9a":"a","\xe0":"a","\xe1":"a","\xe2":"a","\u1ea7":"a","\u1ea5":"a","\u1eab":"a","\u1ea9":"a","\xe3":"a","\u0101":"a","\u0103":"a","\u1eb1":"a","\u1eaf":"a","\u1eb5":"a","\u1eb3":"a","\u0227":"a","\u01e1":"a","\xe4":"a","\u01df":"a","\u1ea3":"a","\xe5":"a","\u01fb":"a","\u01ce":"a","\u0201":"a","\u0203":"a","\u1ea1":"a","\u1ead":"a","\u1eb7":"a","\u1e01":"a","\u0105":"a","\u2c65":"a","\u0250":"a","\ua733":"aa","\xe6":"ae","\u01fd":"ae","\u01e3":"ae","\ua735":"ao","\ua737":"au","\ua739":"av","\ua73b":"av","\ua73d":"ay","\u24d1":"b","\uff42":"b","\u1e03":"b","\u1e05":"b","\u1e07":"b","\u0180":"b","\u0183":"b","\u0253":"b","\u24d2":"c","\uff43":"c","\u0107":"c","\u0109":"c","\u010b":"c","\u010d":"c","\xe7":"c","\u1e09":"c","\u0188":"c","\u023c":"c","\ua73f":"c","\u2184":"c","\u24d3":"d","\uff44":"d","\u1e0b":"d","\u010f":"d","\u1e0d":"d","\u1e11":"d","\u1e13":"d","\u1e0f":"d","\u0111":"d","\u018c":"d","\u0256":"d","\u0257":"d","\ua77a":"d","\u01f3":"dz","\u01c6":"dz","\u24d4":"e","\uff45":"e","\xe8":"e","\xe9":"e","\xea":"e","\u1ec1":"e","\u1ebf":"e","\u1ec5":"e","\u1ec3":"e","\u1ebd":"e","\u0113":"e","\u1e15":"e","\u1e17":"e","\u0115":"e","\u0117":"e","\xeb":"e","\u1ebb":"e","\u011b":"e","\u0205":"e","\u0207":"e","\u1eb9":"e","\u1ec7":"e","\u0229":"e","\u1e1d":"e","\u0119":"e","\u1e19":"e","\u1e1b":"e","\u0247":"e","\u025b":"e","\u01dd":"e","\u24d5":"f","\uff46":"f","\u1e1f":"f","\u0192":"f","\ua77c":"f","\u24d6":"g","\uff47":"g","\u01f5":"g","\u011d":"g","\u1e21":"g","\u011f":"g","\u0121":"g","\u01e7":"g","\u0123":"g","\u01e5":"g","\u0260":"g","\ua7a1":"g","\u1d79":"g","\ua77f":"g","\u24d7":"h","\uff48":"h","\u0125":"h","\u1e23":"h","\u1e27":"h","\u021f":"h","\u1e25":"h","\u1e29":"h","\u1e2b":"h","\u1e96":"h","\u0127":"h","\u2c68":"h","\u2c76":"h","\u0265":"h","\u0195":"hv","\u24d8":"i","\uff49":"i","\xec":"i","\xed":"i","\xee":"i","\u0129":"i","\u012b":"i","\u012d":"i","\xef":"i","\u1e2f":"i","\u1ec9":"i","\u01d0":"i","\u0209":"i","\u020b":"i","\u1ecb":"i","\u012f":"i","\u1e2d":"i","\u0268":"i","\u0131":"i","\u24d9":"j","\uff4a":"j","\u0135":"j","\u01f0":"j","\u0249":"j","\u24da":"k","\uff4b":"k","\u1e31":"k","\u01e9":"k","\u1e33":"k","\u0137":"k","\u1e35":"k","\u0199":"k","\u2c6a":"k","\ua741":"k","\ua743":"k","\ua745":"k","\ua7a3":"k","\u24db":"l","\uff4c":"l","\u0140":"l","\u013a":"l","\u013e":"l","\u1e37":"l","\u1e39":"l","\u013c":"l","\u1e3d":"l","\u1e3b":"l","\u017f":"l","\u0142":"l","\u019a":"l","\u026b":"l","\u2c61":"l","\ua749":"l","\ua781":"l","\ua747":"l","\u01c9":"lj","\u24dc":"m","\uff4d":"m","\u1e3f":"m","\u1e41":"m","\u1e43":"m","\u0271":"m","\u026f":"m","\u24dd":"n","\uff4e":"n","\u01f9":"n","\u0144":"n","\xf1":"n","\u1e45":"n","\u0148":"n","\u1e47":"n","\u0146":"n","\u1e4b":"n","\u1e49":"n","\u019e":"n","\u0272":"n","\u0149":"n","\ua791":"n","\ua7a5":"n","\u01cc":"nj","\u24de":"o","\uff4f":"o","\xf2":"o","\xf3":"o","\xf4":"o","\u1ed3":"o","\u1ed1":"o","\u1ed7":"o","\u1ed5":"o","\xf5":"o","\u1e4d":"o","\u022d":"o","\u1e4f":"o","\u014d":"o","\u1e51":"o","\u1e53":"o","\u014f":"o","\u022f":"o","\u0231":"o","\xf6":"o","\u022b":"o","\u1ecf":"o","\u0151":"o","\u01d2":"o","\u020d":"o","\u020f":"o","\u01a1":"o","\u1edd":"o","\u1edb":"o","\u1ee1":"o","\u1edf":"o","\u1ee3":"o","\u1ecd":"o","\u1ed9":"o","\u01eb":"o","\u01ed":"o","\xf8":"o","\u01ff":"o","\u0254":"o","\ua74b":"o","\ua74d":"o","\u0275":"o","\u01a3":"oi","\u0223":"ou","\ua74f":"oo","\u24df":"p","\uff50":"p","\u1e55":"p","\u1e57":"p","\u01a5":"p","\u1d7d":"p","\ua751":"p","\ua753":"p","\ua755":"p","\u24e0":"q","\uff51":"q","\u024b":"q","\ua757":"q","\ua759":"q","\u24e1":"r","\uff52":"r","\u0155":"r","\u1e59":"r","\u0159":"r","\u0211":"r","\u0213":"r","\u1e5b":"r","\u1e5d":"r","\u0157":"r","\u1e5f":"r","\u024d":"r","\u027d":"r","\ua75b":"r","\ua7a7":"r","\ua783":"r","\u24e2":"s","\uff53":"s","\xdf":"s","\u015b":"s","\u1e65":"s","\u015d":"s","\u1e61":"s","\u0161":"s","\u1e67":"s","\u1e63":"s","\u1e69":"s","\u0219":"s","\u015f":"s","\u023f":"s","\ua7a9":"s","\ua785":"s","\u1e9b":"s","\u24e3":"t","\uff54":"t","\u1e6b":"t","\u1e97":"t","\u0165":"t","\u1e6d":"t","\u021b":"t","\u0163":"t","\u1e71":"t","\u1e6f":"t","\u0167":"t","\u01ad":"t","\u0288":"t","\u2c66":"t","\ua787":"t","\ua729":"tz","\u24e4":"u","\uff55":"u","\xf9":"u","\xfa":"u","\xfb":"u","\u0169":"u","\u1e79":"u","\u016b":"u","\u1e7b":"u","\u016d":"u","\xfc":"u","\u01dc":"u","\u01d8":"u","\u01d6":"u","\u01da":"u","\u1ee7":"u","\u016f":"u","\u0171":"u","\u01d4":"u","\u0215":"u","\u0217":"u","\u01b0":"u","\u1eeb":"u","\u1ee9":"u","\u1eef":"u","\u1eed":"u","\u1ef1":"u","\u1ee5":"u","\u1e73":"u","\u0173":"u","\u1e77":"u","\u1e75":"u","\u0289":"u","\u24e5":"v","\uff56":"v","\u1e7d":"v","\u1e7f":"v","\u028b":"v","\ua75f":"v","\u028c":"v","\ua761":"vy","\u24e6":"w","\uff57":"w","\u1e81":"w","\u1e83":"w","\u0175":"w","\u1e87":"w","\u1e85":"w","\u1e98":"w","\u1e89":"w","\u2c73":"w","\u24e7":"x","\uff58":"x","\u1e8b":"x","\u1e8d":"x","\u24e8":"y","\uff59":"y","\u1ef3":"y","\xfd":"y","\u0177":"y","\u1ef9":"y","\u0233":"y","\u1e8f":"y","\xff":"y","\u1ef7":"y","\u1e99":"y","\u1ef5":"y","\u01b4":"y","\u024f":"y","\u1eff":"y","\u24e9":"z","\uff5a":"z","\u017a":"z","\u1e91":"z","\u017c":"z","\u017e":"z","\u1e93":"z","\u1e95":"z","\u01b6":"z","\u0225":"z","\u0240":"z","\u2c6c":"z","\ua763":"z"};j=a(document),g=function(){var a=1;return function(){return a++}}(),j.on("mousemove",function(a){i.x=a.pageX,i.y=a.pageY}),d=O(Object,{bind:function(a){var b=this;return function(){a.apply(b,arguments)}},init:function(c){var d,e,f=".select2-results";this.opts=c=this.prepareOpts(c),this.id=c.id,c.element.data("select2")!==b&&null!==c.element.data("select2")&&c.element.data("select2").destroy(),this.container=this.createContainer(),this.liveRegion=a("",{role:"status","aria-live":"polite"}).addClass("select2-hidden-accessible").appendTo(document.body),this.containerId="s2id_"+(c.element.attr("id")||"autogen"+g()),this.containerEventName=this.containerId.replace(/([.])/g,"_").replace(/([;&,\-\.\+\*\~':"\!\^#$%@\[\]\(\)=>\|])/g,"\\$1"),this.container.attr("id",this.containerId),this.container.attr("title",c.element.attr("title")),this.body=a("body"),D(this.container,this.opts.element,this.opts.adaptContainerCssClass),this.container.attr("style",c.element.attr("style")),this.container.css(K(c.containerCss)),this.container.addClass(K(c.containerCssClass)),this.elementTabIndex=this.opts.element.attr("tabindex"),this.opts.element.data("select2",this).attr("tabindex","-1").before(this.container).on("click.select2",A),this.container.data("select2",this),this.dropdown=this.container.find(".select2-drop"),D(this.dropdown,this.opts.element,this.opts.adaptDropdownCssClass),this.dropdown.addClass(K(c.dropdownCssClass)),this.dropdown.data("select2",this),this.dropdown.on("click",A),this.results=d=this.container.find(f),this.search=e=this.container.find("input.select2-input"),this.queryCount=0,this.resultsPage=0,this.context=null,this.initContainer(),this.container.on("click",A),v(this.results),this.dropdown.on("mousemove-filtered",f,this.bind(this.highlightUnderEvent)),this.dropdown.on("touchstart touchmove touchend",f,this.bind(function(a){this._touchEvent=!0,this.highlightUnderEvent(a)})),this.dropdown.on("touchmove",f,this.bind(this.touchMoved)),this.dropdown.on("touchstart touchend",f,this.bind(this.clearTouchMoved)),this.dropdown.on("click",this.bind(function(){this._touchEvent&&(this._touchEvent=!1,this.selectHighlighted())})),x(80,this.results),this.dropdown.on("scroll-debounced",f,this.bind(this.loadMoreIfNeeded)),a(this.container).on("change",".select2-input",function(a){a.stopPropagation()}),a(this.dropdown).on("change",".select2-input",function(a){a.stopPropagation()}),a.fn.mousewheel&&d.mousewheel(function(a,b,c,e){var f=d.scrollTop();e>0&&0>=f-e?(d.scrollTop(0),A(a)):0>e&&d.get(0).scrollHeight-d.scrollTop()+e<=d.height()&&(d.scrollTop(d.get(0).scrollHeight-d.height()),A(a))}),u(e),e.on("keyup-change input paste",this.bind(this.updateResults)),e.on("focus",function(){e.addClass("select2-focused")}),e.on("blur",function(){e.removeClass("select2-focused")}),this.dropdown.on("mouseup",f,this.bind(function(b){a(b.target).closest(".select2-result-selectable").length>0&&(this.highlightUnderEvent(b),this.selectHighlighted(b))})),this.dropdown.on("click mouseup mousedown touchstart touchend focusin",function(a){a.stopPropagation()}),this.nextSearchTerm=b,a.isFunction(this.opts.initSelection)&&(this.initSelection(),this.monitorSource()),null!==c.maximumInputLength&&this.search.attr("maxlength",c.maximumInputLength);var h=c.element.prop("disabled");h===b&&(h=!1),this.enable(!h);var i=c.element.prop("readonly");i===b&&(i=!1),this.readonly(i),k=k||q(),this.autofocus=c.element.prop("autofocus"),c.element.prop("autofocus",!1),this.autofocus&&this.focus(),this.search.attr("placeholder",c.searchInputPlaceholder)},destroy:function(){var a=this.opts.element,c=a.data("select2");this.close(),this.propertyObserver&&(this.propertyObserver.disconnect(),this.propertyObserver=null),c!==b&&(c.container.remove(),c.liveRegion.remove(),c.dropdown.remove(),a.removeClass("select2-offscreen").removeData("select2").off(".select2").prop("autofocus",this.autofocus||!1),this.elementTabIndex?a.attr({tabindex:this.elementTabIndex}):a.removeAttr("tabindex"),a.show()),N.call(this,"container","liveRegion","dropdown","results","search")},optionToData:function(a){return a.is("option")?{id:a.prop("value"),text:a.text(),element:a.get(),css:a.attr("class"),disabled:a.prop("disabled"),locked:r(a.attr("locked"),"locked")||r(a.data("locked"),!0)}:a.is("optgroup")?{text:a.attr("label"),children:[],element:a.get(),css:a.attr("class")}:void 0},prepareOpts:function(c){var d,e,f,h,i=this;if(d=c.element,"select"===d.get(0).tagName.toLowerCase()&&(this.select=e=c.element),e&&a.each(["id","multiple","ajax","query","createSearchChoice","initSelection","data","tags"],function(){if(this in c)throw new Error("Option '"+this+"' is not allowed for Select2 when attached to a ","
    "," ","
      ","
    ","
    "].join(""));return b},enableInterface:function(){this.parent.enableInterface.apply(this,arguments)&&this.focusser.prop("disabled",!this.isInterfaceEnabled())},opening:function(){var c,d,e;this.opts.minimumResultsForSearch>=0&&this.showSearch(!0),this.parent.opening.apply(this,arguments),this.showSearchInput!==!1&&this.search.val(this.focusser.val()),this.opts.shouldFocusInput(this)&&(this.search.focus(),c=this.search.get(0),c.createTextRange?(d=c.createTextRange(),d.collapse(!1),d.select()):c.setSelectionRange&&(e=this.search.val().length,c.setSelectionRange(e,e))),""===this.search.val()&&this.nextSearchTerm!=b&&(this.search.val(this.nextSearchTerm),this.search.select()),this.focusser.prop("disabled",!0).val(""),this.updateResults(!0),this.opts.element.trigger(a.Event("select2-open"))},close:function(){this.opened()&&(this.parent.close.apply(this,arguments),this.focusser.prop("disabled",!1),this.opts.shouldFocusInput(this)&&this.focusser.focus())},focus:function(){this.opened()?this.close():(this.focusser.prop("disabled",!1),this.opts.shouldFocusInput(this)&&this.focusser.focus())},isFocused:function(){return this.container.hasClass("select2-container-active")},cancel:function(){this.parent.cancel.apply(this,arguments),this.focusser.prop("disabled",!1),this.opts.shouldFocusInput(this)&&this.focusser.focus()},destroy:function(){a("label[for='"+this.focusser.attr("id")+"']").attr("for",this.opts.element.attr("id")),this.parent.destroy.apply(this,arguments),N.call(this,"selection","focusser")},initContainer:function(){var b,h,d=this.container,e=this.dropdown,f=g();this.opts.minimumResultsForSearch<0?this.showSearch(!1):this.showSearch(!0),this.selection=b=d.find(".select2-choice"),this.focusser=d.find(".select2-focusser"),b.find(".select2-chosen").attr("id","select2-chosen-"+f),this.focusser.attr("aria-labelledby","select2-chosen-"+f),this.results.attr("id","select2-results-"+f),this.search.attr("aria-owns","select2-results-"+f),this.focusser.attr("id","s2id_autogen"+f),h=a("label[for='"+this.opts.element.attr("id")+"']"),this.focusser.prev().text(h.text()).attr("for",this.focusser.attr("id"));var i=this.opts.element.attr("title");this.opts.element.attr("title",i||h.text()),this.focusser.attr("tabindex",this.elementTabIndex),this.search.attr("id",this.focusser.attr("id")+"_search"),this.search.prev().text(a("label[for='"+this.focusser.attr("id")+"']").text()).attr("for",this.search.attr("id")),this.search.on("keydown",this.bind(function(a){if(this.isInterfaceEnabled()){if(a.which===c.PAGE_UP||a.which===c.PAGE_DOWN)return A(a),void 0;switch(a.which){case c.UP:case c.DOWN:return this.moveHighlight(a.which===c.UP?-1:1),A(a),void 0;case c.ENTER:return this.selectHighlighted(),A(a),void 0;case c.TAB:return this.selectHighlighted({noFocus:!0}),void 0;case c.ESC:return this.cancel(a),A(a),void 0}}})),this.search.on("blur",this.bind(function(){document.activeElement===this.body.get(0)&&window.setTimeout(this.bind(function(){this.opened()&&this.search.focus()}),0)})),this.focusser.on("keydown",this.bind(function(a){if(this.isInterfaceEnabled()&&a.which!==c.TAB&&!c.isControl(a)&&!c.isFunctionKey(a)&&a.which!==c.ESC){if(this.opts.openOnEnter===!1&&a.which===c.ENTER)return A(a),void 0;if(a.which==c.DOWN||a.which==c.UP||a.which==c.ENTER&&this.opts.openOnEnter){if(a.altKey||a.ctrlKey||a.shiftKey||a.metaKey)return;return this.open(),A(a),void 0}return a.which==c.DELETE||a.which==c.BACKSPACE?(this.opts.allowClear&&this.clear(),A(a),void 0):void 0}})),u(this.focusser),this.focusser.on("keyup-change input",this.bind(function(a){if(this.opts.minimumResultsForSearch>=0){if(a.stopPropagation(),this.opened())return;this.open()}})),b.on("mousedown touchstart","abbr",this.bind(function(a){this.isInterfaceEnabled()&&(this.clear(),B(a),this.close(),this.selection.focus())})),b.on("mousedown touchstart",this.bind(function(c){n(b),this.container.hasClass("select2-container-active")||this.opts.element.trigger(a.Event("select2-focus")),this.opened()?this.close():this.isInterfaceEnabled()&&this.open(),A(c)})),e.on("mousedown touchstart",this.bind(function(){this.opts.shouldFocusInput(this)&&this.search.focus()})),b.on("focus",this.bind(function(a){A(a)})),this.focusser.on("focus",this.bind(function(){this.container.hasClass("select2-container-active")||this.opts.element.trigger(a.Event("select2-focus")),this.container.addClass("select2-container-active")})).on("blur",this.bind(function(){this.opened()||(this.container.removeClass("select2-container-active"),this.opts.element.trigger(a.Event("select2-blur")))})),this.search.on("focus",this.bind(function(){this.container.hasClass("select2-container-active")||this.opts.element.trigger(a.Event("select2-focus")),this.container.addClass("select2-container-active")})),this.initContainerWidth(),this.opts.element.addClass("select2-offscreen"),this.setPlaceholder()},clear:function(b){var c=this.selection.data("select2-data");if(c){var d=a.Event("select2-clearing");if(this.opts.element.trigger(d),d.isDefaultPrevented())return;var e=this.getPlaceholderOption();this.opts.element.val(e?e.val():""),this.selection.find(".select2-chosen").empty(),this.selection.removeData("select2-data"),this.setPlaceholder(),b!==!1&&(this.opts.element.trigger({type:"select2-removed",val:this.id(c),choice:c}),this.triggerChange({removed:c}))}},initSelection:function(){if(this.isPlaceholderOptionSelected())this.updateSelection(null),this.close(),this.setPlaceholder();else{var c=this;this.opts.initSelection.call(null,this.opts.element,function(a){a!==b&&null!==a&&(c.updateSelection(a),c.close(),c.setPlaceholder(),c.nextSearchTerm=c.opts.nextSearchTerm(a,c.search.val()))})}},isPlaceholderOptionSelected:function(){var a;return this.getPlaceholder()===b?!1:(a=this.getPlaceholderOption())!==b&&a.prop("selected")||""===this.opts.element.val()||this.opts.element.val()===b||null===this.opts.element.val()},prepareOpts:function(){var b=this.parent.prepareOpts.apply(this,arguments),c=this;return"select"===b.element.get(0).tagName.toLowerCase()?b.initSelection=function(a,b){var d=a.find("option").filter(function(){return this.selected&&!this.disabled});b(c.optionToData(d))}:"data"in b&&(b.initSelection=b.initSelection||function(c,d){var e=c.val(),f=null;b.query({matcher:function(a,c,d){var g=r(e,b.id(d));return g&&(f=d),g},callback:a.isFunction(d)?function(){d(f)}:a.noop})}),b},getPlaceholder:function(){return this.select&&this.getPlaceholderOption()===b?b:this.parent.getPlaceholder.apply(this,arguments)},setPlaceholder:function(){var a=this.getPlaceholder();if(this.isPlaceholderOptionSelected()&&a!==b){if(this.select&&this.getPlaceholderOption()===b)return;this.selection.find(".select2-chosen").html(this.opts.escapeMarkup(a)),this.selection.addClass("select2-default"),this.container.removeClass("select2-allowclear")}},postprocessResults:function(a,b,c){var d=0,e=this;if(this.findHighlightableChoices().each2(function(a,b){return r(e.id(b.data("select2-data")),e.opts.element.val())?(d=a,!1):void 0}),c!==!1&&(b===!0&&d>=0?this.highlight(d):this.highlight(0)),b===!0){var g=this.opts.minimumResultsForSearch;g>=0&&this.showSearch(L(a.results)>=g)}},showSearch:function(b){this.showSearchInput!==b&&(this.showSearchInput=b,this.dropdown.find(".select2-search").toggleClass("select2-search-hidden",!b),this.dropdown.find(".select2-search").toggleClass("select2-offscreen",!b),a(this.dropdown,this.container).toggleClass("select2-with-searchbox",b))},onSelect:function(a,b){if(this.triggerSelect(a)){var c=this.opts.element.val(),d=this.data();this.opts.element.val(this.id(a)),this.updateSelection(a),this.opts.element.trigger({type:"select2-selected",val:this.id(a),choice:a}),this.nextSearchTerm=this.opts.nextSearchTerm(a,this.search.val()),this.close(),b&&b.noFocus||!this.opts.shouldFocusInput(this)||this.focusser.focus(),r(c,this.id(a))||this.triggerChange({added:a,removed:d})}},updateSelection:function(a){var d,e,c=this.selection.find(".select2-chosen");this.selection.data("select2-data",a),c.empty(),null!==a&&(d=this.opts.formatSelection(a,c,this.opts.escapeMarkup)),d!==b&&c.append(d),e=this.opts.formatSelectionCssClass(a,c),e!==b&&c.addClass(e),this.selection.removeClass("select2-default"),this.opts.allowClear&&this.getPlaceholder()!==b&&this.container.addClass("select2-allowclear")},val:function(){var a,c=!1,d=null,e=this,f=this.data();if(0===arguments.length)return this.opts.element.val();if(a=arguments[0],arguments.length>1&&(c=arguments[1]),this.select)this.select.val(a).find("option").filter(function(){return this.selected}).each2(function(a,b){return d=e.optionToData(b),!1}),this.updateSelection(d),this.setPlaceholder(),c&&this.triggerChange({added:d,removed:f});else{if(!a&&0!==a)return this.clear(c),void 0;if(this.opts.initSelection===b)throw new Error("cannot call val() if initSelection() is not defined");this.opts.element.val(a),this.opts.initSelection(this.opts.element,function(a){e.opts.element.val(a?e.id(a):""),e.updateSelection(a),e.setPlaceholder(),c&&e.triggerChange({added:a,removed:f})})}},clearSearch:function(){this.search.val(""),this.focusser.val("")},data:function(a){var c,d=!1;return 0===arguments.length?(c=this.selection.data("select2-data"),c==b&&(c=null),c):(arguments.length>1&&(d=arguments[1]),a?(c=this.data(),this.opts.element.val(a?this.id(a):""),this.updateSelection(a),d&&this.triggerChange({added:a,removed:c})):this.clear(d),void 0)}}),f=O(d,{createContainer:function(){var b=a(document.createElement("div")).attr({"class":"select2-container select2-container-multi"}).html(["
      ","
    • "," "," ","
    • ","
    ","
    ","
      ","
    ","
    "].join(""));return b},prepareOpts:function(){var b=this.parent.prepareOpts.apply(this,arguments),c=this;return"select"===b.element.get(0).tagName.toLowerCase()?b.initSelection=function(a,b){var d=[];a.find("option").filter(function(){return this.selected&&!this.disabled}).each2(function(a,b){d.push(c.optionToData(b))}),b(d)}:"data"in b&&(b.initSelection=b.initSelection||function(c,d){var e=s(c.val(),b.separator),f=[];b.query({matcher:function(c,d,g){var h=a.grep(e,function(a){return r(a,b.id(g))}).length;return h&&f.push(g),h},callback:a.isFunction(d)?function(){for(var a=[],c=0;c0||(this.selectChoice(null),this.clearPlaceholder(),this.container.hasClass("select2-container-active")||this.opts.element.trigger(a.Event("select2-focus")),this.open(),this.focusSearch(),b.preventDefault()))})),this.container.on("focus",b,this.bind(function(){this.isInterfaceEnabled()&&(this.container.hasClass("select2-container-active")||this.opts.element.trigger(a.Event("select2-focus")),this.container.addClass("select2-container-active"),this.dropdown.addClass("select2-drop-active"),this.clearPlaceholder())})),this.initContainerWidth(),this.opts.element.addClass("select2-offscreen"),this.clearSearch()},enableInterface:function(){this.parent.enableInterface.apply(this,arguments)&&this.search.prop("disabled",!this.isInterfaceEnabled())},initSelection:function(){if(""===this.opts.element.val()&&""===this.opts.element.text()&&(this.updateSelection([]),this.close(),this.clearSearch()),this.select||""!==this.opts.element.val()){var c=this;this.opts.initSelection.call(null,this.opts.element,function(a){a!==b&&null!==a&&(c.updateSelection(a),c.close(),c.clearSearch())})}},clearSearch:function(){var a=this.getPlaceholder(),c=this.getMaxSearchWidth();a!==b&&0===this.getVal().length&&this.search.hasClass("select2-focused")===!1?(this.search.val(a).addClass("select2-default"),this.search.width(c>0?c:this.container.css("width"))):this.search.val("").width(10)},clearPlaceholder:function(){this.search.hasClass("select2-default")&&this.search.val("").removeClass("select2-default")},opening:function(){this.clearPlaceholder(),this.resizeSearch(),this.parent.opening.apply(this,arguments),this.focusSearch(),""===this.search.val()&&this.nextSearchTerm!=b&&(this.search.val(this.nextSearchTerm),this.search.select()),this.updateResults(!0),this.opts.shouldFocusInput(this)&&this.search.focus(),this.opts.element.trigger(a.Event("select2-open"))},close:function(){this.opened()&&this.parent.close.apply(this,arguments)},focus:function(){this.close(),this.search.focus()},isFocused:function(){return this.search.hasClass("select2-focused")},updateSelection:function(b){var c=[],d=[],e=this;a(b).each(function(){p(e.id(this),c)<0&&(c.push(e.id(this)),d.push(this))}),b=d,this.selection.find(".select2-search-choice").remove(),a(b).each(function(){e.addSelectedChoice(this)}),e.postprocessResults()},tokenize:function(){var a=this.search.val();a=this.opts.tokenizer.call(this,a,this.data(),this.bind(this.onSelect),this.opts),null!=a&&a!=b&&(this.search.val(a),a.length>0&&this.open())},onSelect:function(a,c){this.triggerSelect(a)&&(this.addSelectedChoice(a),this.opts.element.trigger({type:"selected",val:this.id(a),choice:a}),this.nextSearchTerm=this.opts.nextSearchTerm(a,this.search.val()),this.clearSearch(),this.updateResults(),(this.select||!this.opts.closeOnSelect)&&this.postprocessResults(a,!1,this.opts.closeOnSelect===!0),this.opts.closeOnSelect?(this.close(),this.search.width(10)):this.countSelectableResults()>0?(this.search.width(10),this.resizeSearch(),this.getMaximumSelectionSize()>0&&this.val().length>=this.getMaximumSelectionSize()?this.updateResults(!0):this.nextSearchTerm!=b&&(this.search.val(this.nextSearchTerm),this.updateResults(),this.search.select()),this.positionDropdown()):(this.close(),this.search.width(10)),this.triggerChange({added:a}),c&&c.noFocus||this.focusSearch())},cancel:function(){this.close(),this.focusSearch()},addSelectedChoice:function(c){var j,k,d=!c.locked,e=a("
  • "),f=a("
  • "),g=d?e:f,h=this.id(c),i=this.getVal();j=this.opts.formatSelection(c,g.find("div"),this.opts.escapeMarkup),j!=b&&g.find("div").replaceWith("
    "+j+"
    "),k=this.opts.formatSelectionCssClass(c,g.find("div")),k!=b&&g.addClass(k),d&&g.find(".select2-search-choice-close").on("mousedown",A).on("click dblclick",this.bind(function(b){this.isInterfaceEnabled()&&(this.unselect(a(b.target)),this.selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus"),A(b),this.close(),this.focusSearch())})).on("focus",this.bind(function(){this.isInterfaceEnabled()&&(this.container.addClass("select2-container-active"),this.dropdown.addClass("select2-drop-active"))})),g.data("select2-data",c),g.insertBefore(this.searchContainer),i.push(h),this.setVal(i)},unselect:function(b){var d,e,c=this.getVal();if(b=b.closest(".select2-search-choice"),0===b.length)throw"Invalid argument: "+b+". Must be .select2-search-choice";if(d=b.data("select2-data")){var f=a.Event("select2-removing");if(f.val=this.id(d),f.choice=d,this.opts.element.trigger(f),f.isDefaultPrevented())return!1;for(;(e=p(this.id(d),c))>=0;)c.splice(e,1),this.setVal(c),this.select&&this.postprocessResults();return b.remove(),this.opts.element.trigger({type:"select2-removed",val:this.id(d),choice:d}),this.triggerChange({removed:d}),!0}},postprocessResults:function(a,b,c){var d=this.getVal(),e=this.results.find(".select2-result"),f=this.results.find(".select2-result-with-children"),g=this;e.each2(function(a,b){var c=g.id(b.data("select2-data"));p(c,d)>=0&&(b.addClass("select2-selected"),b.find(".select2-result-selectable").addClass("select2-selected"))}),f.each2(function(a,b){b.is(".select2-result-selectable")||0!==b.find(".select2-result-selectable:not(.select2-selected)").length||b.addClass("select2-selected")}),-1==this.highlight()&&c!==!1&&g.highlight(0),!this.opts.createSearchChoice&&!e.filter(".select2-result:not(.select2-selected)").length>0&&(!a||a&&!a.more&&0===this.results.find(".select2-no-results").length)&&J(g.opts.formatNoMatches,"formatNoMatches")&&this.results.append("
  • "+K(g.opts.formatNoMatches,g.search.val())+"
  • ")},getMaxSearchWidth:function(){return this.selection.width()-t(this.search)},resizeSearch:function(){var a,b,c,d,e,f=t(this.search);a=C(this.search)+10,b=this.search.offset().left,c=this.selection.width(),d=this.selection.offset().left,e=c-(b-d)-f,a>e&&(e=c-f),40>e&&(e=c-f),0>=e&&(e=a),this.search.width(Math.floor(e))},getVal:function(){var a;return this.select?(a=this.select.val(),null===a?[]:a):(a=this.opts.element.val(),s(a,this.opts.separator))},setVal:function(b){var c;this.select?this.select.val(b):(c=[],a(b).each(function(){p(this,c)<0&&c.push(this)}),this.opts.element.val(0===c.length?"":c.join(this.opts.separator)))},buildChangeDetails:function(a,b){for(var b=b.slice(0),a=a.slice(0),c=0;c0&&c--,a.splice(d,1),d--);return{added:b,removed:a}},val:function(c,d){var e,f=this;if(0===arguments.length)return this.getVal();if(e=this.data(),e.length||(e=[]),!c&&0!==c)return this.opts.element.val(""),this.updateSelection([]),this.clearSearch(),d&&this.triggerChange({added:this.data(),removed:e}),void 0;if(this.setVal(c),this.select)this.opts.initSelection(this.select,this.bind(this.updateSelection)),d&&this.triggerChange(this.buildChangeDetails(e,this.data()));else{if(this.opts.initSelection===b)throw new Error("val() cannot be called if initSelection() is not defined");this.opts.initSelection(this.opts.element,function(b){var c=a.map(b,f.id);f.setVal(c),f.updateSelection(b),f.clearSearch(),d&&f.triggerChange(f.buildChangeDetails(e,f.data()))})}this.clearSearch()},onSortStart:function(){if(this.select)throw new Error("Sorting of elements is not supported when attached to instead.");this.search.width(0),this.searchContainer.hide()},onSortEnd:function(){var b=[],c=this;this.searchContainer.show(),this.searchContainer.appendTo(this.searchContainer.parent()),this.resizeSearch(),this.selection.find(".select2-search-choice").each(function(){b.push(c.opts.id(a(this).data("select2-data")))}),this.setVal(b),this.triggerChange()},data:function(b,c){var e,f,d=this;return 0===arguments.length?this.selection.children(".select2-search-choice").map(function(){return a(this).data("select2-data")}).get():(f=this.data(),b||(b=[]),e=a.map(b,function(a){return d.opts.id(a)}),this.setVal(e),this.updateSelection(b),this.clearSearch(),c&&this.triggerChange(this.buildChangeDetails(f,this.data())),void 0)}}),a.fn.select2=function(){var d,e,f,g,h,c=Array.prototype.slice.call(arguments,0),i=["val","destroy","opened","open","close","focus","isFocused","container","dropdown","onSortStart","onSortEnd","enable","disable","readonly","positionDropdown","data","search"],j=["opened","isFocused","container","dropdown"],k=["val","data"],l={search:"externalSearch"};return this.each(function(){if(0===c.length||"object"==typeof c[0])d=0===c.length?{}:a.extend({},c[0]),d.element=a(this),"select"===d.element.get(0).tagName.toLowerCase()?h=d.element.prop("multiple"):(h=d.multiple||!1,"tags"in d&&(d.multiple=h=!0)),e=h?new window.Select2["class"].multi:new window.Select2["class"].single,e.init(d);else{if("string"!=typeof c[0])throw"Invalid arguments to select2 plugin: "+c;if(p(c[0],i)<0)throw"Unknown method: "+c[0];if(g=b,e=a(this).data("select2"),e===b)return;if(f=c[0],"container"===f?g=e.container:"dropdown"===f?g=e.dropdown:(l[f]&&(f=l[f]),g=e[f].apply(e,c.slice(1))),p(c[0],j)>=0||p(c[0],k)>=0&&1==c.length)return!1}}),g===b?this:g},a.fn.select2.defaults={width:"copy",loadMorePadding:0,closeOnSelect:!0,openOnEnter:!0,containerCss:{},dropdownCss:{},containerCssClass:"",dropdownCssClass:"",formatResult:function(a,b,c,d){var e=[];return E(a.text,c.term,e,d),e.join("")},formatSelection:function(a,c,d){return a?d(a.text):b},sortResults:function(a){return a},formatResultCssClass:function(a){return a.css},formatSelectionCssClass:function(){return b},formatMatches:function(a){return a+" results are available, use up and down arrow keys to navigate."},formatNoMatches:function(){return"No matches found"},formatInputTooShort:function(a,b){var c=b-a.length;return"Please enter "+c+" or more character"+(1==c?"":"s")},formatInputTooLong:function(a,b){var c=a.length-b;return"Please delete "+c+" character"+(1==c?"":"s")},formatSelectionTooBig:function(a){return"You can only select "+a+" item"+(1==a?"":"s")},formatLoadMore:function(){return"Loading more results\u2026"},formatSearching:function(){return"Searching\u2026"},minimumResultsForSearch:0,minimumInputLength:0,maximumInputLength:null,maximumSelectionSize:0,id:function(a){return a==b?null:a.id},matcher:function(a,b){return o(""+b).toUpperCase().indexOf(o(""+a).toUpperCase())>=0},separator:",",tokenSeparators:[],tokenizer:M,escapeMarkup:F,blurOnChange:!1,selectOnBlur:!1,adaptContainerCssClass:function(a){return a},adaptDropdownCssClass:function(){return null},nextSearchTerm:function(){return b},searchInputPlaceholder:"",createSearchChoicePosition:"top",shouldFocusInput:function(a){var b="ontouchstart"in window||navigator.msMaxTouchPoints>0;return b?a.opts.minimumResultsForSearch<0?!1:!0:!0}},a.fn.select2.ajaxDefaults={transport:a.ajax,params:{type:"GET",cache:!1,dataType:"json"}},window.Select2={query:{ajax:G,local:H,tags:I},util:{debounce:w,markMatch:E,escapeMarkup:F,stripDiacritics:o},"class":{"abstract":d,single:e,multi:f}}}}(jQuery); \ No newline at end of file diff --git a/apps/files_external/3rdparty/select2/select2.png b/apps/files_external/3rdparty/select2/select2.png new file mode 100644 index 0000000000000000000000000000000000000000..1d804ffb99699b9e030f1010314de0970b5a000d GIT binary patch literal 613 zcmV-r0-F7aP)#WY!I$JQV$)A5aAS1BM||2XVJl=+L1^1S1H% zM-&lx?NZpUrHhn>fk<>POqf2sh40}xxGZfc+t+#Eb(qHy9_3*1(U%t9t)QDnI#YAL(|ACV(>)>6WD-t!8tutHkdb^#3`HzoJG3A2@T`% zA|K@o*b!`R#(7)PWrMFn2))Ca3MR4(zaT`Zr61*kZK5NPnZwQszxh$fyv3?&4c>$q z2m=+yc0dRXRAsPDxF6sD;@rK4JGdR_``1S~o6Xi@2&aR6hcSrEp9HVRzEqVDqBn<1%hR=D4e1f^ra^A|34Cjc=Gny{F(o#MrvPYgZuTJOz(n)-F<| zj()qR;C={)N<0RRvDZ^@6ND+W*}gh-Lip(MDt!(zMSO)!j2j+*hxgzC-e3$@(O2p* zu;+gddm(cZwXTCLx*Ky4THOa*^b^F`woveIeCK^0aR|TJ00000NkvXXu0mjfA#WC6 literal 0 HcmV?d00001 diff --git a/apps/files_external/3rdparty/select2/select2_locale_ar.js b/apps/files_external/3rdparty/select2/select2_locale_ar.js new file mode 100644 index 00000000000..acb33a2f6ad --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_ar.js @@ -0,0 +1,17 @@ +/** + * Select2 Arabic translation. + * + * Author: Adel KEDJOUR + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "لم يتم العثور على مطابقات"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; if (n == 1){ return "الرجاء إدخال حرف واحد على الأكثر"; } return n == 2 ? "الرجاء إدخال حرفين على الأكثر" : "الرجاء إدخال " + n + " على الأكثر"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; if (n == 1){ return "الرجاء إدخال حرف واحد على الأقل"; } return n == 2 ? "الرجاء إدخال حرفين على الأقل" : "الرجاء إدخال " + n + " على الأقل "; }, + formatSelectionTooBig: function (limit) { if (n == 1){ return "يمكنك أن تختار إختيار واحد فقط"; } return n == 2 ? "يمكنك أن تختار إختيارين فقط" : "يمكنك أن تختار " + n + " إختيارات فقط"; }, + formatLoadMore: function (pageNumber) { return "تحميل المزيد من النتائج…"; }, + formatSearching: function () { return "البحث…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_bg.js b/apps/files_external/3rdparty/select2/select2_locale_bg.js new file mode 100644 index 00000000000..585d28a2b0b --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_bg.js @@ -0,0 +1,18 @@ +/** + * Select2 Bulgarian translation. + * + * @author Lubomir Vikev + * @author Uriy Efremochkin + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Няма намерени съвпадения"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Моля въведете още " + n + " символ" + (n > 1 ? "а" : ""); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Моля въведете с " + n + " по-малко символ" + (n > 1 ? "а" : ""); }, + formatSelectionTooBig: function (limit) { return "Можете да направите до " + limit + (limit > 1 ? " избора" : " избор"); }, + formatLoadMore: function (pageNumber) { return "Зареждат се още…"; }, + formatSearching: function () { return "Търсене…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_ca.js b/apps/files_external/3rdparty/select2/select2_locale_ca.js new file mode 100644 index 00000000000..7e19d3ce966 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_ca.js @@ -0,0 +1,17 @@ +/** + * Select2 Catalan translation. + * + * Author: David Planella + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "No s'ha trobat cap coincidència"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Introduïu " + n + " caràcter" + (n == 1 ? "" : "s") + " més"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Introduïu " + n + " caràcter" + (n == 1? "" : "s") + "menys"; }, + formatSelectionTooBig: function (limit) { return "Només podeu seleccionar " + limit + " element" + (limit == 1 ? "" : "s"); }, + formatLoadMore: function (pageNumber) { return "S'estan carregant més resultats…"; }, + formatSearching: function () { return "S'està cercant…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_cs.js b/apps/files_external/3rdparty/select2/select2_locale_cs.js new file mode 100644 index 00000000000..376b54a1352 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_cs.js @@ -0,0 +1,49 @@ +/** + * Select2 Czech translation. + * + * Author: Michal Marek + * Author - sklonovani: David Vallner + */ +(function ($) { + "use strict"; + // use text for the numbers 2 through 4 + var smallNumbers = { + 2: function(masc) { return (masc ? "dva" : "dvě"); }, + 3: function() { return "tři"; }, + 4: function() { return "čtyři"; } + } + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Nenalezeny žádné položky"; }, + formatInputTooShort: function (input, min) { + var n = min - input.length; + if (n == 1) { + return "Prosím zadejte ještě jeden znak"; + } else if (n <= 4) { + return "Prosím zadejte ještě další "+smallNumbers[n](true)+" znaky"; + } else { + return "Prosím zadejte ještě dalších "+n+" znaků"; + } + }, + formatInputTooLong: function (input, max) { + var n = input.length - max; + if (n == 1) { + return "Prosím zadejte o jeden znak méně"; + } else if (n <= 4) { + return "Prosím zadejte o "+smallNumbers[n](true)+" znaky méně"; + } else { + return "Prosím zadejte o "+n+" znaků méně"; + } + }, + formatSelectionTooBig: function (limit) { + if (limit == 1) { + return "Můžete zvolit jen jednu položku"; + } else if (limit <= 4) { + return "Můžete zvolit maximálně "+smallNumbers[limit](false)+" položky"; + } else { + return "Můžete zvolit maximálně "+limit+" položek"; + } + }, + formatLoadMore: function (pageNumber) { return "Načítají se další výsledky…"; }, + formatSearching: function () { return "Vyhledávání…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_da.js b/apps/files_external/3rdparty/select2/select2_locale_da.js new file mode 100644 index 00000000000..dbce3e1748d --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_da.js @@ -0,0 +1,17 @@ +/** + * Select2 Danish translation. + * + * Author: Anders Jenbo + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Ingen resultater fundet"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Angiv venligst " + n + " tegn mere"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Angiv venligst " + n + " tegn mindre"; }, + formatSelectionTooBig: function (limit) { return "Du kan kun vælge " + limit + " emne" + (limit === 1 ? "" : "r"); }, + formatLoadMore: function (pageNumber) { return "Indlæser flere resultater…"; }, + formatSearching: function () { return "Søger…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_de.js b/apps/files_external/3rdparty/select2/select2_locale_de.js new file mode 100644 index 00000000000..93b18e81f85 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_de.js @@ -0,0 +1,15 @@ +/** + * Select2 German translation + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Keine Übereinstimmungen gefunden"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Bitte " + n + " Zeichen mehr eingeben"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Bitte " + n + " Zeichen weniger eingeben"; }, + formatSelectionTooBig: function (limit) { return "Sie können nur " + limit + " Eintr" + (limit === 1 ? "ag" : "äge") + " auswählen"; }, + formatLoadMore: function (pageNumber) { return "Lade mehr Ergebnisse…"; }, + formatSearching: function () { return "Suche…"; } + }); +})(jQuery); \ No newline at end of file diff --git a/apps/files_external/3rdparty/select2/select2_locale_el.js b/apps/files_external/3rdparty/select2/select2_locale_el.js new file mode 100644 index 00000000000..e94b02cbc5f --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_el.js @@ -0,0 +1,17 @@ +/** + * Select2 Greek translation. + * + * @author Uriy Efremochkin + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Δεν βρέθηκαν αποτελέσματα"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Παρακαλούμε εισάγετε " + n + " περισσότερο" + (n > 1 ? "υς" : "") + " χαρακτήρ" + (n > 1 ? "ες" : "α"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Παρακαλούμε διαγράψτε " + n + " χαρακτήρ" + (n > 1 ? "ες" : "α"); }, + formatSelectionTooBig: function (limit) { return "Μπορείτε να επιλέξετε μόνο " + limit + " αντικείμεν" + (limit > 1 ? "α" : "ο"); }, + formatLoadMore: function (pageNumber) { return "Φόρτωση περισσότερων…"; }, + formatSearching: function () { return "Αναζήτηση…"; } + }); +})(jQuery); \ No newline at end of file diff --git a/apps/files_external/3rdparty/select2/select2_locale_en.js.template b/apps/files_external/3rdparty/select2/select2_locale_en.js.template new file mode 100644 index 00000000000..f66bcc844db --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_en.js.template @@ -0,0 +1,18 @@ +/** + * Select2 translation. + * + * Author: Your Name + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatMatches: function (matches) { return matches + " results are available, use up and down arrow keys to navigate."; }, + formatNoMatches: function () { return "No matches found"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Please enter " + n + " more character" + (n == 1 ? "" : "s"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Please delete " + n + " character" + (n == 1 ? "" : "s"); }, + formatSelectionTooBig: function (limit) { return "You can only select " + limit + " item" + (limit == 1 ? "" : "s"); }, + formatLoadMore: function (pageNumber) { return "Loading more results…"; }, + formatSearching: function () { return "Searching…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_es.js b/apps/files_external/3rdparty/select2/select2_locale_es.js new file mode 100644 index 00000000000..f2b581791eb --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_es.js @@ -0,0 +1,15 @@ +/** + * Select2 Spanish translation + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "No se encontraron resultados"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Por favor, introduzca " + n + " car" + (n == 1? "ácter" : "acteres"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Por favor, elimine " + n + " car" + (n == 1? "ácter" : "acteres"); }, + formatSelectionTooBig: function (limit) { return "Sólo puede seleccionar " + limit + " elemento" + (limit == 1 ? "" : "s"); }, + formatLoadMore: function (pageNumber) { return "Cargando más resultados…"; }, + formatSearching: function () { return "Buscando…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_et.js b/apps/files_external/3rdparty/select2/select2_locale_et.js new file mode 100644 index 00000000000..a4045d22df7 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_et.js @@ -0,0 +1,17 @@ +/** + * Select2 Estonian translation. + * + * Author: Kuldar Kalvik + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Tulemused puuduvad"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Sisesta " + n + " täht" + (n == 1 ? "" : "e") + " rohkem"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Sisesta " + n + " täht" + (n == 1? "" : "e") + " vähem"; }, + formatSelectionTooBig: function (limit) { return "Saad vaid " + limit + " tulemus" + (limit == 1 ? "e" : "t") + " valida"; }, + formatLoadMore: function (pageNumber) { return "Laen tulemusi.."; }, + formatSearching: function () { return "Otsin.."; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_eu.js b/apps/files_external/3rdparty/select2/select2_locale_eu.js new file mode 100644 index 00000000000..1da1a709481 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_eu.js @@ -0,0 +1,43 @@ +/** + * Select2 Basque translation. + * + * Author: Julen Ruiz Aizpuru + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { + return "Ez da bat datorrenik aurkitu"; + }, + formatInputTooShort: function (input, min) { + var n = min - input.length; + if (n === 1) { + return "Idatzi karaktere bat gehiago"; + } else { + return "Idatzi " + n + " karaktere gehiago"; + } + }, + formatInputTooLong: function (input, max) { + var n = input.length - max; + if (n === 1) { + return "Idatzi karaktere bat gutxiago"; + } else { + return "Idatzi " + n + " karaktere gutxiago"; + } + }, + formatSelectionTooBig: function (limit) { + if (limit === 1 ) { + return "Elementu bakarra hauta dezakezu"; + } else { + return limit + " elementu hauta ditzakezu soilik"; + } + }, + formatLoadMore: function (pageNumber) { + return "Emaitza gehiago kargatzen…"; + }, + formatSearching: function () { + return "Bilatzen…"; + } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_fa.js b/apps/files_external/3rdparty/select2/select2_locale_fa.js new file mode 100644 index 00000000000..a9e95af4dba --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_fa.js @@ -0,0 +1,19 @@ +/** + * Select2 Persian translation. + * + * Author: Ali Choopan + * Author: Ebrahim Byagowi + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatMatches: function (matches) { return matches + " نتیجه موجود است، کلیدهای جهت بالا و پایین را برای گشتن استفاده کنید."; }, + formatNoMatches: function () { return "نتیجه‌ای یافت نشد."; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "لطفاً " + n + " نویسه بیشتر وارد نمایید"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "لطفاً " + n + " نویسه را حذف کنید."; }, + formatSelectionTooBig: function (limit) { return "شما فقط می‌توانید " + limit + " مورد را انتخاب کنید"; }, + formatLoadMore: function (pageNumber) { return "در حال بارگیری موارد بیشتر…"; }, + formatSearching: function () { return "در حال جستجو…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_fi.js b/apps/files_external/3rdparty/select2/select2_locale_fi.js new file mode 100644 index 00000000000..9bed310f717 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_fi.js @@ -0,0 +1,28 @@ +/** + * Select2 Finnish translation + */ +(function ($) { + "use strict"; + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { + return "Ei tuloksia"; + }, + formatInputTooShort: function (input, min) { + var n = min - input.length; + return "Ole hyvä ja anna " + n + " merkkiä lisää"; + }, + formatInputTooLong: function (input, max) { + var n = input.length - max; + return "Ole hyvä ja anna " + n + " merkkiä vähemmän"; + }, + formatSelectionTooBig: function (limit) { + return "Voit valita ainoastaan " + limit + " kpl"; + }, + formatLoadMore: function (pageNumber) { + return "Ladataan lisää tuloksia…"; + }, + formatSearching: function () { + return "Etsitään…"; + } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_fr.js b/apps/files_external/3rdparty/select2/select2_locale_fr.js new file mode 100644 index 00000000000..9afda2abdcd --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_fr.js @@ -0,0 +1,16 @@ +/** + * Select2 French translation + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatMatches: function (matches) { return matches + " résultats sont disponibles, utilisez les flèches haut et bas pour naviguer."; }, + formatNoMatches: function () { return "Aucun résultat trouvé"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Merci de saisir " + n + " caractère" + (n == 1 ? "" : "s") + " de plus"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Merci de supprimer " + n + " caractère" + (n == 1 ? "" : "s"); }, + formatSelectionTooBig: function (limit) { return "Vous pouvez seulement sélectionner " + limit + " élément" + (limit == 1 ? "" : "s"); }, + formatLoadMore: function (pageNumber) { return "Chargement de résultats supplémentaires…"; }, + formatSearching: function () { return "Recherche en cours…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_gl.js b/apps/files_external/3rdparty/select2/select2_locale_gl.js new file mode 100644 index 00000000000..80326320bf0 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_gl.js @@ -0,0 +1,43 @@ +/** + * Select2 Galician translation + * + * Author: Leandro Regueiro + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { + return "Non se atoparon resultados"; + }, + formatInputTooShort: function (input, min) { + var n = min - input.length; + if (n === 1) { + return "Engada un carácter"; + } else { + return "Engada " + n + " caracteres"; + } + }, + formatInputTooLong: function (input, max) { + var n = input.length - max; + if (n === 1) { + return "Elimine un carácter"; + } else { + return "Elimine " + n + " caracteres"; + } + }, + formatSelectionTooBig: function (limit) { + if (limit === 1 ) { + return "Só pode seleccionar un elemento"; + } else { + return "Só pode seleccionar " + limit + " elementos"; + } + }, + formatLoadMore: function (pageNumber) { + return "Cargando máis resultados…"; + }, + formatSearching: function () { + return "Buscando…"; + } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_he.js b/apps/files_external/3rdparty/select2/select2_locale_he.js new file mode 100644 index 00000000000..00385410804 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_he.js @@ -0,0 +1,17 @@ +/** +* Select2 Hebrew translation. +* +* Author: Yakir Sitbon +*/ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "לא נמצאו התאמות"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "נא להזין עוד " + n + " תווים נוספים"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "נא להזין פחות " + n + " תווים"; }, + formatSelectionTooBig: function (limit) { return "ניתן לבחור " + limit + " פריטים"; }, + formatLoadMore: function (pageNumber) { return "טוען תוצאות נוספות…"; }, + formatSearching: function () { return "מחפש…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_hr.js b/apps/files_external/3rdparty/select2/select2_locale_hr.js new file mode 100644 index 00000000000..c29372524b6 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_hr.js @@ -0,0 +1,22 @@ +/** + * Select2 Croatian translation. + * + * @author Edi Modrić + * @author Uriy Efremochkin + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Nema rezultata"; }, + formatInputTooShort: function (input, min) { return "Unesite još" + character(min - input.length); }, + formatInputTooLong: function (input, max) { return "Unesite" + character(input.length - max) + " manje"; }, + formatSelectionTooBig: function (limit) { return "Maksimalan broj odabranih stavki je " + limit; }, + formatLoadMore: function (pageNumber) { return "Učitavanje rezultata…"; }, + formatSearching: function () { return "Pretraga…"; } + }); + + function character (n) { + return " " + n + " znak" + (n%10 < 5 && n%10 > 0 && (n%100 < 5 || n%100 > 19) ? n%10 > 1 ? "a" : "" : "ova"); + } +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_hu.js b/apps/files_external/3rdparty/select2/select2_locale_hu.js new file mode 100644 index 00000000000..a8c30881928 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_hu.js @@ -0,0 +1,15 @@ +/** + * Select2 Hungarian translation + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Nincs találat."; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Túl rövid. Még " + n + " karakter hiányzik."; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Túl hosszú. " + n + " karakterrel több, mint kellene."; }, + formatSelectionTooBig: function (limit) { return "Csak " + limit + " elemet lehet kiválasztani."; }, + formatLoadMore: function (pageNumber) { return "Töltés…"; }, + formatSearching: function () { return "Keresés…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_id.js b/apps/files_external/3rdparty/select2/select2_locale_id.js new file mode 100644 index 00000000000..547454079ba --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_id.js @@ -0,0 +1,17 @@ +/** + * Select2 Indonesian translation. + * + * Author: Ibrahim Yusuf + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Tidak ada data yang sesuai"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Masukkan " + n + " huruf lagi" + (n == 1 ? "" : "s"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Hapus " + n + " huruf" + (n == 1 ? "" : "s"); }, + formatSelectionTooBig: function (limit) { return "Anda hanya dapat memilih " + limit + " pilihan" + (limit == 1 ? "" : "s"); }, + formatLoadMore: function (pageNumber) { return "Mengambil data…"; }, + formatSearching: function () { return "Mencari…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_is.js b/apps/files_external/3rdparty/select2/select2_locale_is.js new file mode 100644 index 00000000000..aecc6cd7194 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_is.js @@ -0,0 +1,15 @@ +/** + * Select2 Icelandic translation. + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Ekkert fannst"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Vinsamlegast skrifið " + n + " staf" + (n > 1 ? "i" : "") + " í viðbót"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Vinsamlegast styttið texta um " + n + " staf" + (n > 1 ? "i" : ""); }, + formatSelectionTooBig: function (limit) { return "Þú getur aðeins valið " + limit + " atriði"; }, + formatLoadMore: function (pageNumber) { return "Sæki fleiri niðurstöður…"; }, + formatSearching: function () { return "Leita…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_it.js b/apps/files_external/3rdparty/select2/select2_locale_it.js new file mode 100644 index 00000000000..d4e24de7000 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_it.js @@ -0,0 +1,15 @@ +/** + * Select2 Italian translation + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Nessuna corrispondenza trovata"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Inserisci ancora " + n + " caratter" + (n == 1? "e" : "i"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Inserisci " + n + " caratter" + (n == 1? "e" : "i") + " in meno"; }, + formatSelectionTooBig: function (limit) { return "Puoi selezionare solo " + limit + " element" + (limit == 1 ? "o" : "i"); }, + formatLoadMore: function (pageNumber) { return "Caricamento in corso…"; }, + formatSearching: function () { return "Ricerca…"; } + }); +})(jQuery); \ No newline at end of file diff --git a/apps/files_external/3rdparty/select2/select2_locale_ja.js b/apps/files_external/3rdparty/select2/select2_locale_ja.js new file mode 100644 index 00000000000..81106e78a80 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_ja.js @@ -0,0 +1,15 @@ +/** + * Select2 Japanese translation. + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "該当なし"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "後" + n + "文字入れてください"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "検索文字列が" + n + "文字長すぎます"; }, + formatSelectionTooBig: function (limit) { return "最多で" + limit + "項目までしか選択できません"; }, + formatLoadMore: function (pageNumber) { return "読込中・・・"; }, + formatSearching: function () { return "検索中・・・"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_ka.js b/apps/files_external/3rdparty/select2/select2_locale_ka.js new file mode 100644 index 00000000000..366cc2d9c4d --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_ka.js @@ -0,0 +1,17 @@ +/** + * Select2 Georgian (Kartuli) translation. + * + * Author: Dimitri Kurashvili dimakura@gmail.com + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "ვერ მოიძებნა"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "გთხოვთ შეიყვანოთ კიდევ " + n + " სიმბოლო"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "გთხოვთ წაშალოთ " + n + " სიმბოლო"; }, + formatSelectionTooBig: function (limit) { return "თქვენ შეგიძლიათ მხოლოდ " + limit + " ჩანაწერის მონიშვნა"; }, + formatLoadMore: function (pageNumber) { return "შედეგის ჩატვირთვა…"; }, + formatSearching: function () { return "ძებნა…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_ko.js b/apps/files_external/3rdparty/select2/select2_locale_ko.js new file mode 100644 index 00000000000..1a84d21eae6 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_ko.js @@ -0,0 +1,17 @@ +/** + * Select2 Korean translation. + * + * @author Swen Mun + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "결과 없음"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "너무 짧습니다. "+n+"글자 더 입력해주세요."; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "너무 깁니다. "+n+"글자 지워주세요."; }, + formatSelectionTooBig: function (limit) { return "최대 "+limit+"개까지만 선택하실 수 있습니다."; }, + formatLoadMore: function (pageNumber) { return "불러오는 중…"; }, + formatSearching: function () { return "검색 중…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_lt.js b/apps/files_external/3rdparty/select2/select2_locale_lt.js new file mode 100644 index 00000000000..2e2f950b00d --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_lt.js @@ -0,0 +1,24 @@ +/** + * Select2 Lithuanian translation. + * + * @author CRONUS Karmalakas + * @author Uriy Efremochkin + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Atitikmenų nerasta"; }, + formatInputTooShort: function (input, min) { return "Įrašykite dar" + character(min - input.length); }, + formatInputTooLong: function (input, max) { return "Pašalinkite" + character(input.length - max); }, + formatSelectionTooBig: function (limit) { + return "Jūs galite pasirinkti tik " + limit + " element" + ((limit%100 > 9 && limit%100 < 21) || limit%10 == 0 ? "ų" : limit%10 > 1 ? "us" : "ą"); + }, + formatLoadMore: function (pageNumber) { return "Kraunama daugiau rezultatų…"; }, + formatSearching: function () { return "Ieškoma…"; } + }); + + function character (n) { + return " " + n + " simbol" + ((n%100 > 9 && n%100 < 21) || n%10 == 0 ? "ių" : n%10 > 1 ? "ius" : "į"); + } +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_lv.js b/apps/files_external/3rdparty/select2/select2_locale_lv.js new file mode 100644 index 00000000000..b300ec770f4 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_lv.js @@ -0,0 +1,17 @@ +/** + * Select2 Latvian translation. + * + * @author Uriy Efremochkin + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Sakritību nav"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Lūdzu ievadiet vēl " + n + " simbol" + (n == 11 ? "us" : n%10 == 1 ? "u" : "us"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Lūdzu ievadiet par " + n + " simbol" + (n == 11 ? "iem" : n%10 == 1 ? "u" : "iem") + " mazāk"; }, + formatSelectionTooBig: function (limit) { return "Jūs varat izvēlēties ne vairāk kā " + limit + " element" + (limit == 11 ? "us" : limit%10 == 1 ? "u" : "us"); }, + formatLoadMore: function (pageNumber) { return "Datu ielāde…"; }, + formatSearching: function () { return "Meklēšana…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_mk.js b/apps/files_external/3rdparty/select2/select2_locale_mk.js new file mode 100644 index 00000000000..513562c51bf --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_mk.js @@ -0,0 +1,17 @@ +/** + * Select2 Macedonian translation. + * + * Author: Marko Aleksic + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Нема пронајдено совпаѓања"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Ве молиме внесете уште " + n + " карактер" + (n == 1 ? "" : "и"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Ве молиме внесете " + n + " помалку карактер" + (n == 1? "" : "и"); }, + formatSelectionTooBig: function (limit) { return "Можете да изберете само " + limit + " ставк" + (limit == 1 ? "а" : "и"); }, + formatLoadMore: function (pageNumber) { return "Вчитување резултати…"; }, + formatSearching: function () { return "Пребарување…"; } + }); +})(jQuery); \ No newline at end of file diff --git a/apps/files_external/3rdparty/select2/select2_locale_ms.js b/apps/files_external/3rdparty/select2/select2_locale_ms.js new file mode 100644 index 00000000000..262042aab15 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_ms.js @@ -0,0 +1,17 @@ +/** + * Select2 Malay translation. + * + * Author: Kepoweran + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Tiada padanan yang ditemui"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Sila masukkan " + n + " aksara lagi"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Sila hapuskan " + n + " aksara"; }, + formatSelectionTooBig: function (limit) { return "Anda hanya boleh memilih " + limit + " pilihan"; }, + formatLoadMore: function (pageNumber) { return "Sedang memuatkan keputusan…"; }, + formatSearching: function () { return "Mencari…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_nl.js b/apps/files_external/3rdparty/select2/select2_locale_nl.js new file mode 100644 index 00000000000..5b5c4156ce1 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_nl.js @@ -0,0 +1,15 @@ +/** + * Select2 Dutch translation + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Geen resultaten gevonden"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Vul " + n + " karakter" + (n == 1? "" : "s") + " meer in"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Vul " + n + " karakter" + (n == 1? "" : "s") + " minder in"; }, + formatSelectionTooBig: function (limit) { return "Maximaal " + limit + " item" + (limit == 1 ? "" : "s") + " toegestaan"; }, + formatLoadMore: function (pageNumber) { return "Meer resultaten laden…"; }, + formatSearching: function () { return "Zoeken…"; } + }); +})(jQuery); \ No newline at end of file diff --git a/apps/files_external/3rdparty/select2/select2_locale_no.js b/apps/files_external/3rdparty/select2/select2_locale_no.js new file mode 100644 index 00000000000..ab61c082a02 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_no.js @@ -0,0 +1,18 @@ +/** + * Select2 Norwegian translation. + * + * Author: Torgeir Veimo + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Ingen treff"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Vennligst skriv inn " + n + (n>1 ? " flere tegn" : " tegn til"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Vennligst fjern " + n + " tegn"; }, + formatSelectionTooBig: function (limit) { return "Du kan velge maks " + limit + " elementer"; }, + formatLoadMore: function (pageNumber) { return "Laster flere resultater…"; }, + formatSearching: function () { return "Søker…"; } + }); +})(jQuery); + diff --git a/apps/files_external/3rdparty/select2/select2_locale_pl.js b/apps/files_external/3rdparty/select2/select2_locale_pl.js new file mode 100644 index 00000000000..75054e76578 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_pl.js @@ -0,0 +1,22 @@ +/** + * Select2 Polish translation. + * + * @author Jan Kondratowicz + * @author Uriy Efremochkin + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Brak wyników"; }, + formatInputTooShort: function (input, min) { return "Wpisz jeszcze" + character(min - input.length, "znak", "i"); }, + formatInputTooLong: function (input, max) { return "Wpisana fraza jest za długa o" + character(input.length - max, "znak", "i"); }, + formatSelectionTooBig: function (limit) { return "Możesz zaznaczyć najwyżej" + character(limit, "element", "y"); }, + formatLoadMore: function (pageNumber) { return "Ładowanie wyników…"; }, + formatSearching: function () { return "Szukanie…"; } + }); + + function character (n, word, pluralSuffix) { + return " " + n + " " + word + (n == 1 ? "" : n%10 < 5 && n%10 > 1 && (n%100 < 5 || n%100 > 20) ? pluralSuffix : "ów"); + } +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_pt-BR.js b/apps/files_external/3rdparty/select2/select2_locale_pt-BR.js new file mode 100644 index 00000000000..ac4969acfbb --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_pt-BR.js @@ -0,0 +1,15 @@ +/** + * Select2 Brazilian Portuguese translation + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Nenhum resultado encontrado"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Digite mais " + n + " caracter" + (n == 1? "" : "es"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Apague " + n + " caracter" + (n == 1? "" : "es"); }, + formatSelectionTooBig: function (limit) { return "Só é possível selecionar " + limit + " elemento" + (limit == 1 ? "" : "s"); }, + formatLoadMore: function (pageNumber) { return "Carregando mais resultados…"; }, + formatSearching: function () { return "Buscando…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_pt-PT.js b/apps/files_external/3rdparty/select2/select2_locale_pt-PT.js new file mode 100644 index 00000000000..cced7cf3ec1 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_pt-PT.js @@ -0,0 +1,15 @@ +/** + * Select2 Portuguese (Portugal) translation + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Nenhum resultado encontrado"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Introduza " + n + " car" + (n == 1 ? "ácter" : "acteres"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Apague " + n + " car" + (n == 1 ? "ácter" : "acteres"); }, + formatSelectionTooBig: function (limit) { return "Só é possível selecionar " + limit + " elemento" + (limit == 1 ? "" : "s"); }, + formatLoadMore: function (pageNumber) { return "A carregar mais resultados…"; }, + formatSearching: function () { return "A pesquisar…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_ro.js b/apps/files_external/3rdparty/select2/select2_locale_ro.js new file mode 100644 index 00000000000..87eca4cf740 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_ro.js @@ -0,0 +1,15 @@ +/** + * Select2 Romanian translation. + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Nu a fost găsit nimic"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Vă rugăm să introduceți incă " + n + " caracter" + (n == 1 ? "" : "e"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Vă rugăm să introduceți mai puțin de " + n + " caracter" + (n == 1? "" : "e"); }, + formatSelectionTooBig: function (limit) { return "Aveți voie să selectați cel mult " + limit + " element" + (limit == 1 ? "" : "e"); }, + formatLoadMore: function (pageNumber) { return "Se încarcă…"; }, + formatSearching: function () { return "Căutare…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_rs.js b/apps/files_external/3rdparty/select2/select2_locale_rs.js new file mode 100644 index 00000000000..300c01bc5e5 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_rs.js @@ -0,0 +1,17 @@ +/** + * Select2 Serbian translation. + * + * @author Limon Monte + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Ništa nije pronađeno"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Ukucajte bar još " + n + " simbol" + (n % 10 == 1 && n % 100 != 11 ? "" : "a"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Obrišite " + n + " simbol" + (n % 10 == 1 && n % 100 != 11 ? "" : "a"); }, + formatSelectionTooBig: function (limit) { return "Možete izabrati samo " + limit + " stavk" + (limit % 10 == 1 && limit % 100 != 11 ? "u" : (limit % 10 >= 2 && limit % 10 <= 4 && (limit % 100 < 12 || limit % 100 > 14)? "e" : "i")); }, + formatLoadMore: function (pageNumber) { return "Preuzimanje još rezultata…"; }, + formatSearching: function () { return "Pretraga…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_ru.js b/apps/files_external/3rdparty/select2/select2_locale_ru.js new file mode 100644 index 00000000000..0f45ce0dddf --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_ru.js @@ -0,0 +1,21 @@ +/** + * Select2 Russian translation. + * + * @author Uriy Efremochkin + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Совпадений не найдено"; }, + formatInputTooShort: function (input, min) { return "Пожалуйста, введите еще" + character(min - input.length); }, + formatInputTooLong: function (input, max) { return "Пожалуйста, введите на" + character(input.length - max) + " меньше"; }, + formatSelectionTooBig: function (limit) { return "Вы можете выбрать не более " + limit + " элемент" + (limit%10 == 1 && limit%100 != 11 ? "а" : "ов"); }, + formatLoadMore: function (pageNumber) { return "Загрузка данных…"; }, + formatSearching: function () { return "Поиск…"; } + }); + + function character (n) { + return " " + n + " символ" + (n%10 < 5 && n%10 > 0 && (n%100 < 5 || n%100 > 20) ? n%10 > 1 ? "a" : "" : "ов"); + } +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_sk.js b/apps/files_external/3rdparty/select2/select2_locale_sk.js new file mode 100644 index 00000000000..772f304aca9 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_sk.js @@ -0,0 +1,48 @@ +/** + * Select2 Slovak translation. + * + * Author: David Vallner + */ +(function ($) { + "use strict"; + // use text for the numbers 2 through 4 + var smallNumbers = { + 2: function(masc) { return (masc ? "dva" : "dve"); }, + 3: function() { return "tri"; }, + 4: function() { return "štyri"; } + } + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Nenašli sa žiadne položky"; }, + formatInputTooShort: function (input, min) { + var n = min - input.length; + if (n == 1) { + return "Prosím zadajte ešte jeden znak"; + } else if (n <= 4) { + return "Prosím zadajte ešte ďalšie "+smallNumbers[n](true)+" znaky"; + } else { + return "Prosím zadajte ešte ďalších "+n+" znakov"; + } + }, + formatInputTooLong: function (input, max) { + var n = input.length - max; + if (n == 1) { + return "Prosím zadajte o jeden znak menej"; + } else if (n <= 4) { + return "Prosím zadajte o "+smallNumbers[n](true)+" znaky menej"; + } else { + return "Prosím zadajte o "+n+" znakov menej"; + } + }, + formatSelectionTooBig: function (limit) { + if (limit == 1) { + return "Môžete zvoliť len jednu položku"; + } else if (limit <= 4) { + return "Môžete zvoliť najviac "+smallNumbers[limit](false)+" položky"; + } else { + return "Môžete zvoliť najviac "+limit+" položiek"; + } + }, + formatLoadMore: function (pageNumber) { return "Načítavajú sa ďalšie výsledky…"; }, + formatSearching: function () { return "Vyhľadávanie…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_sv.js b/apps/files_external/3rdparty/select2/select2_locale_sv.js new file mode 100644 index 00000000000..d611189a593 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_sv.js @@ -0,0 +1,17 @@ +/** + * Select2 Swedish translation. + * + * Author: Jens Rantil + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Inga träffar"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Var god skriv in " + n + (n>1 ? " till tecken" : " tecken till"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Var god sudda ut " + n + " tecken"; }, + formatSelectionTooBig: function (limit) { return "Du kan max välja " + limit + " element"; }, + formatLoadMore: function (pageNumber) { return "Laddar fler resultat…"; }, + formatSearching: function () { return "Söker…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_th.js b/apps/files_external/3rdparty/select2/select2_locale_th.js new file mode 100644 index 00000000000..df59bdac36d --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_th.js @@ -0,0 +1,17 @@ +/** + * Select2 Thai translation. + * + * Author: Atsawin Chaowanakritsanakul + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "ไม่พบข้อมูล"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "โปรดพิมพ์เพิ่มอีก " + n + " ตัวอักษร"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "โปรดลบออก " + n + " ตัวอักษร"; }, + formatSelectionTooBig: function (limit) { return "คุณสามารถเลือกได้ไม่เกิน " + limit + " รายการ"; }, + formatLoadMore: function (pageNumber) { return "กำลังค้นข้อมูลเพิ่ม…"; }, + formatSearching: function () { return "กำลังค้นข้อมูล…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_tr.js b/apps/files_external/3rdparty/select2/select2_locale_tr.js new file mode 100644 index 00000000000..f834dad2b89 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_tr.js @@ -0,0 +1,17 @@ +/** + * Select2 Turkish translation. + * + * Author: Salim KAYABAŞI + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Sonuç bulunamadı"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "En az " + n + " karakter daha girmelisiniz"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return n + " karakter azaltmalısınız"; }, + formatSelectionTooBig: function (limit) { return "Sadece " + limit + " seçim yapabilirsiniz"; }, + formatLoadMore: function (pageNumber) { return "Daha fazla…"; }, + formatSearching: function () { return "Aranıyor…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_uk.js b/apps/files_external/3rdparty/select2/select2_locale_uk.js new file mode 100644 index 00000000000..8d31a056080 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_uk.js @@ -0,0 +1,23 @@ +/** + * Select2 Ukrainian translation. + * + * @author bigmihail + * @author Uriy Efremochkin + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatMatches: function (matches) { return character(matches, "результат") + " знайдено, використовуйте клавіші зі стрілками вверх та вниз для навігації."; }, + formatNoMatches: function () { return "Нічого не знайдено"; }, + formatInputTooShort: function (input, min) { return "Введіть буль ласка ще " + character(min - input.length, "символ"); }, + formatInputTooLong: function (input, max) { return "Введіть буль ласка на " + character(input.length - max, "символ") + " менше"; }, + formatSelectionTooBig: function (limit) { return "Ви можете вибрати лише " + character(limit, "елемент"); }, + formatLoadMore: function (pageNumber) { return "Завантаження даних…"; }, + formatSearching: function () { return "Пошук…"; } + }); + + function character (n, word) { + return n + " " + word + (n%10 < 5 && n%10 > 0 && (n%100 < 5 || n%100 > 19) ? n%10 > 1 ? "и" : "" : "ів"); + } +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_vi.js b/apps/files_external/3rdparty/select2/select2_locale_vi.js new file mode 100644 index 00000000000..5dbc275361f --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_vi.js @@ -0,0 +1,18 @@ +/** + * Select2 Vietnamese translation. + * + * Author: Long Nguyen + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Không tìm thấy kết quả"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Vui lòng nhập nhiều hơn " + n + " ký tự" + (n == 1 ? "" : "s"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Vui lòng nhập ít hơn " + n + " ký tự" + (n == 1? "" : "s"); }, + formatSelectionTooBig: function (limit) { return "Chỉ có thể chọn được " + limit + " tùy chọn" + (limit == 1 ? "" : "s"); }, + formatLoadMore: function (pageNumber) { return "Đang lấy thêm kết quả…"; }, + formatSearching: function () { return "Đang tìm…"; } + }); +})(jQuery); + diff --git a/apps/files_external/3rdparty/select2/select2_locale_zh-CN.js b/apps/files_external/3rdparty/select2/select2_locale_zh-CN.js new file mode 100644 index 00000000000..6add3c52518 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_zh-CN.js @@ -0,0 +1,14 @@ +/** + * Select2 Chinese translation + */ +(function ($) { + "use strict"; + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "没有找到匹配项"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "请再输入" + n + "个字符";}, + formatInputTooLong: function (input, max) { var n = input.length - max; return "请删掉" + n + "个字符";}, + formatSelectionTooBig: function (limit) { return "你只能选择最多" + limit + "项"; }, + formatLoadMore: function (pageNumber) { return "加载结果中…"; }, + formatSearching: function () { return "搜索中…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_zh-TW.js b/apps/files_external/3rdparty/select2/select2_locale_zh-TW.js new file mode 100755 index 00000000000..f072381faae --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_zh-TW.js @@ -0,0 +1,14 @@ +/** + * Select2 Traditional Chinese translation + */ +(function ($) { + "use strict"; + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "沒有找到相符的項目"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "請再輸入" + n + "個字元";}, + formatInputTooLong: function (input, max) { var n = input.length - max; return "請刪掉" + n + "個字元";}, + formatSelectionTooBig: function (limit) { return "你只能選擇最多" + limit + "項"; }, + formatLoadMore: function (pageNumber) { return "載入中…"; }, + formatSearching: function () { return "搜尋中…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2x2.png b/apps/files_external/3rdparty/select2/select2x2.png new file mode 100644 index 0000000000000000000000000000000000000000..4bdd5c961d452c49dfa0789c2c7ffb82c238fc24 GIT binary patch literal 845 zcmV-T1G4;yP)upQ6WKflyv?C|ADVW!U!t`EpA+x zB)5#EjWk-_X77YJZtQo`E0SF)^1bZr%)B7Cd`*OK*r z5WG-7e-R9G9^69ksDt29&oyHqxPSt|-S>xi3%PTd+GjY+BGF|nWC(7D-sd(kxqd9~ zS@2YF5vB+>dP8+$l^{oO3-lEWiGA*QIU)Wds#9M6RZ9N zcQ4y4)xqQOxD=vwu%7cz1nY#$lT&y8HCmkWgpwQP#3dhnYj9|2aS_R}IUF_^6s#$= zTm%~>A#oM?KIg$kh=<`gJkeoHa2LrulVy$Yx+N_0R3$4I!R*0677f(FKqm`2_o4~W z0h}fQZ`lC^1A+m;fM7uI(R1`S0KtG@KrkQ}5DW+&@cTnDVIow56KciMk7a899t0bC zC1KI{TsMe5NAR%GD_5`B-@ad4k~K3SO%H z_M31|`HV?E6)u$E3c&*<*n20+V@mRCop>R5;DWuZCmjSo7p@R&OYl^@G Date: Thu, 8 May 2014 15:25:46 +0200 Subject: [PATCH 05/56] replace chosen with select2 to provide ajaxified user and group selection for files_external, fixes #7499 remove minified select2 js show avatars for users, simpler results remove unneeded users and groups from settings template fix css, escape user and group names --- .../3rdparty/select2/.gitignore | 2 - .../3rdparty/select2/select2.min.js | 22 --- apps/files_external/ajax/applicable.php | 26 ++++ apps/files_external/appinfo/routes.php | 3 + apps/files_external/css/settings.css | 16 ++ apps/files_external/js/settings.js | 147 ++++++++++++++++-- apps/files_external/settings.php | 7 +- apps/files_external/templates/settings.php | 27 +--- 8 files changed, 188 insertions(+), 62 deletions(-) delete mode 100644 apps/files_external/3rdparty/select2/.gitignore delete mode 100644 apps/files_external/3rdparty/select2/select2.min.js create mode 100644 apps/files_external/ajax/applicable.php diff --git a/apps/files_external/3rdparty/select2/.gitignore b/apps/files_external/3rdparty/select2/.gitignore deleted file mode 100644 index c6ef2182bdc..00000000000 --- a/apps/files_external/3rdparty/select2/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -.idea - diff --git a/apps/files_external/3rdparty/select2/select2.min.js b/apps/files_external/3rdparty/select2/select2.min.js deleted file mode 100644 index f396992f24b..00000000000 --- a/apps/files_external/3rdparty/select2/select2.min.js +++ /dev/null @@ -1,22 +0,0 @@ -/* -Copyright 2014 Igor Vaynberg - -Version: 3.4.8 Timestamp: Thu May 1 09:50:32 EDT 2014 - -This software is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU -General Public License version 2 (the "GPL License"). You may choose either license to govern your -use of this software only upon the condition that you accept all of the terms of either the Apache -License or the GPL License. - -You may obtain a copy of the Apache License and the GPL License at: - -http://www.apache.org/licenses/LICENSE-2.0 -http://www.gnu.org/licenses/gpl-2.0.html - -Unless required by applicable law or agreed to in writing, software distributed under the Apache License -or the GPL Licesnse is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, -either express or implied. See the Apache License and the GPL License for the specific language governing -permissions and limitations under the Apache License and the GPL License. -*/ -!function(a){"undefined"==typeof a.fn.each2&&a.extend(a.fn,{each2:function(b){for(var c=a([0]),d=-1,e=this.length;++dc;c+=1)if(r(a,b[c]))return c;return-1}function q(){var b=a(l);b.appendTo("body");var c={width:b.width()-b[0].clientWidth,height:b.height()-b[0].clientHeight};return b.remove(),c}function r(a,c){return a===c?!0:a===b||c===b?!1:null===a||null===c?!1:a.constructor===String?a+""==c+"":c.constructor===String?c+""==a+"":!1}function s(b,c){var d,e,f;if(null===b||b.length<1)return[];for(d=b.split(c),e=0,f=d.length;f>e;e+=1)d[e]=a.trim(d[e]);return d}function t(a){return a.outerWidth(!1)-a.width()}function u(c){var d="keyup-change-value";c.on("keydown",function(){a.data(c,d)===b&&a.data(c,d,c.val())}),c.on("keyup",function(){var e=a.data(c,d);e!==b&&c.val()!==e&&(a.removeData(c,d),c.trigger("keyup-change"))})}function v(c){c.on("mousemove",function(c){var d=i;(d===b||d.x!==c.pageX||d.y!==c.pageY)&&a(c.target).trigger("mousemove-filtered",c)})}function w(a,c,d){d=d||b;var e;return function(){var b=arguments;window.clearTimeout(e),e=window.setTimeout(function(){c.apply(d,b)},a)}}function x(a,b){var c=w(a,function(a){b.trigger("scroll-debounced",a)});b.on("scroll",function(a){p(a.target,b.get())>=0&&c(a)})}function y(a){a[0]!==document.activeElement&&window.setTimeout(function(){var d,b=a[0],c=a.val().length;a.focus();var e=b.offsetWidth>0||b.offsetHeight>0;e&&b===document.activeElement&&(b.setSelectionRange?b.setSelectionRange(c,c):b.createTextRange&&(d=b.createTextRange(),d.collapse(!1),d.select()))},0)}function z(b){b=a(b)[0];var c=0,d=0;if("selectionStart"in b)c=b.selectionStart,d=b.selectionEnd-c;else if("selection"in document){b.focus();var e=document.selection.createRange();d=document.selection.createRange().text.length,e.moveStart("character",-b.value.length),c=e.text.length-d}return{offset:c,length:d}}function A(a){a.preventDefault(),a.stopPropagation()}function B(a){a.preventDefault(),a.stopImmediatePropagation()}function C(b){if(!h){var c=b[0].currentStyle||window.getComputedStyle(b[0],null);h=a(document.createElement("div")).css({position:"absolute",left:"-10000px",top:"-10000px",display:"none",fontSize:c.fontSize,fontFamily:c.fontFamily,fontStyle:c.fontStyle,fontWeight:c.fontWeight,letterSpacing:c.letterSpacing,textTransform:c.textTransform,whiteSpace:"nowrap"}),h.attr("class","select2-sizer"),a("body").append(h)}return h.text(b.val()),h.width()}function D(b,c,d){var e,g,f=[];e=b.attr("class"),e&&(e=""+e,a(e.split(" ")).each2(function(){0===this.indexOf("select2-")&&f.push(this)})),e=c.attr("class"),e&&(e=""+e,a(e.split(" ")).each2(function(){0!==this.indexOf("select2-")&&(g=d(this),g&&f.push(g))})),b.attr("class",f.join(" "))}function E(a,b,c,d){var e=o(a.toUpperCase()).indexOf(o(b.toUpperCase())),f=b.length;return 0>e?(c.push(d(a)),void 0):(c.push(d(a.substring(0,e))),c.push(""),c.push(d(a.substring(e,e+f))),c.push(""),c.push(d(a.substring(e+f,a.length))),void 0)}function F(a){var b={"\\":"\","&":"&","<":"<",">":">",'"':""","'":"'","/":"/"};return String(a).replace(/[&<>"'\/\\]/g,function(a){return b[a]})}function G(c){var d,e=null,f=c.quietMillis||100,g=c.url,h=this;return function(i){window.clearTimeout(d),d=window.setTimeout(function(){var d=c.data,f=g,j=c.transport||a.fn.select2.ajaxDefaults.transport,k={type:c.type||"GET",cache:c.cache||!1,jsonpCallback:c.jsonpCallback||b,dataType:c.dataType||"json"},l=a.extend({},a.fn.select2.ajaxDefaults.params,k);d=d?d.call(h,i.term,i.page,i.context):null,f="function"==typeof f?f.call(h,i.term,i.page,i.context):f,e&&"function"==typeof e.abort&&e.abort(),c.params&&(a.isFunction(c.params)?a.extend(l,c.params.call(h)):a.extend(l,c.params)),a.extend(l,{url:f,dataType:c.dataType,data:d,success:function(a){var b=c.results(a,i.page);i.callback(b)}}),e=j.call(h,l)},f)}}function H(b){var d,e,c=b,f=function(a){return""+a.text};a.isArray(c)&&(e=c,c={results:e}),a.isFunction(c)===!1&&(e=c,c=function(){return e});var g=c();return g.text&&(f=g.text,a.isFunction(f)||(d=g.text,f=function(a){return a[d]})),function(b){var g,d=b.term,e={results:[]};return""===d?(b.callback(c()),void 0):(g=function(c,e){var h,i;if(c=c[0],c.children){h={};for(i in c)c.hasOwnProperty(i)&&(h[i]=c[i]);h.children=[],a(c.children).each2(function(a,b){g(b,h.children)}),(h.children.length||b.matcher(d,f(h),c))&&e.push(h)}else b.matcher(d,f(c),c)&&e.push(c)},a(c().results).each2(function(a,b){g(b,e.results)}),b.callback(e),void 0)}}function I(c){var d=a.isFunction(c);return function(e){var f=e.term,g={results:[]},h=d?c(e):c;a.isArray(h)&&(a(h).each(function(){var a=this.text!==b,c=a?this.text:this;(""===f||e.matcher(f,c))&&g.results.push(a?this:{id:this,text:this})}),e.callback(g))}}function J(b,c){if(a.isFunction(b))return!0;if(!b)return!1;if("string"==typeof b)return!0;throw new Error(c+" must be a string, function, or falsy value")}function K(b){if(a.isFunction(b)){var c=Array.prototype.slice.call(arguments,1);return b.apply(null,c)}return b}function L(b){var c=0;return a.each(b,function(a,b){b.children?c+=L(b.children):c++}),c}function M(a,c,d,e){var h,i,j,k,l,f=a,g=!1;if(!e.createSearchChoice||!e.tokenSeparators||e.tokenSeparators.length<1)return b;for(;;){for(i=-1,j=0,k=e.tokenSeparators.length;k>j&&(l=e.tokenSeparators[j],i=a.indexOf(l),!(i>=0));j++);if(0>i)break;if(h=a.substring(0,i),a=a.substring(i+l.length),h.length>0&&(h=e.createSearchChoice.call(this,h,c),h!==b&&null!==h&&e.id(h)!==b&&null!==e.id(h))){for(g=!1,j=0,k=c.length;k>j;j++)if(r(e.id(h),e.id(c[j]))){g=!0;break}g||d(h)}}return f!==a?a:void 0}function N(){var a=this;Array.prototype.forEach.call(arguments,function(b){a[b].remove(),a[b]=null})}function O(b,c){var d=function(){};return d.prototype=new b,d.prototype.constructor=d,d.prototype.parent=b.prototype,d.prototype=a.extend(d.prototype,c),d}if(window.Select2===b){var c,d,e,f,g,h,j,k,i={x:0,y:0},c={TAB:9,ENTER:13,ESC:27,SPACE:32,LEFT:37,UP:38,RIGHT:39,DOWN:40,SHIFT:16,CTRL:17,ALT:18,PAGE_UP:33,PAGE_DOWN:34,HOME:36,END:35,BACKSPACE:8,DELETE:46,isArrow:function(a){switch(a=a.which?a.which:a){case c.LEFT:case c.RIGHT:case c.UP:case c.DOWN:return!0}return!1},isControl:function(a){var b=a.which;switch(b){case c.SHIFT:case c.CTRL:case c.ALT:return!0}return a.metaKey?!0:!1},isFunctionKey:function(a){return a=a.which?a.which:a,a>=112&&123>=a}},l="
    ",m={"\u24b6":"A","\uff21":"A","\xc0":"A","\xc1":"A","\xc2":"A","\u1ea6":"A","\u1ea4":"A","\u1eaa":"A","\u1ea8":"A","\xc3":"A","\u0100":"A","\u0102":"A","\u1eb0":"A","\u1eae":"A","\u1eb4":"A","\u1eb2":"A","\u0226":"A","\u01e0":"A","\xc4":"A","\u01de":"A","\u1ea2":"A","\xc5":"A","\u01fa":"A","\u01cd":"A","\u0200":"A","\u0202":"A","\u1ea0":"A","\u1eac":"A","\u1eb6":"A","\u1e00":"A","\u0104":"A","\u023a":"A","\u2c6f":"A","\ua732":"AA","\xc6":"AE","\u01fc":"AE","\u01e2":"AE","\ua734":"AO","\ua736":"AU","\ua738":"AV","\ua73a":"AV","\ua73c":"AY","\u24b7":"B","\uff22":"B","\u1e02":"B","\u1e04":"B","\u1e06":"B","\u0243":"B","\u0182":"B","\u0181":"B","\u24b8":"C","\uff23":"C","\u0106":"C","\u0108":"C","\u010a":"C","\u010c":"C","\xc7":"C","\u1e08":"C","\u0187":"C","\u023b":"C","\ua73e":"C","\u24b9":"D","\uff24":"D","\u1e0a":"D","\u010e":"D","\u1e0c":"D","\u1e10":"D","\u1e12":"D","\u1e0e":"D","\u0110":"D","\u018b":"D","\u018a":"D","\u0189":"D","\ua779":"D","\u01f1":"DZ","\u01c4":"DZ","\u01f2":"Dz","\u01c5":"Dz","\u24ba":"E","\uff25":"E","\xc8":"E","\xc9":"E","\xca":"E","\u1ec0":"E","\u1ebe":"E","\u1ec4":"E","\u1ec2":"E","\u1ebc":"E","\u0112":"E","\u1e14":"E","\u1e16":"E","\u0114":"E","\u0116":"E","\xcb":"E","\u1eba":"E","\u011a":"E","\u0204":"E","\u0206":"E","\u1eb8":"E","\u1ec6":"E","\u0228":"E","\u1e1c":"E","\u0118":"E","\u1e18":"E","\u1e1a":"E","\u0190":"E","\u018e":"E","\u24bb":"F","\uff26":"F","\u1e1e":"F","\u0191":"F","\ua77b":"F","\u24bc":"G","\uff27":"G","\u01f4":"G","\u011c":"G","\u1e20":"G","\u011e":"G","\u0120":"G","\u01e6":"G","\u0122":"G","\u01e4":"G","\u0193":"G","\ua7a0":"G","\ua77d":"G","\ua77e":"G","\u24bd":"H","\uff28":"H","\u0124":"H","\u1e22":"H","\u1e26":"H","\u021e":"H","\u1e24":"H","\u1e28":"H","\u1e2a":"H","\u0126":"H","\u2c67":"H","\u2c75":"H","\ua78d":"H","\u24be":"I","\uff29":"I","\xcc":"I","\xcd":"I","\xce":"I","\u0128":"I","\u012a":"I","\u012c":"I","\u0130":"I","\xcf":"I","\u1e2e":"I","\u1ec8":"I","\u01cf":"I","\u0208":"I","\u020a":"I","\u1eca":"I","\u012e":"I","\u1e2c":"I","\u0197":"I","\u24bf":"J","\uff2a":"J","\u0134":"J","\u0248":"J","\u24c0":"K","\uff2b":"K","\u1e30":"K","\u01e8":"K","\u1e32":"K","\u0136":"K","\u1e34":"K","\u0198":"K","\u2c69":"K","\ua740":"K","\ua742":"K","\ua744":"K","\ua7a2":"K","\u24c1":"L","\uff2c":"L","\u013f":"L","\u0139":"L","\u013d":"L","\u1e36":"L","\u1e38":"L","\u013b":"L","\u1e3c":"L","\u1e3a":"L","\u0141":"L","\u023d":"L","\u2c62":"L","\u2c60":"L","\ua748":"L","\ua746":"L","\ua780":"L","\u01c7":"LJ","\u01c8":"Lj","\u24c2":"M","\uff2d":"M","\u1e3e":"M","\u1e40":"M","\u1e42":"M","\u2c6e":"M","\u019c":"M","\u24c3":"N","\uff2e":"N","\u01f8":"N","\u0143":"N","\xd1":"N","\u1e44":"N","\u0147":"N","\u1e46":"N","\u0145":"N","\u1e4a":"N","\u1e48":"N","\u0220":"N","\u019d":"N","\ua790":"N","\ua7a4":"N","\u01ca":"NJ","\u01cb":"Nj","\u24c4":"O","\uff2f":"O","\xd2":"O","\xd3":"O","\xd4":"O","\u1ed2":"O","\u1ed0":"O","\u1ed6":"O","\u1ed4":"O","\xd5":"O","\u1e4c":"O","\u022c":"O","\u1e4e":"O","\u014c":"O","\u1e50":"O","\u1e52":"O","\u014e":"O","\u022e":"O","\u0230":"O","\xd6":"O","\u022a":"O","\u1ece":"O","\u0150":"O","\u01d1":"O","\u020c":"O","\u020e":"O","\u01a0":"O","\u1edc":"O","\u1eda":"O","\u1ee0":"O","\u1ede":"O","\u1ee2":"O","\u1ecc":"O","\u1ed8":"O","\u01ea":"O","\u01ec":"O","\xd8":"O","\u01fe":"O","\u0186":"O","\u019f":"O","\ua74a":"O","\ua74c":"O","\u01a2":"OI","\ua74e":"OO","\u0222":"OU","\u24c5":"P","\uff30":"P","\u1e54":"P","\u1e56":"P","\u01a4":"P","\u2c63":"P","\ua750":"P","\ua752":"P","\ua754":"P","\u24c6":"Q","\uff31":"Q","\ua756":"Q","\ua758":"Q","\u024a":"Q","\u24c7":"R","\uff32":"R","\u0154":"R","\u1e58":"R","\u0158":"R","\u0210":"R","\u0212":"R","\u1e5a":"R","\u1e5c":"R","\u0156":"R","\u1e5e":"R","\u024c":"R","\u2c64":"R","\ua75a":"R","\ua7a6":"R","\ua782":"R","\u24c8":"S","\uff33":"S","\u1e9e":"S","\u015a":"S","\u1e64":"S","\u015c":"S","\u1e60":"S","\u0160":"S","\u1e66":"S","\u1e62":"S","\u1e68":"S","\u0218":"S","\u015e":"S","\u2c7e":"S","\ua7a8":"S","\ua784":"S","\u24c9":"T","\uff34":"T","\u1e6a":"T","\u0164":"T","\u1e6c":"T","\u021a":"T","\u0162":"T","\u1e70":"T","\u1e6e":"T","\u0166":"T","\u01ac":"T","\u01ae":"T","\u023e":"T","\ua786":"T","\ua728":"TZ","\u24ca":"U","\uff35":"U","\xd9":"U","\xda":"U","\xdb":"U","\u0168":"U","\u1e78":"U","\u016a":"U","\u1e7a":"U","\u016c":"U","\xdc":"U","\u01db":"U","\u01d7":"U","\u01d5":"U","\u01d9":"U","\u1ee6":"U","\u016e":"U","\u0170":"U","\u01d3":"U","\u0214":"U","\u0216":"U","\u01af":"U","\u1eea":"U","\u1ee8":"U","\u1eee":"U","\u1eec":"U","\u1ef0":"U","\u1ee4":"U","\u1e72":"U","\u0172":"U","\u1e76":"U","\u1e74":"U","\u0244":"U","\u24cb":"V","\uff36":"V","\u1e7c":"V","\u1e7e":"V","\u01b2":"V","\ua75e":"V","\u0245":"V","\ua760":"VY","\u24cc":"W","\uff37":"W","\u1e80":"W","\u1e82":"W","\u0174":"W","\u1e86":"W","\u1e84":"W","\u1e88":"W","\u2c72":"W","\u24cd":"X","\uff38":"X","\u1e8a":"X","\u1e8c":"X","\u24ce":"Y","\uff39":"Y","\u1ef2":"Y","\xdd":"Y","\u0176":"Y","\u1ef8":"Y","\u0232":"Y","\u1e8e":"Y","\u0178":"Y","\u1ef6":"Y","\u1ef4":"Y","\u01b3":"Y","\u024e":"Y","\u1efe":"Y","\u24cf":"Z","\uff3a":"Z","\u0179":"Z","\u1e90":"Z","\u017b":"Z","\u017d":"Z","\u1e92":"Z","\u1e94":"Z","\u01b5":"Z","\u0224":"Z","\u2c7f":"Z","\u2c6b":"Z","\ua762":"Z","\u24d0":"a","\uff41":"a","\u1e9a":"a","\xe0":"a","\xe1":"a","\xe2":"a","\u1ea7":"a","\u1ea5":"a","\u1eab":"a","\u1ea9":"a","\xe3":"a","\u0101":"a","\u0103":"a","\u1eb1":"a","\u1eaf":"a","\u1eb5":"a","\u1eb3":"a","\u0227":"a","\u01e1":"a","\xe4":"a","\u01df":"a","\u1ea3":"a","\xe5":"a","\u01fb":"a","\u01ce":"a","\u0201":"a","\u0203":"a","\u1ea1":"a","\u1ead":"a","\u1eb7":"a","\u1e01":"a","\u0105":"a","\u2c65":"a","\u0250":"a","\ua733":"aa","\xe6":"ae","\u01fd":"ae","\u01e3":"ae","\ua735":"ao","\ua737":"au","\ua739":"av","\ua73b":"av","\ua73d":"ay","\u24d1":"b","\uff42":"b","\u1e03":"b","\u1e05":"b","\u1e07":"b","\u0180":"b","\u0183":"b","\u0253":"b","\u24d2":"c","\uff43":"c","\u0107":"c","\u0109":"c","\u010b":"c","\u010d":"c","\xe7":"c","\u1e09":"c","\u0188":"c","\u023c":"c","\ua73f":"c","\u2184":"c","\u24d3":"d","\uff44":"d","\u1e0b":"d","\u010f":"d","\u1e0d":"d","\u1e11":"d","\u1e13":"d","\u1e0f":"d","\u0111":"d","\u018c":"d","\u0256":"d","\u0257":"d","\ua77a":"d","\u01f3":"dz","\u01c6":"dz","\u24d4":"e","\uff45":"e","\xe8":"e","\xe9":"e","\xea":"e","\u1ec1":"e","\u1ebf":"e","\u1ec5":"e","\u1ec3":"e","\u1ebd":"e","\u0113":"e","\u1e15":"e","\u1e17":"e","\u0115":"e","\u0117":"e","\xeb":"e","\u1ebb":"e","\u011b":"e","\u0205":"e","\u0207":"e","\u1eb9":"e","\u1ec7":"e","\u0229":"e","\u1e1d":"e","\u0119":"e","\u1e19":"e","\u1e1b":"e","\u0247":"e","\u025b":"e","\u01dd":"e","\u24d5":"f","\uff46":"f","\u1e1f":"f","\u0192":"f","\ua77c":"f","\u24d6":"g","\uff47":"g","\u01f5":"g","\u011d":"g","\u1e21":"g","\u011f":"g","\u0121":"g","\u01e7":"g","\u0123":"g","\u01e5":"g","\u0260":"g","\ua7a1":"g","\u1d79":"g","\ua77f":"g","\u24d7":"h","\uff48":"h","\u0125":"h","\u1e23":"h","\u1e27":"h","\u021f":"h","\u1e25":"h","\u1e29":"h","\u1e2b":"h","\u1e96":"h","\u0127":"h","\u2c68":"h","\u2c76":"h","\u0265":"h","\u0195":"hv","\u24d8":"i","\uff49":"i","\xec":"i","\xed":"i","\xee":"i","\u0129":"i","\u012b":"i","\u012d":"i","\xef":"i","\u1e2f":"i","\u1ec9":"i","\u01d0":"i","\u0209":"i","\u020b":"i","\u1ecb":"i","\u012f":"i","\u1e2d":"i","\u0268":"i","\u0131":"i","\u24d9":"j","\uff4a":"j","\u0135":"j","\u01f0":"j","\u0249":"j","\u24da":"k","\uff4b":"k","\u1e31":"k","\u01e9":"k","\u1e33":"k","\u0137":"k","\u1e35":"k","\u0199":"k","\u2c6a":"k","\ua741":"k","\ua743":"k","\ua745":"k","\ua7a3":"k","\u24db":"l","\uff4c":"l","\u0140":"l","\u013a":"l","\u013e":"l","\u1e37":"l","\u1e39":"l","\u013c":"l","\u1e3d":"l","\u1e3b":"l","\u017f":"l","\u0142":"l","\u019a":"l","\u026b":"l","\u2c61":"l","\ua749":"l","\ua781":"l","\ua747":"l","\u01c9":"lj","\u24dc":"m","\uff4d":"m","\u1e3f":"m","\u1e41":"m","\u1e43":"m","\u0271":"m","\u026f":"m","\u24dd":"n","\uff4e":"n","\u01f9":"n","\u0144":"n","\xf1":"n","\u1e45":"n","\u0148":"n","\u1e47":"n","\u0146":"n","\u1e4b":"n","\u1e49":"n","\u019e":"n","\u0272":"n","\u0149":"n","\ua791":"n","\ua7a5":"n","\u01cc":"nj","\u24de":"o","\uff4f":"o","\xf2":"o","\xf3":"o","\xf4":"o","\u1ed3":"o","\u1ed1":"o","\u1ed7":"o","\u1ed5":"o","\xf5":"o","\u1e4d":"o","\u022d":"o","\u1e4f":"o","\u014d":"o","\u1e51":"o","\u1e53":"o","\u014f":"o","\u022f":"o","\u0231":"o","\xf6":"o","\u022b":"o","\u1ecf":"o","\u0151":"o","\u01d2":"o","\u020d":"o","\u020f":"o","\u01a1":"o","\u1edd":"o","\u1edb":"o","\u1ee1":"o","\u1edf":"o","\u1ee3":"o","\u1ecd":"o","\u1ed9":"o","\u01eb":"o","\u01ed":"o","\xf8":"o","\u01ff":"o","\u0254":"o","\ua74b":"o","\ua74d":"o","\u0275":"o","\u01a3":"oi","\u0223":"ou","\ua74f":"oo","\u24df":"p","\uff50":"p","\u1e55":"p","\u1e57":"p","\u01a5":"p","\u1d7d":"p","\ua751":"p","\ua753":"p","\ua755":"p","\u24e0":"q","\uff51":"q","\u024b":"q","\ua757":"q","\ua759":"q","\u24e1":"r","\uff52":"r","\u0155":"r","\u1e59":"r","\u0159":"r","\u0211":"r","\u0213":"r","\u1e5b":"r","\u1e5d":"r","\u0157":"r","\u1e5f":"r","\u024d":"r","\u027d":"r","\ua75b":"r","\ua7a7":"r","\ua783":"r","\u24e2":"s","\uff53":"s","\xdf":"s","\u015b":"s","\u1e65":"s","\u015d":"s","\u1e61":"s","\u0161":"s","\u1e67":"s","\u1e63":"s","\u1e69":"s","\u0219":"s","\u015f":"s","\u023f":"s","\ua7a9":"s","\ua785":"s","\u1e9b":"s","\u24e3":"t","\uff54":"t","\u1e6b":"t","\u1e97":"t","\u0165":"t","\u1e6d":"t","\u021b":"t","\u0163":"t","\u1e71":"t","\u1e6f":"t","\u0167":"t","\u01ad":"t","\u0288":"t","\u2c66":"t","\ua787":"t","\ua729":"tz","\u24e4":"u","\uff55":"u","\xf9":"u","\xfa":"u","\xfb":"u","\u0169":"u","\u1e79":"u","\u016b":"u","\u1e7b":"u","\u016d":"u","\xfc":"u","\u01dc":"u","\u01d8":"u","\u01d6":"u","\u01da":"u","\u1ee7":"u","\u016f":"u","\u0171":"u","\u01d4":"u","\u0215":"u","\u0217":"u","\u01b0":"u","\u1eeb":"u","\u1ee9":"u","\u1eef":"u","\u1eed":"u","\u1ef1":"u","\u1ee5":"u","\u1e73":"u","\u0173":"u","\u1e77":"u","\u1e75":"u","\u0289":"u","\u24e5":"v","\uff56":"v","\u1e7d":"v","\u1e7f":"v","\u028b":"v","\ua75f":"v","\u028c":"v","\ua761":"vy","\u24e6":"w","\uff57":"w","\u1e81":"w","\u1e83":"w","\u0175":"w","\u1e87":"w","\u1e85":"w","\u1e98":"w","\u1e89":"w","\u2c73":"w","\u24e7":"x","\uff58":"x","\u1e8b":"x","\u1e8d":"x","\u24e8":"y","\uff59":"y","\u1ef3":"y","\xfd":"y","\u0177":"y","\u1ef9":"y","\u0233":"y","\u1e8f":"y","\xff":"y","\u1ef7":"y","\u1e99":"y","\u1ef5":"y","\u01b4":"y","\u024f":"y","\u1eff":"y","\u24e9":"z","\uff5a":"z","\u017a":"z","\u1e91":"z","\u017c":"z","\u017e":"z","\u1e93":"z","\u1e95":"z","\u01b6":"z","\u0225":"z","\u0240":"z","\u2c6c":"z","\ua763":"z"};j=a(document),g=function(){var a=1;return function(){return a++}}(),j.on("mousemove",function(a){i.x=a.pageX,i.y=a.pageY}),d=O(Object,{bind:function(a){var b=this;return function(){a.apply(b,arguments)}},init:function(c){var d,e,f=".select2-results";this.opts=c=this.prepareOpts(c),this.id=c.id,c.element.data("select2")!==b&&null!==c.element.data("select2")&&c.element.data("select2").destroy(),this.container=this.createContainer(),this.liveRegion=a("",{role:"status","aria-live":"polite"}).addClass("select2-hidden-accessible").appendTo(document.body),this.containerId="s2id_"+(c.element.attr("id")||"autogen"+g()),this.containerEventName=this.containerId.replace(/([.])/g,"_").replace(/([;&,\-\.\+\*\~':"\!\^#$%@\[\]\(\)=>\|])/g,"\\$1"),this.container.attr("id",this.containerId),this.container.attr("title",c.element.attr("title")),this.body=a("body"),D(this.container,this.opts.element,this.opts.adaptContainerCssClass),this.container.attr("style",c.element.attr("style")),this.container.css(K(c.containerCss)),this.container.addClass(K(c.containerCssClass)),this.elementTabIndex=this.opts.element.attr("tabindex"),this.opts.element.data("select2",this).attr("tabindex","-1").before(this.container).on("click.select2",A),this.container.data("select2",this),this.dropdown=this.container.find(".select2-drop"),D(this.dropdown,this.opts.element,this.opts.adaptDropdownCssClass),this.dropdown.addClass(K(c.dropdownCssClass)),this.dropdown.data("select2",this),this.dropdown.on("click",A),this.results=d=this.container.find(f),this.search=e=this.container.find("input.select2-input"),this.queryCount=0,this.resultsPage=0,this.context=null,this.initContainer(),this.container.on("click",A),v(this.results),this.dropdown.on("mousemove-filtered",f,this.bind(this.highlightUnderEvent)),this.dropdown.on("touchstart touchmove touchend",f,this.bind(function(a){this._touchEvent=!0,this.highlightUnderEvent(a)})),this.dropdown.on("touchmove",f,this.bind(this.touchMoved)),this.dropdown.on("touchstart touchend",f,this.bind(this.clearTouchMoved)),this.dropdown.on("click",this.bind(function(){this._touchEvent&&(this._touchEvent=!1,this.selectHighlighted())})),x(80,this.results),this.dropdown.on("scroll-debounced",f,this.bind(this.loadMoreIfNeeded)),a(this.container).on("change",".select2-input",function(a){a.stopPropagation()}),a(this.dropdown).on("change",".select2-input",function(a){a.stopPropagation()}),a.fn.mousewheel&&d.mousewheel(function(a,b,c,e){var f=d.scrollTop();e>0&&0>=f-e?(d.scrollTop(0),A(a)):0>e&&d.get(0).scrollHeight-d.scrollTop()+e<=d.height()&&(d.scrollTop(d.get(0).scrollHeight-d.height()),A(a))}),u(e),e.on("keyup-change input paste",this.bind(this.updateResults)),e.on("focus",function(){e.addClass("select2-focused")}),e.on("blur",function(){e.removeClass("select2-focused")}),this.dropdown.on("mouseup",f,this.bind(function(b){a(b.target).closest(".select2-result-selectable").length>0&&(this.highlightUnderEvent(b),this.selectHighlighted(b))})),this.dropdown.on("click mouseup mousedown touchstart touchend focusin",function(a){a.stopPropagation()}),this.nextSearchTerm=b,a.isFunction(this.opts.initSelection)&&(this.initSelection(),this.monitorSource()),null!==c.maximumInputLength&&this.search.attr("maxlength",c.maximumInputLength);var h=c.element.prop("disabled");h===b&&(h=!1),this.enable(!h);var i=c.element.prop("readonly");i===b&&(i=!1),this.readonly(i),k=k||q(),this.autofocus=c.element.prop("autofocus"),c.element.prop("autofocus",!1),this.autofocus&&this.focus(),this.search.attr("placeholder",c.searchInputPlaceholder)},destroy:function(){var a=this.opts.element,c=a.data("select2");this.close(),this.propertyObserver&&(this.propertyObserver.disconnect(),this.propertyObserver=null),c!==b&&(c.container.remove(),c.liveRegion.remove(),c.dropdown.remove(),a.removeClass("select2-offscreen").removeData("select2").off(".select2").prop("autofocus",this.autofocus||!1),this.elementTabIndex?a.attr({tabindex:this.elementTabIndex}):a.removeAttr("tabindex"),a.show()),N.call(this,"container","liveRegion","dropdown","results","search")},optionToData:function(a){return a.is("option")?{id:a.prop("value"),text:a.text(),element:a.get(),css:a.attr("class"),disabled:a.prop("disabled"),locked:r(a.attr("locked"),"locked")||r(a.data("locked"),!0)}:a.is("optgroup")?{text:a.attr("label"),children:[],element:a.get(),css:a.attr("class")}:void 0},prepareOpts:function(c){var d,e,f,h,i=this;if(d=c.element,"select"===d.get(0).tagName.toLowerCase()&&(this.select=e=c.element),e&&a.each(["id","multiple","ajax","query","createSearchChoice","initSelection","data","tags"],function(){if(this in c)throw new Error("Option '"+this+"' is not allowed for Select2 when attached to a ","
    "," ","
      ","
    ","
    "].join(""));return b},enableInterface:function(){this.parent.enableInterface.apply(this,arguments)&&this.focusser.prop("disabled",!this.isInterfaceEnabled())},opening:function(){var c,d,e;this.opts.minimumResultsForSearch>=0&&this.showSearch(!0),this.parent.opening.apply(this,arguments),this.showSearchInput!==!1&&this.search.val(this.focusser.val()),this.opts.shouldFocusInput(this)&&(this.search.focus(),c=this.search.get(0),c.createTextRange?(d=c.createTextRange(),d.collapse(!1),d.select()):c.setSelectionRange&&(e=this.search.val().length,c.setSelectionRange(e,e))),""===this.search.val()&&this.nextSearchTerm!=b&&(this.search.val(this.nextSearchTerm),this.search.select()),this.focusser.prop("disabled",!0).val(""),this.updateResults(!0),this.opts.element.trigger(a.Event("select2-open"))},close:function(){this.opened()&&(this.parent.close.apply(this,arguments),this.focusser.prop("disabled",!1),this.opts.shouldFocusInput(this)&&this.focusser.focus())},focus:function(){this.opened()?this.close():(this.focusser.prop("disabled",!1),this.opts.shouldFocusInput(this)&&this.focusser.focus())},isFocused:function(){return this.container.hasClass("select2-container-active")},cancel:function(){this.parent.cancel.apply(this,arguments),this.focusser.prop("disabled",!1),this.opts.shouldFocusInput(this)&&this.focusser.focus()},destroy:function(){a("label[for='"+this.focusser.attr("id")+"']").attr("for",this.opts.element.attr("id")),this.parent.destroy.apply(this,arguments),N.call(this,"selection","focusser")},initContainer:function(){var b,h,d=this.container,e=this.dropdown,f=g();this.opts.minimumResultsForSearch<0?this.showSearch(!1):this.showSearch(!0),this.selection=b=d.find(".select2-choice"),this.focusser=d.find(".select2-focusser"),b.find(".select2-chosen").attr("id","select2-chosen-"+f),this.focusser.attr("aria-labelledby","select2-chosen-"+f),this.results.attr("id","select2-results-"+f),this.search.attr("aria-owns","select2-results-"+f),this.focusser.attr("id","s2id_autogen"+f),h=a("label[for='"+this.opts.element.attr("id")+"']"),this.focusser.prev().text(h.text()).attr("for",this.focusser.attr("id"));var i=this.opts.element.attr("title");this.opts.element.attr("title",i||h.text()),this.focusser.attr("tabindex",this.elementTabIndex),this.search.attr("id",this.focusser.attr("id")+"_search"),this.search.prev().text(a("label[for='"+this.focusser.attr("id")+"']").text()).attr("for",this.search.attr("id")),this.search.on("keydown",this.bind(function(a){if(this.isInterfaceEnabled()){if(a.which===c.PAGE_UP||a.which===c.PAGE_DOWN)return A(a),void 0;switch(a.which){case c.UP:case c.DOWN:return this.moveHighlight(a.which===c.UP?-1:1),A(a),void 0;case c.ENTER:return this.selectHighlighted(),A(a),void 0;case c.TAB:return this.selectHighlighted({noFocus:!0}),void 0;case c.ESC:return this.cancel(a),A(a),void 0}}})),this.search.on("blur",this.bind(function(){document.activeElement===this.body.get(0)&&window.setTimeout(this.bind(function(){this.opened()&&this.search.focus()}),0)})),this.focusser.on("keydown",this.bind(function(a){if(this.isInterfaceEnabled()&&a.which!==c.TAB&&!c.isControl(a)&&!c.isFunctionKey(a)&&a.which!==c.ESC){if(this.opts.openOnEnter===!1&&a.which===c.ENTER)return A(a),void 0;if(a.which==c.DOWN||a.which==c.UP||a.which==c.ENTER&&this.opts.openOnEnter){if(a.altKey||a.ctrlKey||a.shiftKey||a.metaKey)return;return this.open(),A(a),void 0}return a.which==c.DELETE||a.which==c.BACKSPACE?(this.opts.allowClear&&this.clear(),A(a),void 0):void 0}})),u(this.focusser),this.focusser.on("keyup-change input",this.bind(function(a){if(this.opts.minimumResultsForSearch>=0){if(a.stopPropagation(),this.opened())return;this.open()}})),b.on("mousedown touchstart","abbr",this.bind(function(a){this.isInterfaceEnabled()&&(this.clear(),B(a),this.close(),this.selection.focus())})),b.on("mousedown touchstart",this.bind(function(c){n(b),this.container.hasClass("select2-container-active")||this.opts.element.trigger(a.Event("select2-focus")),this.opened()?this.close():this.isInterfaceEnabled()&&this.open(),A(c)})),e.on("mousedown touchstart",this.bind(function(){this.opts.shouldFocusInput(this)&&this.search.focus()})),b.on("focus",this.bind(function(a){A(a)})),this.focusser.on("focus",this.bind(function(){this.container.hasClass("select2-container-active")||this.opts.element.trigger(a.Event("select2-focus")),this.container.addClass("select2-container-active")})).on("blur",this.bind(function(){this.opened()||(this.container.removeClass("select2-container-active"),this.opts.element.trigger(a.Event("select2-blur")))})),this.search.on("focus",this.bind(function(){this.container.hasClass("select2-container-active")||this.opts.element.trigger(a.Event("select2-focus")),this.container.addClass("select2-container-active")})),this.initContainerWidth(),this.opts.element.addClass("select2-offscreen"),this.setPlaceholder()},clear:function(b){var c=this.selection.data("select2-data");if(c){var d=a.Event("select2-clearing");if(this.opts.element.trigger(d),d.isDefaultPrevented())return;var e=this.getPlaceholderOption();this.opts.element.val(e?e.val():""),this.selection.find(".select2-chosen").empty(),this.selection.removeData("select2-data"),this.setPlaceholder(),b!==!1&&(this.opts.element.trigger({type:"select2-removed",val:this.id(c),choice:c}),this.triggerChange({removed:c}))}},initSelection:function(){if(this.isPlaceholderOptionSelected())this.updateSelection(null),this.close(),this.setPlaceholder();else{var c=this;this.opts.initSelection.call(null,this.opts.element,function(a){a!==b&&null!==a&&(c.updateSelection(a),c.close(),c.setPlaceholder(),c.nextSearchTerm=c.opts.nextSearchTerm(a,c.search.val()))})}},isPlaceholderOptionSelected:function(){var a;return this.getPlaceholder()===b?!1:(a=this.getPlaceholderOption())!==b&&a.prop("selected")||""===this.opts.element.val()||this.opts.element.val()===b||null===this.opts.element.val()},prepareOpts:function(){var b=this.parent.prepareOpts.apply(this,arguments),c=this;return"select"===b.element.get(0).tagName.toLowerCase()?b.initSelection=function(a,b){var d=a.find("option").filter(function(){return this.selected&&!this.disabled});b(c.optionToData(d))}:"data"in b&&(b.initSelection=b.initSelection||function(c,d){var e=c.val(),f=null;b.query({matcher:function(a,c,d){var g=r(e,b.id(d));return g&&(f=d),g},callback:a.isFunction(d)?function(){d(f)}:a.noop})}),b},getPlaceholder:function(){return this.select&&this.getPlaceholderOption()===b?b:this.parent.getPlaceholder.apply(this,arguments)},setPlaceholder:function(){var a=this.getPlaceholder();if(this.isPlaceholderOptionSelected()&&a!==b){if(this.select&&this.getPlaceholderOption()===b)return;this.selection.find(".select2-chosen").html(this.opts.escapeMarkup(a)),this.selection.addClass("select2-default"),this.container.removeClass("select2-allowclear")}},postprocessResults:function(a,b,c){var d=0,e=this;if(this.findHighlightableChoices().each2(function(a,b){return r(e.id(b.data("select2-data")),e.opts.element.val())?(d=a,!1):void 0}),c!==!1&&(b===!0&&d>=0?this.highlight(d):this.highlight(0)),b===!0){var g=this.opts.minimumResultsForSearch;g>=0&&this.showSearch(L(a.results)>=g)}},showSearch:function(b){this.showSearchInput!==b&&(this.showSearchInput=b,this.dropdown.find(".select2-search").toggleClass("select2-search-hidden",!b),this.dropdown.find(".select2-search").toggleClass("select2-offscreen",!b),a(this.dropdown,this.container).toggleClass("select2-with-searchbox",b))},onSelect:function(a,b){if(this.triggerSelect(a)){var c=this.opts.element.val(),d=this.data();this.opts.element.val(this.id(a)),this.updateSelection(a),this.opts.element.trigger({type:"select2-selected",val:this.id(a),choice:a}),this.nextSearchTerm=this.opts.nextSearchTerm(a,this.search.val()),this.close(),b&&b.noFocus||!this.opts.shouldFocusInput(this)||this.focusser.focus(),r(c,this.id(a))||this.triggerChange({added:a,removed:d})}},updateSelection:function(a){var d,e,c=this.selection.find(".select2-chosen");this.selection.data("select2-data",a),c.empty(),null!==a&&(d=this.opts.formatSelection(a,c,this.opts.escapeMarkup)),d!==b&&c.append(d),e=this.opts.formatSelectionCssClass(a,c),e!==b&&c.addClass(e),this.selection.removeClass("select2-default"),this.opts.allowClear&&this.getPlaceholder()!==b&&this.container.addClass("select2-allowclear")},val:function(){var a,c=!1,d=null,e=this,f=this.data();if(0===arguments.length)return this.opts.element.val();if(a=arguments[0],arguments.length>1&&(c=arguments[1]),this.select)this.select.val(a).find("option").filter(function(){return this.selected}).each2(function(a,b){return d=e.optionToData(b),!1}),this.updateSelection(d),this.setPlaceholder(),c&&this.triggerChange({added:d,removed:f});else{if(!a&&0!==a)return this.clear(c),void 0;if(this.opts.initSelection===b)throw new Error("cannot call val() if initSelection() is not defined");this.opts.element.val(a),this.opts.initSelection(this.opts.element,function(a){e.opts.element.val(a?e.id(a):""),e.updateSelection(a),e.setPlaceholder(),c&&e.triggerChange({added:a,removed:f})})}},clearSearch:function(){this.search.val(""),this.focusser.val("")},data:function(a){var c,d=!1;return 0===arguments.length?(c=this.selection.data("select2-data"),c==b&&(c=null),c):(arguments.length>1&&(d=arguments[1]),a?(c=this.data(),this.opts.element.val(a?this.id(a):""),this.updateSelection(a),d&&this.triggerChange({added:a,removed:c})):this.clear(d),void 0)}}),f=O(d,{createContainer:function(){var b=a(document.createElement("div")).attr({"class":"select2-container select2-container-multi"}).html(["
      ","
    • "," "," ","
    • ","
    ","
    ","
      ","
    ","
    "].join(""));return b},prepareOpts:function(){var b=this.parent.prepareOpts.apply(this,arguments),c=this;return"select"===b.element.get(0).tagName.toLowerCase()?b.initSelection=function(a,b){var d=[];a.find("option").filter(function(){return this.selected&&!this.disabled}).each2(function(a,b){d.push(c.optionToData(b))}),b(d)}:"data"in b&&(b.initSelection=b.initSelection||function(c,d){var e=s(c.val(),b.separator),f=[];b.query({matcher:function(c,d,g){var h=a.grep(e,function(a){return r(a,b.id(g))}).length;return h&&f.push(g),h},callback:a.isFunction(d)?function(){for(var a=[],c=0;c0||(this.selectChoice(null),this.clearPlaceholder(),this.container.hasClass("select2-container-active")||this.opts.element.trigger(a.Event("select2-focus")),this.open(),this.focusSearch(),b.preventDefault()))})),this.container.on("focus",b,this.bind(function(){this.isInterfaceEnabled()&&(this.container.hasClass("select2-container-active")||this.opts.element.trigger(a.Event("select2-focus")),this.container.addClass("select2-container-active"),this.dropdown.addClass("select2-drop-active"),this.clearPlaceholder())})),this.initContainerWidth(),this.opts.element.addClass("select2-offscreen"),this.clearSearch()},enableInterface:function(){this.parent.enableInterface.apply(this,arguments)&&this.search.prop("disabled",!this.isInterfaceEnabled())},initSelection:function(){if(""===this.opts.element.val()&&""===this.opts.element.text()&&(this.updateSelection([]),this.close(),this.clearSearch()),this.select||""!==this.opts.element.val()){var c=this;this.opts.initSelection.call(null,this.opts.element,function(a){a!==b&&null!==a&&(c.updateSelection(a),c.close(),c.clearSearch())})}},clearSearch:function(){var a=this.getPlaceholder(),c=this.getMaxSearchWidth();a!==b&&0===this.getVal().length&&this.search.hasClass("select2-focused")===!1?(this.search.val(a).addClass("select2-default"),this.search.width(c>0?c:this.container.css("width"))):this.search.val("").width(10)},clearPlaceholder:function(){this.search.hasClass("select2-default")&&this.search.val("").removeClass("select2-default")},opening:function(){this.clearPlaceholder(),this.resizeSearch(),this.parent.opening.apply(this,arguments),this.focusSearch(),""===this.search.val()&&this.nextSearchTerm!=b&&(this.search.val(this.nextSearchTerm),this.search.select()),this.updateResults(!0),this.opts.shouldFocusInput(this)&&this.search.focus(),this.opts.element.trigger(a.Event("select2-open"))},close:function(){this.opened()&&this.parent.close.apply(this,arguments)},focus:function(){this.close(),this.search.focus()},isFocused:function(){return this.search.hasClass("select2-focused")},updateSelection:function(b){var c=[],d=[],e=this;a(b).each(function(){p(e.id(this),c)<0&&(c.push(e.id(this)),d.push(this))}),b=d,this.selection.find(".select2-search-choice").remove(),a(b).each(function(){e.addSelectedChoice(this)}),e.postprocessResults()},tokenize:function(){var a=this.search.val();a=this.opts.tokenizer.call(this,a,this.data(),this.bind(this.onSelect),this.opts),null!=a&&a!=b&&(this.search.val(a),a.length>0&&this.open())},onSelect:function(a,c){this.triggerSelect(a)&&(this.addSelectedChoice(a),this.opts.element.trigger({type:"selected",val:this.id(a),choice:a}),this.nextSearchTerm=this.opts.nextSearchTerm(a,this.search.val()),this.clearSearch(),this.updateResults(),(this.select||!this.opts.closeOnSelect)&&this.postprocessResults(a,!1,this.opts.closeOnSelect===!0),this.opts.closeOnSelect?(this.close(),this.search.width(10)):this.countSelectableResults()>0?(this.search.width(10),this.resizeSearch(),this.getMaximumSelectionSize()>0&&this.val().length>=this.getMaximumSelectionSize()?this.updateResults(!0):this.nextSearchTerm!=b&&(this.search.val(this.nextSearchTerm),this.updateResults(),this.search.select()),this.positionDropdown()):(this.close(),this.search.width(10)),this.triggerChange({added:a}),c&&c.noFocus||this.focusSearch())},cancel:function(){this.close(),this.focusSearch()},addSelectedChoice:function(c){var j,k,d=!c.locked,e=a("
  • "),f=a("
  • "),g=d?e:f,h=this.id(c),i=this.getVal();j=this.opts.formatSelection(c,g.find("div"),this.opts.escapeMarkup),j!=b&&g.find("div").replaceWith("
    "+j+"
    "),k=this.opts.formatSelectionCssClass(c,g.find("div")),k!=b&&g.addClass(k),d&&g.find(".select2-search-choice-close").on("mousedown",A).on("click dblclick",this.bind(function(b){this.isInterfaceEnabled()&&(this.unselect(a(b.target)),this.selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus"),A(b),this.close(),this.focusSearch())})).on("focus",this.bind(function(){this.isInterfaceEnabled()&&(this.container.addClass("select2-container-active"),this.dropdown.addClass("select2-drop-active"))})),g.data("select2-data",c),g.insertBefore(this.searchContainer),i.push(h),this.setVal(i)},unselect:function(b){var d,e,c=this.getVal();if(b=b.closest(".select2-search-choice"),0===b.length)throw"Invalid argument: "+b+". Must be .select2-search-choice";if(d=b.data("select2-data")){var f=a.Event("select2-removing");if(f.val=this.id(d),f.choice=d,this.opts.element.trigger(f),f.isDefaultPrevented())return!1;for(;(e=p(this.id(d),c))>=0;)c.splice(e,1),this.setVal(c),this.select&&this.postprocessResults();return b.remove(),this.opts.element.trigger({type:"select2-removed",val:this.id(d),choice:d}),this.triggerChange({removed:d}),!0}},postprocessResults:function(a,b,c){var d=this.getVal(),e=this.results.find(".select2-result"),f=this.results.find(".select2-result-with-children"),g=this;e.each2(function(a,b){var c=g.id(b.data("select2-data"));p(c,d)>=0&&(b.addClass("select2-selected"),b.find(".select2-result-selectable").addClass("select2-selected"))}),f.each2(function(a,b){b.is(".select2-result-selectable")||0!==b.find(".select2-result-selectable:not(.select2-selected)").length||b.addClass("select2-selected")}),-1==this.highlight()&&c!==!1&&g.highlight(0),!this.opts.createSearchChoice&&!e.filter(".select2-result:not(.select2-selected)").length>0&&(!a||a&&!a.more&&0===this.results.find(".select2-no-results").length)&&J(g.opts.formatNoMatches,"formatNoMatches")&&this.results.append("
  • "+K(g.opts.formatNoMatches,g.search.val())+"
  • ")},getMaxSearchWidth:function(){return this.selection.width()-t(this.search)},resizeSearch:function(){var a,b,c,d,e,f=t(this.search);a=C(this.search)+10,b=this.search.offset().left,c=this.selection.width(),d=this.selection.offset().left,e=c-(b-d)-f,a>e&&(e=c-f),40>e&&(e=c-f),0>=e&&(e=a),this.search.width(Math.floor(e))},getVal:function(){var a;return this.select?(a=this.select.val(),null===a?[]:a):(a=this.opts.element.val(),s(a,this.opts.separator))},setVal:function(b){var c;this.select?this.select.val(b):(c=[],a(b).each(function(){p(this,c)<0&&c.push(this)}),this.opts.element.val(0===c.length?"":c.join(this.opts.separator)))},buildChangeDetails:function(a,b){for(var b=b.slice(0),a=a.slice(0),c=0;c0&&c--,a.splice(d,1),d--);return{added:b,removed:a}},val:function(c,d){var e,f=this;if(0===arguments.length)return this.getVal();if(e=this.data(),e.length||(e=[]),!c&&0!==c)return this.opts.element.val(""),this.updateSelection([]),this.clearSearch(),d&&this.triggerChange({added:this.data(),removed:e}),void 0;if(this.setVal(c),this.select)this.opts.initSelection(this.select,this.bind(this.updateSelection)),d&&this.triggerChange(this.buildChangeDetails(e,this.data()));else{if(this.opts.initSelection===b)throw new Error("val() cannot be called if initSelection() is not defined");this.opts.initSelection(this.opts.element,function(b){var c=a.map(b,f.id);f.setVal(c),f.updateSelection(b),f.clearSearch(),d&&f.triggerChange(f.buildChangeDetails(e,f.data()))})}this.clearSearch()},onSortStart:function(){if(this.select)throw new Error("Sorting of elements is not supported when attached to instead.");this.search.width(0),this.searchContainer.hide()},onSortEnd:function(){var b=[],c=this;this.searchContainer.show(),this.searchContainer.appendTo(this.searchContainer.parent()),this.resizeSearch(),this.selection.find(".select2-search-choice").each(function(){b.push(c.opts.id(a(this).data("select2-data")))}),this.setVal(b),this.triggerChange()},data:function(b,c){var e,f,d=this;return 0===arguments.length?this.selection.children(".select2-search-choice").map(function(){return a(this).data("select2-data")}).get():(f=this.data(),b||(b=[]),e=a.map(b,function(a){return d.opts.id(a)}),this.setVal(e),this.updateSelection(b),this.clearSearch(),c&&this.triggerChange(this.buildChangeDetails(f,this.data())),void 0)}}),a.fn.select2=function(){var d,e,f,g,h,c=Array.prototype.slice.call(arguments,0),i=["val","destroy","opened","open","close","focus","isFocused","container","dropdown","onSortStart","onSortEnd","enable","disable","readonly","positionDropdown","data","search"],j=["opened","isFocused","container","dropdown"],k=["val","data"],l={search:"externalSearch"};return this.each(function(){if(0===c.length||"object"==typeof c[0])d=0===c.length?{}:a.extend({},c[0]),d.element=a(this),"select"===d.element.get(0).tagName.toLowerCase()?h=d.element.prop("multiple"):(h=d.multiple||!1,"tags"in d&&(d.multiple=h=!0)),e=h?new window.Select2["class"].multi:new window.Select2["class"].single,e.init(d);else{if("string"!=typeof c[0])throw"Invalid arguments to select2 plugin: "+c;if(p(c[0],i)<0)throw"Unknown method: "+c[0];if(g=b,e=a(this).data("select2"),e===b)return;if(f=c[0],"container"===f?g=e.container:"dropdown"===f?g=e.dropdown:(l[f]&&(f=l[f]),g=e[f].apply(e,c.slice(1))),p(c[0],j)>=0||p(c[0],k)>=0&&1==c.length)return!1}}),g===b?this:g},a.fn.select2.defaults={width:"copy",loadMorePadding:0,closeOnSelect:!0,openOnEnter:!0,containerCss:{},dropdownCss:{},containerCssClass:"",dropdownCssClass:"",formatResult:function(a,b,c,d){var e=[];return E(a.text,c.term,e,d),e.join("")},formatSelection:function(a,c,d){return a?d(a.text):b},sortResults:function(a){return a},formatResultCssClass:function(a){return a.css},formatSelectionCssClass:function(){return b},formatMatches:function(a){return a+" results are available, use up and down arrow keys to navigate."},formatNoMatches:function(){return"No matches found"},formatInputTooShort:function(a,b){var c=b-a.length;return"Please enter "+c+" or more character"+(1==c?"":"s")},formatInputTooLong:function(a,b){var c=a.length-b;return"Please delete "+c+" character"+(1==c?"":"s")},formatSelectionTooBig:function(a){return"You can only select "+a+" item"+(1==a?"":"s")},formatLoadMore:function(){return"Loading more results\u2026"},formatSearching:function(){return"Searching\u2026"},minimumResultsForSearch:0,minimumInputLength:0,maximumInputLength:null,maximumSelectionSize:0,id:function(a){return a==b?null:a.id},matcher:function(a,b){return o(""+b).toUpperCase().indexOf(o(""+a).toUpperCase())>=0},separator:",",tokenSeparators:[],tokenizer:M,escapeMarkup:F,blurOnChange:!1,selectOnBlur:!1,adaptContainerCssClass:function(a){return a},adaptDropdownCssClass:function(){return null},nextSearchTerm:function(){return b},searchInputPlaceholder:"",createSearchChoicePosition:"top",shouldFocusInput:function(a){var b="ontouchstart"in window||navigator.msMaxTouchPoints>0;return b?a.opts.minimumResultsForSearch<0?!1:!0:!0}},a.fn.select2.ajaxDefaults={transport:a.ajax,params:{type:"GET",cache:!1,dataType:"json"}},window.Select2={query:{ajax:G,local:H,tags:I},util:{debounce:w,markMatch:E,escapeMarkup:F,stripDiacritics:o},"class":{"abstract":d,single:e,multi:f}}}}(jQuery); \ No newline at end of file diff --git a/apps/files_external/ajax/applicable.php b/apps/files_external/ajax/applicable.php new file mode 100644 index 00000000000..1f0147758e7 --- /dev/null +++ b/apps/files_external/ajax/applicable.php @@ -0,0 +1,26 @@ + $groups, 'users' => $users); + +\OCP\JSON::success($results); diff --git a/apps/files_external/appinfo/routes.php b/apps/files_external/appinfo/routes.php index 0a1e261a189..b852b34c5d3 100644 --- a/apps/files_external/appinfo/routes.php +++ b/apps/files_external/appinfo/routes.php @@ -37,6 +37,9 @@ $this->create('files_external_dropbox', 'ajax/dropbox.php') $this->create('files_external_google', 'ajax/google.php') ->actionInclude('files_external/ajax/google.php'); +$this->create('files_external_list_applicable', '/applicable') + ->actionInclude('files_external/ajax/applicable.php'); + OC_API::register('get', '/apps/files_external/api/v1/mounts', array('\OCA\Files\External\Api', 'getUserMounts'), diff --git a/apps/files_external/css/settings.css b/apps/files_external/css/settings.css index 0da769d992b..b78eec235d6 100644 --- a/apps/files_external/css/settings.css +++ b/apps/files_external/css/settings.css @@ -42,3 +42,19 @@ tr:hover>td.remove>img { visibility:visible; cursor:pointer; } #userMountingBackends { padding-left: 25px; } + +#body-settings .select2-results .select2-result-label { + height: 32px; + padding: 3px; +} +.select2-results .select2-result-label .avatardiv { + display:inline-block; +} +.select2-results .select2-result-label .avatardiv + span { + margin-left: 10px; +} +.select2-results .select2-result-label .avatardiv[data-type="group"] + span { + vertical-align: top; + top: 6px; + position: relative; +} diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index 8a1bb2bec6f..69e99c03c89 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -42,9 +42,11 @@ OC.MountConfig={ } }); if ($('#externalStorage').data('admin') === true) { - var multiselect = $(tr).find('.chzn-select').val(); + var multiselect = $(tr).find('.applicableUsers').select2('val'); if (multiselect == null) { return false; + } else if (multiselect instanceof Array && multiselect.length === 0) { + multiselect.push('all'); } } if (addMountPoint) { @@ -166,8 +168,139 @@ OC.MountConfig={ }; $(document).ready(function() { - $('.chzn-select').chosen(); + //initialize hidden input field with list of users and groups + $('#externalStorage').find('tr:not(#addMountPoint)').each(function(i,tr) { + var applicable = $(tr).find('.applicable'); + if (applicable.length > 0) { + var groups = applicable.data('applicable-groups'); + var groupsId = []; + $.each(groups, function () { + groupsId.push(this+"(group)"); + }); + var users = applicable.data('applicable-users'); + if (users.indexOf('all') > -1) { + $(tr).find('.applicableUsers').val(''); + } else { + $(tr).find('.applicableUsers').val(groupsId.concat(users).join(',')); + } + } + }); + + var userListLimit = 30; + function addSelect2 ($elements) { + if ($elements.length > 0) { + $elements.select2({ + placeholder: t('files_external', 'All users. Type to select user or group.'), + allowClear: true, + multiple: true, + //minimumInputLength: 1, + ajax: { + url: OC.generateUrl('apps/files_external/applicable'), + dataType: 'json', + quietMillis: 100, + data: function (term, page) { // page is the one-based page number tracked by Select2 + return { + pattern: term, //search term + limit: userListLimit, // page size + offset: userListLimit*(page-1), // page number starts with 0 + }; + }, + results: function (data, page) { + if (data.status === "success") { + + var results = []; + var userCount = 0; // users is an object + + // add groups + $.each(data.groups, function(i, group) { + results.push({name:group+'(group)', displayname:group, type:'group' }); + }); + // add users + $.each(data.users, function(id, user) { + userCount++; + results.push({name:id, displayname:user, type:'user' }); + }); + + + var more = (userCount >= userListLimit) || (data.groups.length >= userListLimit); + return {results: results, more: more}; + } else { + //FIXME add error handling + } + } + }, + initSelection: function(element, callback) { + var promises = []; + + var results = []; + + $(element.val().split(",")).each(function (i,userId) { + var def = new $.Deferred(); + promises.push(def.promise()); + + var pos = userId.indexOf('(group)'); + if (pos !== -1) { + //add as group + results.push({name:userId, displayname:userId.substr(0, pos), type:'group'}); + def.resolve(); + } else { + $.ajax(OC.generateUrl('apps/files_external/applicable'), { + data: { + pattern: userId + }, + dataType: "json" + }).done(function(data) { + if (data.status === "success") { + if (data.users[userId]) { + results.push({name:userId, displayname:data.users[userId], type:'user'}); + } + def.resolve(); + } else { + //FIXME add error handling + } + }); + } + }); + $.when.apply(undefined, promises).then(function(){ + callback(results); + }); + }, + id: function(element) { + return element.name; + }, + formatResult: function (element) { + var $result = $('
    '+escapeHTML(element.displayname)+''); + var $div = $result.find('.avatardiv') + .attr('data-type', element.type) + .attr('data-name', element.name) + .attr('data-displayname', element.displayname); + if (element.type === 'group') { + var url = OC.imagePath('core','places/contacts-dark'); // TODO better group icon + $div.html(''); + } + return $result.get(0).outerHTML; + }, + formatSelection: function (element) { + if (element.type === 'group') { + return ''+escapeHTML(element.displayname+' '+t('files_external', '(group)'))+''; + } else { + return ''+escapeHTML(element.displayname)+''; + } + }, + escapeMarkup: function (m) { return m; } // we escape the markup in formatResult and formatSelection + }).on("select2-loaded", function() { + $.each($(".avatardiv"), function(i, div) { + $div = $(div); + if ($div.data('type') === 'user') { + $div.avatar($div.data('name'),32); + } + }) + }); + } + } + addSelect2($('tr:not(#addMountPoint) .applicableUsers')); + $('#externalStorage').on('change', '#selectBackend', function() { var tr = $(this).parent().parent(); $('#externalStorage tbody').append($(tr).clone()); @@ -209,15 +342,11 @@ $(document).ready(function() { return false; } }); - // Reset chosen - var chosen = $(tr).find('.applicable select'); - chosen.parent().find('div').remove(); - chosen.removeAttr('id').removeClass('chzn-done').css({display:'inline-block'}); - chosen.chosen(); $(tr).find('td').last().attr('class', 'remove'); $(tr).find('td').last().removeAttr('style'); $(tr).removeAttr('id'); $(this).remove(); + addSelect2($('tr:not(#addMountPoint) .applicableUsers')); }); function suggestMountPoint(defaultMountPoint) { @@ -270,8 +399,8 @@ $(document).ready(function() { OC.MountConfig.saveStorage($(this).parent().parent().parent()); }); - $('#externalStorage').on('change', '.applicable .chzn-select', function() { - OC.MountConfig.saveStorage($(this).parent().parent()); + $('#externalStorage').on('change', '.applicable', function() { + OC.MountConfig.saveStorage($(this).parent()); }); $('#sslCertificate').on('click', 'td.remove>img', function() { diff --git a/apps/files_external/settings.php b/apps/files_external/settings.php index 5b62b542200..5ef1cb7f14e 100644 --- a/apps/files_external/settings.php +++ b/apps/files_external/settings.php @@ -23,9 +23,10 @@ OC_Util::checkAdminUser(); 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'); + +OCP\Util::addScript('files_external', '../3rdparty/select2/select2'); +OCP\Util::addStyle('files_external', '../3rdparty/select2/select2'); $backends = OC_Mount_Config::getBackends(); $personal_backends = array(); @@ -46,8 +47,6 @@ $tmpl->assign('isAdminPage', true); $tmpl->assign('mounts', OC_Mount_Config::getSystemMountPoints()); $tmpl->assign('backends', $backends); $tmpl->assign('personal_backends', $personal_backends); -$tmpl->assign('groups', OC_Group::getGroups()); -$tmpl->assign('users', OCP\User::getUsers()); $tmpl->assign('userDisplayNames', OC_User::getDisplayNames()); $tmpl->assign('dependencies', OC_Mount_Config::checkDependencies()); $tmpl->assign('allowUserMounting', OCP\Config::getAppValue('files_external', 'allow_user_mounting', 'yes')); diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index 14f8ebc8000..dd283f9ff55 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -88,31 +88,8 @@ print_unescaped(json_encode($mount['applicable']['groups'])); ?>' data-applicable-users=''> - - + + class="remove" style="visibility:hidden;" -- GitLab From 393d136faf76da2b9e3870d9219710d3939c5a83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Thu, 21 Aug 2014 15:11:21 +0200 Subject: [PATCH 06/56] fix deletion of shares --- apps/files_external/js/settings.js | 43 +++++++++++++++--------------- 1 file changed, 22 insertions(+), 21 deletions(-) diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index 69e99c03c89..ebc95d64cfd 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -11,6 +11,14 @@ function updateStatus(statusEl, result){ } } +function getSelection($row) { + var values = $row.find('.applicableUsers').select2('val'); + if (!values || values.length === 0) { + values = ['all']; + } + return values; +} + OC.MountConfig={ saveStorage:function(tr, callback) { var mountPoint = $(tr).find('.mountPoint input').val(); @@ -42,12 +50,7 @@ OC.MountConfig={ } }); if ($('#externalStorage').data('admin') === true) { - var multiselect = $(tr).find('.applicableUsers').select2('val'); - if (multiselect == null) { - return false; - } else if (multiselect instanceof Array && multiselect.length === 0) { - multiselect.push('all'); - } + var multiselect = getSelection($(tr)); } if (addMountPoint) { var status = false; @@ -202,7 +205,7 @@ $(document).ready(function() { return { pattern: term, //search term limit: userListLimit, // page size - offset: userListLimit*(page-1), // page number starts with 0 + offset: userListLimit*(page-1) // page number starts with 0 }; }, results: function (data, page) { @@ -417,20 +420,18 @@ $(document).ready(function() { if ($('#externalStorage').data('admin') === true) { var isPersonal = false; - var multiselect = $(tr).find('.chzn-select').val(); - if (multiselect != null) { - $.each(multiselect, function(index, value) { - var pos = value.indexOf('(group)'); - if (pos != -1) { - var mountType = 'group'; - var applicable = value.substr(0, pos); - } else { - var mountType = 'user'; - var applicable = value; - } - $.post(OC.filePath('files_external', 'ajax', 'removeMountPoint.php'), { mountPoint: mountPoint, mountType: mountType, applicable: applicable, isPersonal: isPersonal }); - }); - } + var multiselect = getSelection($(tr)); + $.each(multiselect, function(index, value) { + var pos = value.indexOf('(group)'); + if (pos != -1) { + var mountType = 'group'; + var applicable = value.substr(0, pos); + } else { + var mountType = 'user'; + var applicable = value; + } + $.post(OC.filePath('files_external', 'ajax', 'removeMountPoint.php'), { mountPoint: mountPoint, mountType: mountType, applicable: applicable, isPersonal: isPersonal }); + }); } else { var mountType = 'user'; var applicable = OC.currentUser; -- GitLab From e09e11b93ec609e63d81f18f78b94792e875ee90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Fri, 22 Aug 2014 11:32:37 +0200 Subject: [PATCH 07/56] no need to load user display names --- apps/files_external/settings.php | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/files_external/settings.php b/apps/files_external/settings.php index 5ef1cb7f14e..4c87360486a 100644 --- a/apps/files_external/settings.php +++ b/apps/files_external/settings.php @@ -47,7 +47,6 @@ $tmpl->assign('isAdminPage', true); $tmpl->assign('mounts', OC_Mount_Config::getSystemMountPoints()); $tmpl->assign('backends', $backends); $tmpl->assign('personal_backends', $personal_backends); -$tmpl->assign('userDisplayNames', OC_User::getDisplayNames()); $tmpl->assign('dependencies', OC_Mount_Config::checkDependencies()); $tmpl->assign('allowUserMounting', OCP\Config::getAppValue('files_external', 'allow_user_mounting', 'yes')); return $tmpl->fetchPage(); -- GitLab From 91ba1b345eff63b79f7111385d1e06e36911a589 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Fri, 22 Aug 2014 16:06:46 +0200 Subject: [PATCH 08/56] add lookup route for displaynames --- core/routes.php | 4 ++++ core/user/controller.php | 31 +++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 core/user/controller.php diff --git a/core/routes.php b/core/routes.php index ff79c450508..37eb2f8a56c 100644 --- a/core/routes.php +++ b/core/routes.php @@ -35,6 +35,10 @@ $this->create('core_ajax_share', '/core/ajax/share.php') // Translations $this->create('core_ajax_translations', '/core/ajax/translations.php') ->actionInclude('core/ajax/translations.php'); +// User display names +$this->create('core_user_displaynames', '/displaynames') + ->get() + ->action('OC\Core\User\Controller', 'getDisplayNames'); // Tags $this->create('core_tags_tags', '/tags/{type}') ->get() diff --git a/core/user/controller.php b/core/user/controller.php new file mode 100644 index 00000000000..cbcbd936183 --- /dev/null +++ b/core/user/controller.php @@ -0,0 +1,31 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Core\User; + +class Controller { + public static function getDisplayNames($args) { + \OC_JSON::checkLoggedIn(); + \OC_JSON::callCheck(); + + $users = $_GET['users']; + $result = array(); + $userManager = \OC::$server->getUserManager(); + + foreach ($users as $user) { + $userObject = $userManager->get($user); + if (is_object($userObject)) { + $result[$user] = $userObject->getDisplayName(); + } else { + $result[$user] = false; + } + } + + \OC_JSON::success(array('users'=>$result)); + } +} -- GitLab From 6202ef3258c7db707f32c0bcaa17552b92fa15eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Fri, 22 Aug 2014 16:07:48 +0200 Subject: [PATCH 09/56] use displayname lookup route in files_external settings --- apps/files_external/js/settings.js | 45 ++++++++++-------------------- 1 file changed, 14 insertions(+), 31 deletions(-) diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index ebc95d64cfd..27ed0254dd3 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -233,41 +233,24 @@ $(document).ready(function() { } }, initSelection: function(element, callback) { - - var promises = []; - - var results = []; - - $(element.val().split(",")).each(function (i,userId) { - var def = new $.Deferred(); - promises.push(def.promise()); - - var pos = userId.indexOf('(group)'); - if (pos !== -1) { - //add as group - results.push({name:userId, displayname:userId.substr(0, pos), type:'group'}); - def.resolve(); - } else { - $.ajax(OC.generateUrl('apps/files_external/applicable'), { - data: { - pattern: userId - }, - dataType: "json" - }).done(function(data) { - if (data.status === "success") { - if (data.users[userId]) { - results.push({name:userId, displayname:data.users[userId], type:'user'}); - } - def.resolve(); - } else { - //FIXME add error handling + $.ajax(OC.generateUrl('displaynames'), { + data: { + users: element.val().split(",") + }, + dataType: "json" + }).done(function(data) { + var results = []; + if (data.status === "success") { + $.each(data.users, function(user, displayname) { + if (displayname !== false) { + results.push({name:user, displayname:displayname, type:'user'}); } }); + callback(results); + } else { + //FIXME add error handling } }); - $.when.apply(undefined, promises).then(function(){ - callback(results); - }); }, id: function(element) { return element.name; -- GitLab From f33312f76773a46acf084dd93830c739e44e9962 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Fri, 22 Aug 2014 18:16:55 +0200 Subject: [PATCH 10/56] Use AppFramework instead of custom controller --- apps/files_external/js/settings.js | 13 +++-- core/{lostpassword => }/application.php | 11 ++++- core/routes.php | 7 +-- core/user/controller.php | 31 ------------ core/user/usercontroller.php | 66 +++++++++++++++++++++++++ 5 files changed, 88 insertions(+), 40 deletions(-) rename core/{lostpassword => }/application.php (78%) delete mode 100644 core/user/controller.php create mode 100644 core/user/usercontroller.php diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index 27ed0254dd3..6c287d6a760 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -233,10 +233,17 @@ $(document).ready(function() { } }, initSelection: function(element, callback) { + var users = {}; + users['users'] = []; + var toSplit = element.val().split(","); + for (var i = 0; i < toSplit.length; i++) { + users['users'].push(toSplit[i]); + } + $.ajax(OC.generateUrl('displaynames'), { - data: { - users: element.val().split(",") - }, + type: 'POST', + contentType: 'application/json', + data: JSON.stringify(users), dataType: "json" }).done(function(data) { var results = []; diff --git a/core/lostpassword/application.php b/core/application.php similarity index 78% rename from core/lostpassword/application.php rename to core/application.php index ba2f3fc633b..33801847758 100644 --- a/core/lostpassword/application.php +++ b/core/application.php @@ -8,10 +8,11 @@ * See the COPYING-README file. */ -namespace OC\Core\LostPassword; +namespace OC\Core; use \OCP\AppFramework\App; use OC\Core\LostPassword\Controller\LostController; +use OC\Core\User\UserController; class Application extends App { @@ -38,6 +39,14 @@ class Application extends App { \OC_App::isEnabled('files_encryption') ); }); + $container->registerService('UserController', function($c) { + return new UserController( + $c->query('AppName'), + $c->query('Request'), + $c->query('ServerContainer')->getUserManager(), + new \OC_Defaults() + ); + }); } diff --git a/core/routes.php b/core/routes.php index 37eb2f8a56c..28a3680dd91 100644 --- a/core/routes.php +++ b/core/routes.php @@ -6,13 +6,14 @@ * See the COPYING-README file. */ -use OC\Core\LostPassword\Application; +use OC\Core\Application; $application = new Application(); $application->registerRoutes($this, array('routes' => array( array('name' => 'lost#email', 'url' => '/lostpassword/email', 'verb' => 'POST'), array('name' => 'lost#resetform', 'url' => '/lostpassword/reset/form/{token}/{userId}', 'verb' => 'GET'), array('name' => 'lost#setPassword', 'url' => '/lostpassword/set/{token}/{userId}', 'verb' => 'POST'), + array('name' => 'user#getDisplayNames', 'url' => '/displaynames', 'verb' => 'POST'), ) )); @@ -35,10 +36,6 @@ $this->create('core_ajax_share', '/core/ajax/share.php') // Translations $this->create('core_ajax_translations', '/core/ajax/translations.php') ->actionInclude('core/ajax/translations.php'); -// User display names -$this->create('core_user_displaynames', '/displaynames') - ->get() - ->action('OC\Core\User\Controller', 'getDisplayNames'); // Tags $this->create('core_tags_tags', '/tags/{type}') ->get() diff --git a/core/user/controller.php b/core/user/controller.php deleted file mode 100644 index cbcbd936183..00000000000 --- a/core/user/controller.php +++ /dev/null @@ -1,31 +0,0 @@ - - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. - */ - -namespace OC\Core\User; - -class Controller { - public static function getDisplayNames($args) { - \OC_JSON::checkLoggedIn(); - \OC_JSON::callCheck(); - - $users = $_GET['users']; - $result = array(); - $userManager = \OC::$server->getUserManager(); - - foreach ($users as $user) { - $userObject = $userManager->get($user); - if (is_object($userObject)) { - $result[$user] = $userObject->getDisplayName(); - } else { - $result[$user] = false; - } - } - - \OC_JSON::success(array('users'=>$result)); - } -} diff --git a/core/user/usercontroller.php b/core/user/usercontroller.php new file mode 100644 index 00000000000..2570e3b5b05 --- /dev/null +++ b/core/user/usercontroller.php @@ -0,0 +1,66 @@ + + * Copyright (c) 2014 Lukas Reschke + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Core\User; + +use \OCP\AppFramework\Controller; +use \OCP\AppFramework\Http\JSONResponse; +use \OCP\IRequest; + +class UserController extends Controller { + /** + * @var \OCP\IUserManager + */ + protected $userManager; + + /** + * @var \OC_Defaults + */ + protected $defaults; + + public function __construct($appName, + IRequest $request, + $userManager, + $defaults + ) { + parent::__construct($appName, $request); + $this->userManager = $userManager; + $this->defaults = $defaults; + } + + /** + * Lookup user display names + * + * @NoAdminRequired + * + * @param array $users + * + * @return JSONResponse + */ + public function getDisplayNames($users) { + $result = array(); + + foreach ($users as $user) { + $userObject = $this->userManager->get($user); + if (is_object($userObject)) { + $result[$user] = $userObject->getDisplayName(); + } else { + $result[$user] = $user; + } + } + + $json = array( + 'users' => $result, + 'status' => 'success' + ); + + return new JSONResponse($json); + + } +} -- GitLab From ca7e4c8c67c531c39d7e2dd343709413a3788ce9 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Tue, 26 Aug 2014 10:20:51 +0200 Subject: [PATCH 11/56] Add isAppstoreEnabled instead of hijacking the URL --- lib/private/ocsclient.php | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/lib/private/ocsclient.php b/lib/private/ocsclient.php index d173f39eba7..dc147dea0c9 100644 --- a/lib/private/ocsclient.php +++ b/lib/private/ocsclient.php @@ -28,6 +28,18 @@ class OC_OCSClient{ + /** + * Returns whether the AppStore is enabled (i.e. because the AppStore is disabled for EE) + * @return bool + */ + protected static function isAppstoreEnabled() { + if(OC::$server->getConfig()->getSystemValue('appstoreenabled', true) === false OR OC_Util::getEditionString() !== '') { + return false; + } + + return true; + } + /** * Get the url of the OCS AppStore server. * @return string of the AppStore server @@ -36,10 +48,9 @@ class OC_OCSClient{ * to set it in the config file or it will fallback to the default */ private static function getAppStoreURL() { - return \OC::$server->getConfig()->getSystemValue('appstoreurl', 'https://api.owncloud.com/v1'); + return OC::$server->getConfig()->getSystemValue('appstoreurl', 'https://api.owncloud.com/v1'); } - /** * Get the content of an OCS url call. * @return string of the response @@ -58,7 +69,7 @@ class OC_OCSClient{ * This function returns a list of all the application categories on the OCS server */ public static function getCategories() { - if(OC_Config::getValue('appstoreenabled', true)==false) { + if(!self::isAppstoreEnabled()) { return null; } $url=OC_OCSClient::getAppStoreURL().'/content/categories'; @@ -94,7 +105,7 @@ class OC_OCSClient{ * @param string $filter */ public static function getApplications($categories, $page, $filter) { - if(OC_Config::getValue('appstoreenabled', true)==false) { + if(!self::isAppstoreEnabled()) { return(array()); } @@ -149,7 +160,7 @@ class OC_OCSClient{ * This function returns an applications from the OCS server */ public static function getApplication($id) { - if(OC_Config::getValue('appstoreenabled', true)==false) { + if(!self::isAppstoreEnabled()) { return null; } $url=OC_OCSClient::getAppStoreURL().'/content/data/'.urlencode($id); @@ -197,7 +208,7 @@ class OC_OCSClient{ * @param integer $item */ public static function getApplicationDownload($id, $item) { - if(OC_Config::getValue('appstoreenabled', true)==false) { + if(!self::isAppstoreEnabled()) { return null; } $url=OC_OCSClient::getAppStoreURL().'/content/download/'.urlencode($id).'/'.urlencode($item); -- GitLab From f82b788ba5de3db0c5ac7fdc00fe137048778dd9 Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Tue, 26 Aug 2014 17:39:15 +0200 Subject: [PATCH 12/56] add moment.js --- core/js/moment.js | 9083 +++++++++++++++++++++++++++++++++++++++++++++ lib/base.php | 1 + 2 files changed, 9084 insertions(+) create mode 100644 core/js/moment.js diff --git a/core/js/moment.js b/core/js/moment.js new file mode 100644 index 00000000000..6f1dcc5dfab --- /dev/null +++ b/core/js/moment.js @@ -0,0 +1,9083 @@ +//! moment.js +//! version : 2.8.2 +//! authors : Tim Wood, Iskren Chernev, Moment.js contributors +//! license : MIT +//! momentjs.com + +(function (undefined) { + /************************************ + Constants + ************************************/ + + var moment, + VERSION = '2.8.2', + // the global-scope this is NOT the global object in Node.js + globalScope = typeof global !== 'undefined' ? global : this, + oldGlobalMoment, + round = Math.round, + hasOwnProperty = Object.prototype.hasOwnProperty, + i, + + YEAR = 0, + MONTH = 1, + DATE = 2, + HOUR = 3, + MINUTE = 4, + SECOND = 5, + MILLISECOND = 6, + + // internal storage for locale config files + locales = {}, + + // extra moment internal properties (plugins register props here) + momentProperties = [], + + // check for nodeJS + hasModule = (typeof module !== 'undefined' && module.exports), + + // ASP.NET json date format regex + aspNetJsonRegex = /^\/?Date\((\-?\d+)/i, + aspNetTimeSpanJsonRegex = /(\-)?(?:(\d*)\.)?(\d+)\:(\d+)(?:\:(\d+)\.?(\d{3})?)?/, + + // from http://docs.closure-library.googlecode.com/git/closure_goog_date_date.js.source.html + // somewhat more in line with 4.4.3.2 2004 spec, but allows decimal anywhere + isoDurationRegex = /^(-)?P(?:(?:([0-9,.]*)Y)?(?:([0-9,.]*)M)?(?:([0-9,.]*)D)?(?:T(?:([0-9,.]*)H)?(?:([0-9,.]*)M)?(?:([0-9,.]*)S)?)?|([0-9,.]*)W)$/, + + // format tokens + formattingTokens = /(\[[^\[]*\])|(\\)?(Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Q|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|mm?|ss?|S{1,4}|X|zz?|ZZ?|.)/g, + localFormattingTokens = /(\[[^\[]*\])|(\\)?(LT|LL?L?L?|l{1,4})/g, + + // parsing token regexes + parseTokenOneOrTwoDigits = /\d\d?/, // 0 - 99 + parseTokenOneToThreeDigits = /\d{1,3}/, // 0 - 999 + parseTokenOneToFourDigits = /\d{1,4}/, // 0 - 9999 + parseTokenOneToSixDigits = /[+\-]?\d{1,6}/, // -999,999 - 999,999 + parseTokenDigits = /\d+/, // nonzero number of digits + parseTokenWord = /[0-9]*['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+|[\u0600-\u06FF\/]+(\s*?[\u0600-\u06FF]+){1,2}/i, // any word (or two) characters or numbers including two/three word month in arabic. + parseTokenTimezone = /Z|[\+\-]\d\d:?\d\d/gi, // +00:00 -00:00 +0000 -0000 or Z + parseTokenT = /T/i, // T (ISO separator) + parseTokenTimestampMs = /[\+\-]?\d+(\.\d{1,3})?/, // 123456789 123456789.123 + parseTokenOrdinal = /\d{1,2}/, + + //strict parsing regexes + parseTokenOneDigit = /\d/, // 0 - 9 + parseTokenTwoDigits = /\d\d/, // 00 - 99 + parseTokenThreeDigits = /\d{3}/, // 000 - 999 + parseTokenFourDigits = /\d{4}/, // 0000 - 9999 + parseTokenSixDigits = /[+-]?\d{6}/, // -999,999 - 999,999 + parseTokenSignedNumber = /[+-]?\d+/, // -inf - inf + + // iso 8601 regex + // 0000-00-00 0000-W00 or 0000-W00-0 + T + 00 or 00:00 or 00:00:00 or 00:00:00.000 + +00:00 or +0000 or +00) + isoRegex = /^\s*(?:[+-]\d{6}|\d{4})-(?:(\d\d-\d\d)|(W\d\d$)|(W\d\d-\d)|(\d\d\d))((T| )(\d\d(:\d\d(:\d\d(\.\d+)?)?)?)?([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/, + + isoFormat = 'YYYY-MM-DDTHH:mm:ssZ', + + isoDates = [ + ['YYYYYY-MM-DD', /[+-]\d{6}-\d{2}-\d{2}/], + ['YYYY-MM-DD', /\d{4}-\d{2}-\d{2}/], + ['GGGG-[W]WW-E', /\d{4}-W\d{2}-\d/], + ['GGGG-[W]WW', /\d{4}-W\d{2}/], + ['YYYY-DDD', /\d{4}-\d{3}/] + ], + + // iso time formats and regexes + isoTimes = [ + ['HH:mm:ss.SSSS', /(T| )\d\d:\d\d:\d\d\.\d+/], + ['HH:mm:ss', /(T| )\d\d:\d\d:\d\d/], + ['HH:mm', /(T| )\d\d:\d\d/], + ['HH', /(T| )\d\d/] + ], + + // timezone chunker '+10:00' > ['10', '00'] or '-1530' > ['-15', '30'] + parseTimezoneChunker = /([\+\-]|\d\d)/gi, + + // getter and setter names + proxyGettersAndSetters = 'Date|Hours|Minutes|Seconds|Milliseconds'.split('|'), + unitMillisecondFactors = { + 'Milliseconds' : 1, + 'Seconds' : 1e3, + 'Minutes' : 6e4, + 'Hours' : 36e5, + 'Days' : 864e5, + 'Months' : 2592e6, + 'Years' : 31536e6 + }, + + unitAliases = { + ms : 'millisecond', + s : 'second', + m : 'minute', + h : 'hour', + d : 'day', + D : 'date', + w : 'week', + W : 'isoWeek', + M : 'month', + Q : 'quarter', + y : 'year', + DDD : 'dayOfYear', + e : 'weekday', + E : 'isoWeekday', + gg: 'weekYear', + GG: 'isoWeekYear' + }, + + camelFunctions = { + dayofyear : 'dayOfYear', + isoweekday : 'isoWeekday', + isoweek : 'isoWeek', + weekyear : 'weekYear', + isoweekyear : 'isoWeekYear' + }, + + // format function strings + formatFunctions = {}, + + // default relative time thresholds + relativeTimeThresholds = { + s: 45, // seconds to minute + m: 45, // minutes to hour + h: 22, // hours to day + d: 26, // days to month + M: 11 // months to year + }, + + // tokens to ordinalize and pad + ordinalizeTokens = 'DDD w W M D d'.split(' '), + paddedTokens = 'M D H h m s w W'.split(' '), + + formatTokenFunctions = { + M : function () { + return this.month() + 1; + }, + MMM : function (format) { + return this.localeData().monthsShort(this, format); + }, + MMMM : function (format) { + return this.localeData().months(this, format); + }, + D : function () { + return this.date(); + }, + DDD : function () { + return this.dayOfYear(); + }, + d : function () { + return this.day(); + }, + dd : function (format) { + return this.localeData().weekdaysMin(this, format); + }, + ddd : function (format) { + return this.localeData().weekdaysShort(this, format); + }, + dddd : function (format) { + return this.localeData().weekdays(this, format); + }, + w : function () { + return this.week(); + }, + W : function () { + return this.isoWeek(); + }, + YY : function () { + return leftZeroFill(this.year() % 100, 2); + }, + YYYY : function () { + return leftZeroFill(this.year(), 4); + }, + YYYYY : function () { + return leftZeroFill(this.year(), 5); + }, + YYYYYY : function () { + var y = this.year(), sign = y >= 0 ? '+' : '-'; + return sign + leftZeroFill(Math.abs(y), 6); + }, + gg : function () { + return leftZeroFill(this.weekYear() % 100, 2); + }, + gggg : function () { + return leftZeroFill(this.weekYear(), 4); + }, + ggggg : function () { + return leftZeroFill(this.weekYear(), 5); + }, + GG : function () { + return leftZeroFill(this.isoWeekYear() % 100, 2); + }, + GGGG : function () { + return leftZeroFill(this.isoWeekYear(), 4); + }, + GGGGG : function () { + return leftZeroFill(this.isoWeekYear(), 5); + }, + e : function () { + return this.weekday(); + }, + E : function () { + return this.isoWeekday(); + }, + a : function () { + return this.localeData().meridiem(this.hours(), this.minutes(), true); + }, + A : function () { + return this.localeData().meridiem(this.hours(), this.minutes(), false); + }, + H : function () { + return this.hours(); + }, + h : function () { + return this.hours() % 12 || 12; + }, + m : function () { + return this.minutes(); + }, + s : function () { + return this.seconds(); + }, + S : function () { + return toInt(this.milliseconds() / 100); + }, + SS : function () { + return leftZeroFill(toInt(this.milliseconds() / 10), 2); + }, + SSS : function () { + return leftZeroFill(this.milliseconds(), 3); + }, + SSSS : function () { + return leftZeroFill(this.milliseconds(), 3); + }, + Z : function () { + var a = -this.zone(), + b = '+'; + if (a < 0) { + a = -a; + b = '-'; + } + return b + leftZeroFill(toInt(a / 60), 2) + ':' + leftZeroFill(toInt(a) % 60, 2); + }, + ZZ : function () { + var a = -this.zone(), + b = '+'; + if (a < 0) { + a = -a; + b = '-'; + } + return b + leftZeroFill(toInt(a / 60), 2) + leftZeroFill(toInt(a) % 60, 2); + }, + z : function () { + return this.zoneAbbr(); + }, + zz : function () { + return this.zoneName(); + }, + X : function () { + return this.unix(); + }, + Q : function () { + return this.quarter(); + } + }, + + deprecations = {}, + + lists = ['months', 'monthsShort', 'weekdays', 'weekdaysShort', 'weekdaysMin']; + + // Pick the first defined of two or three arguments. dfl comes from + // default. + function dfl(a, b, c) { + switch (arguments.length) { + case 2: return a != null ? a : b; + case 3: return a != null ? a : b != null ? b : c; + default: throw new Error('Implement me'); + } + } + + function hasOwnProp(a, b) { + return hasOwnProperty.call(a, b); + } + + function defaultParsingFlags() { + // We need to deep clone this object, and es5 standard is not very + // helpful. + return { + empty : false, + unusedTokens : [], + unusedInput : [], + overflow : -2, + charsLeftOver : 0, + nullInput : false, + invalidMonth : null, + invalidFormat : false, + userInvalidated : false, + iso: false + }; + } + + function printMsg(msg) { + if (moment.suppressDeprecationWarnings === false && + typeof console !== 'undefined' && console.warn) { + console.warn('Deprecation warning: ' + msg); + } + } + + function deprecate(msg, fn) { + var firstTime = true; + return extend(function () { + if (firstTime) { + printMsg(msg); + firstTime = false; + } + return fn.apply(this, arguments); + }, fn); + } + + function deprecateSimple(name, msg) { + if (!deprecations[name]) { + printMsg(msg); + deprecations[name] = true; + } + } + + function padToken(func, count) { + return function (a) { + return leftZeroFill(func.call(this, a), count); + }; + } + function ordinalizeToken(func, period) { + return function (a) { + return this.localeData().ordinal(func.call(this, a), period); + }; + } + + while (ordinalizeTokens.length) { + i = ordinalizeTokens.pop(); + formatTokenFunctions[i + 'o'] = ordinalizeToken(formatTokenFunctions[i], i); + } + while (paddedTokens.length) { + i = paddedTokens.pop(); + formatTokenFunctions[i + i] = padToken(formatTokenFunctions[i], 2); + } + formatTokenFunctions.DDDD = padToken(formatTokenFunctions.DDD, 3); + + + /************************************ + Constructors + ************************************/ + + function Locale() { + } + + // Moment prototype object + function Moment(config, skipOverflow) { + if (skipOverflow !== false) { + checkOverflow(config); + } + copyConfig(this, config); + this._d = new Date(+config._d); + } + + // Duration Constructor + function Duration(duration) { + var normalizedInput = normalizeObjectUnits(duration), + years = normalizedInput.year || 0, + quarters = normalizedInput.quarter || 0, + months = normalizedInput.month || 0, + weeks = normalizedInput.week || 0, + days = normalizedInput.day || 0, + hours = normalizedInput.hour || 0, + minutes = normalizedInput.minute || 0, + seconds = normalizedInput.second || 0, + milliseconds = normalizedInput.millisecond || 0; + + // representation for dateAddRemove + this._milliseconds = +milliseconds + + seconds * 1e3 + // 1000 + minutes * 6e4 + // 1000 * 60 + hours * 36e5; // 1000 * 60 * 60 + // Because of dateAddRemove treats 24 hours as different from a + // day when working around DST, we need to store them separately + this._days = +days + + weeks * 7; + // It is impossible translate months into days without knowing + // which months you are are talking about, so we have to store + // it separately. + this._months = +months + + quarters * 3 + + years * 12; + + this._data = {}; + + this._locale = moment.localeData(); + + this._bubble(); + } + + /************************************ + Helpers + ************************************/ + + + function extend(a, b) { + for (var i in b) { + if (hasOwnProp(b, i)) { + a[i] = b[i]; + } + } + + if (hasOwnProp(b, 'toString')) { + a.toString = b.toString; + } + + if (hasOwnProp(b, 'valueOf')) { + a.valueOf = b.valueOf; + } + + return a; + } + + function copyConfig(to, from) { + var i, prop, val; + + if (typeof from._isAMomentObject !== 'undefined') { + to._isAMomentObject = from._isAMomentObject; + } + if (typeof from._i !== 'undefined') { + to._i = from._i; + } + if (typeof from._f !== 'undefined') { + to._f = from._f; + } + if (typeof from._l !== 'undefined') { + to._l = from._l; + } + if (typeof from._strict !== 'undefined') { + to._strict = from._strict; + } + if (typeof from._tzm !== 'undefined') { + to._tzm = from._tzm; + } + if (typeof from._isUTC !== 'undefined') { + to._isUTC = from._isUTC; + } + if (typeof from._offset !== 'undefined') { + to._offset = from._offset; + } + if (typeof from._pf !== 'undefined') { + to._pf = from._pf; + } + if (typeof from._locale !== 'undefined') { + to._locale = from._locale; + } + + if (momentProperties.length > 0) { + for (i in momentProperties) { + prop = momentProperties[i]; + val = from[prop]; + if (typeof val !== 'undefined') { + to[prop] = val; + } + } + } + + return to; + } + + function absRound(number) { + if (number < 0) { + return Math.ceil(number); + } else { + return Math.floor(number); + } + } + + // left zero fill a number + // see http://jsperf.com/left-zero-filling for performance comparison + function leftZeroFill(number, targetLength, forceSign) { + var output = '' + Math.abs(number), + sign = number >= 0; + + while (output.length < targetLength) { + output = '0' + output; + } + return (sign ? (forceSign ? '+' : '') : '-') + output; + } + + function positiveMomentsDifference(base, other) { + var res = {milliseconds: 0, months: 0}; + + res.months = other.month() - base.month() + + (other.year() - base.year()) * 12; + if (base.clone().add(res.months, 'M').isAfter(other)) { + --res.months; + } + + res.milliseconds = +other - +(base.clone().add(res.months, 'M')); + + return res; + } + + function momentsDifference(base, other) { + var res; + other = makeAs(other, base); + if (base.isBefore(other)) { + res = positiveMomentsDifference(base, other); + } else { + res = positiveMomentsDifference(other, base); + res.milliseconds = -res.milliseconds; + res.months = -res.months; + } + + return res; + } + + // TODO: remove 'name' arg after deprecation is removed + function createAdder(direction, name) { + return function (val, period) { + var dur, tmp; + //invert the arguments, but complain about it + if (period !== null && !isNaN(+period)) { + deprecateSimple(name, 'moment().' + name + '(period, number) is deprecated. Please use moment().' + name + '(number, period).'); + tmp = val; val = period; period = tmp; + } + + val = typeof val === 'string' ? +val : val; + dur = moment.duration(val, period); + addOrSubtractDurationFromMoment(this, dur, direction); + return this; + }; + } + + function addOrSubtractDurationFromMoment(mom, duration, isAdding, updateOffset) { + var milliseconds = duration._milliseconds, + days = duration._days, + months = duration._months; + updateOffset = updateOffset == null ? true : updateOffset; + + if (milliseconds) { + mom._d.setTime(+mom._d + milliseconds * isAdding); + } + if (days) { + rawSetter(mom, 'Date', rawGetter(mom, 'Date') + days * isAdding); + } + if (months) { + rawMonthSetter(mom, rawGetter(mom, 'Month') + months * isAdding); + } + if (updateOffset) { + moment.updateOffset(mom, days || months); + } + } + + // check if is an array + function isArray(input) { + return Object.prototype.toString.call(input) === '[object Array]'; + } + + function isDate(input) { + return Object.prototype.toString.call(input) === '[object Date]' || + input instanceof Date; + } + + // compare two arrays, return the number of differences + function compareArrays(array1, array2, dontConvert) { + var len = Math.min(array1.length, array2.length), + lengthDiff = Math.abs(array1.length - array2.length), + diffs = 0, + i; + for (i = 0; i < len; i++) { + if ((dontConvert && array1[i] !== array2[i]) || + (!dontConvert && toInt(array1[i]) !== toInt(array2[i]))) { + diffs++; + } + } + return diffs + lengthDiff; + } + + function normalizeUnits(units) { + if (units) { + var lowered = units.toLowerCase().replace(/(.)s$/, '$1'); + units = unitAliases[units] || camelFunctions[lowered] || lowered; + } + return units; + } + + function normalizeObjectUnits(inputObject) { + var normalizedInput = {}, + normalizedProp, + prop; + + for (prop in inputObject) { + if (hasOwnProp(inputObject, prop)) { + normalizedProp = normalizeUnits(prop); + if (normalizedProp) { + normalizedInput[normalizedProp] = inputObject[prop]; + } + } + } + + return normalizedInput; + } + + function makeList(field) { + var count, setter; + + if (field.indexOf('week') === 0) { + count = 7; + setter = 'day'; + } + else if (field.indexOf('month') === 0) { + count = 12; + setter = 'month'; + } + else { + return; + } + + moment[field] = function (format, index) { + var i, getter, + method = moment._locale[field], + results = []; + + if (typeof format === 'number') { + index = format; + format = undefined; + } + + getter = function (i) { + var m = moment().utc().set(setter, i); + return method.call(moment._locale, m, format || ''); + }; + + if (index != null) { + return getter(index); + } + else { + for (i = 0; i < count; i++) { + results.push(getter(i)); + } + return results; + } + }; + } + + function toInt(argumentForCoercion) { + var coercedNumber = +argumentForCoercion, + value = 0; + + if (coercedNumber !== 0 && isFinite(coercedNumber)) { + if (coercedNumber >= 0) { + value = Math.floor(coercedNumber); + } else { + value = Math.ceil(coercedNumber); + } + } + + return value; + } + + function daysInMonth(year, month) { + return new Date(Date.UTC(year, month + 1, 0)).getUTCDate(); + } + + function weeksInYear(year, dow, doy) { + return weekOfYear(moment([year, 11, 31 + dow - doy]), dow, doy).week; + } + + function daysInYear(year) { + return isLeapYear(year) ? 366 : 365; + } + + function isLeapYear(year) { + return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0; + } + + function checkOverflow(m) { + var overflow; + if (m._a && m._pf.overflow === -2) { + overflow = + m._a[MONTH] < 0 || m._a[MONTH] > 11 ? MONTH : + m._a[DATE] < 1 || m._a[DATE] > daysInMonth(m._a[YEAR], m._a[MONTH]) ? DATE : + m._a[HOUR] < 0 || m._a[HOUR] > 23 ? HOUR : + m._a[MINUTE] < 0 || m._a[MINUTE] > 59 ? MINUTE : + m._a[SECOND] < 0 || m._a[SECOND] > 59 ? SECOND : + m._a[MILLISECOND] < 0 || m._a[MILLISECOND] > 999 ? MILLISECOND : + -1; + + if (m._pf._overflowDayOfYear && (overflow < YEAR || overflow > DATE)) { + overflow = DATE; + } + + m._pf.overflow = overflow; + } + } + + function isValid(m) { + if (m._isValid == null) { + m._isValid = !isNaN(m._d.getTime()) && + m._pf.overflow < 0 && + !m._pf.empty && + !m._pf.invalidMonth && + !m._pf.nullInput && + !m._pf.invalidFormat && + !m._pf.userInvalidated; + + if (m._strict) { + m._isValid = m._isValid && + m._pf.charsLeftOver === 0 && + m._pf.unusedTokens.length === 0; + } + } + return m._isValid; + } + + function normalizeLocale(key) { + return key ? key.toLowerCase().replace('_', '-') : key; + } + + // pick the locale from the array + // try ['en-au', 'en-gb'] as 'en-au', 'en-gb', 'en', as in move through the list trying each + // substring from most specific to least, but move to the next array item if it's a more specific variant than the current root + function chooseLocale(names) { + var i = 0, j, next, locale, split; + + while (i < names.length) { + split = normalizeLocale(names[i]).split('-'); + j = split.length; + next = normalizeLocale(names[i + 1]); + next = next ? next.split('-') : null; + while (j > 0) { + locale = loadLocale(split.slice(0, j).join('-')); + if (locale) { + return locale; + } + if (next && next.length >= j && compareArrays(split, next, true) >= j - 1) { + //the next array item is better than a shallower substring of this one + break; + } + j--; + } + i++; + } + return null; + } + + function loadLocale(name) { + var oldLocale = null; + if (!locales[name] && hasModule) { + try { + oldLocale = moment.locale(); + require('./locale/' + name); + // because defineLocale currently also sets the global locale, we want to undo that for lazy loaded locales + moment.locale(oldLocale); + } catch (e) { } + } + return locales[name]; + } + + // Return a moment from input, that is local/utc/zone equivalent to model. + function makeAs(input, model) { + return model._isUTC ? moment(input).zone(model._offset || 0) : + moment(input).local(); + } + + /************************************ + Locale + ************************************/ + + + extend(Locale.prototype, { + + set : function (config) { + var prop, i; + for (i in config) { + prop = config[i]; + if (typeof prop === 'function') { + this[i] = prop; + } else { + this['_' + i] = prop; + } + } + }, + + _months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'), + months : function (m) { + return this._months[m.month()]; + }, + + _monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), + monthsShort : function (m) { + return this._monthsShort[m.month()]; + }, + + monthsParse : function (monthName) { + var i, mom, regex; + + if (!this._monthsParse) { + this._monthsParse = []; + } + + for (i = 0; i < 12; i++) { + // make the regex if we don't have it already + if (!this._monthsParse[i]) { + mom = moment.utc([2000, i]); + regex = '^' + this.months(mom, '') + '|^' + this.monthsShort(mom, ''); + this._monthsParse[i] = new RegExp(regex.replace('.', ''), 'i'); + } + // test the regex + if (this._monthsParse[i].test(monthName)) { + return i; + } + } + }, + + _weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'), + weekdays : function (m) { + return this._weekdays[m.day()]; + }, + + _weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), + weekdaysShort : function (m) { + return this._weekdaysShort[m.day()]; + }, + + _weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), + weekdaysMin : function (m) { + return this._weekdaysMin[m.day()]; + }, + + weekdaysParse : function (weekdayName) { + var i, mom, regex; + + if (!this._weekdaysParse) { + this._weekdaysParse = []; + } + + for (i = 0; i < 7; i++) { + // make the regex if we don't have it already + if (!this._weekdaysParse[i]) { + mom = moment([2000, 1]).day(i); + regex = '^' + this.weekdays(mom, '') + '|^' + this.weekdaysShort(mom, '') + '|^' + this.weekdaysMin(mom, ''); + this._weekdaysParse[i] = new RegExp(regex.replace('.', ''), 'i'); + } + // test the regex + if (this._weekdaysParse[i].test(weekdayName)) { + return i; + } + } + }, + + _longDateFormat : { + LT : 'h:mm A', + L : 'MM/DD/YYYY', + LL : 'MMMM D, YYYY', + LLL : 'MMMM D, YYYY LT', + LLLL : 'dddd, MMMM D, YYYY LT' + }, + longDateFormat : function (key) { + var output = this._longDateFormat[key]; + if (!output && this._longDateFormat[key.toUpperCase()]) { + output = this._longDateFormat[key.toUpperCase()].replace(/MMMM|MM|DD|dddd/g, function (val) { + return val.slice(1); + }); + this._longDateFormat[key] = output; + } + return output; + }, + + isPM : function (input) { + // IE8 Quirks Mode & IE7 Standards Mode do not allow accessing strings like arrays + // Using charAt should be more compatible. + return ((input + '').toLowerCase().charAt(0) === 'p'); + }, + + _meridiemParse : /[ap]\.?m?\.?/i, + meridiem : function (hours, minutes, isLower) { + if (hours > 11) { + return isLower ? 'pm' : 'PM'; + } else { + return isLower ? 'am' : 'AM'; + } + }, + + _calendar : { + sameDay : '[Today at] LT', + nextDay : '[Tomorrow at] LT', + nextWeek : 'dddd [at] LT', + lastDay : '[Yesterday at] LT', + lastWeek : '[Last] dddd [at] LT', + sameElse : 'L' + }, + calendar : function (key, mom) { + var output = this._calendar[key]; + return typeof output === 'function' ? output.apply(mom) : output; + }, + + _relativeTime : { + future : 'in %s', + past : '%s ago', + s : 'a few seconds', + m : 'a minute', + mm : '%d minutes', + h : 'an hour', + hh : '%d hours', + d : 'a day', + dd : '%d days', + M : 'a month', + MM : '%d months', + y : 'a year', + yy : '%d years' + }, + + relativeTime : function (number, withoutSuffix, string, isFuture) { + var output = this._relativeTime[string]; + return (typeof output === 'function') ? + output(number, withoutSuffix, string, isFuture) : + output.replace(/%d/i, number); + }, + + pastFuture : function (diff, output) { + var format = this._relativeTime[diff > 0 ? 'future' : 'past']; + return typeof format === 'function' ? format(output) : format.replace(/%s/i, output); + }, + + ordinal : function (number) { + return this._ordinal.replace('%d', number); + }, + _ordinal : '%d', + + preparse : function (string) { + return string; + }, + + postformat : function (string) { + return string; + }, + + week : function (mom) { + return weekOfYear(mom, this._week.dow, this._week.doy).week; + }, + + _week : { + dow : 0, // Sunday is the first day of the week. + doy : 6 // The week that contains Jan 1st is the first week of the year. + }, + + _invalidDate: 'Invalid date', + invalidDate: function () { + return this._invalidDate; + } + }); + + /************************************ + Formatting + ************************************/ + + + function removeFormattingTokens(input) { + if (input.match(/\[[\s\S]/)) { + return input.replace(/^\[|\]$/g, ''); + } + return input.replace(/\\/g, ''); + } + + function makeFormatFunction(format) { + var array = format.match(formattingTokens), i, length; + + for (i = 0, length = array.length; i < length; i++) { + if (formatTokenFunctions[array[i]]) { + array[i] = formatTokenFunctions[array[i]]; + } else { + array[i] = removeFormattingTokens(array[i]); + } + } + + return function (mom) { + var output = ''; + for (i = 0; i < length; i++) { + output += array[i] instanceof Function ? array[i].call(mom, format) : array[i]; + } + return output; + }; + } + + // format date using native date object + function formatMoment(m, format) { + if (!m.isValid()) { + return m.localeData().invalidDate(); + } + + format = expandFormat(format, m.localeData()); + + if (!formatFunctions[format]) { + formatFunctions[format] = makeFormatFunction(format); + } + + return formatFunctions[format](m); + } + + function expandFormat(format, locale) { + var i = 5; + + function replaceLongDateFormatTokens(input) { + return locale.longDateFormat(input) || input; + } + + localFormattingTokens.lastIndex = 0; + while (i >= 0 && localFormattingTokens.test(format)) { + format = format.replace(localFormattingTokens, replaceLongDateFormatTokens); + localFormattingTokens.lastIndex = 0; + i -= 1; + } + + return format; + } + + + /************************************ + Parsing + ************************************/ + + + // get the regex to find the next token + function getParseRegexForToken(token, config) { + var a, strict = config._strict; + switch (token) { + case 'Q': + return parseTokenOneDigit; + case 'DDDD': + return parseTokenThreeDigits; + case 'YYYY': + case 'GGGG': + case 'gggg': + return strict ? parseTokenFourDigits : parseTokenOneToFourDigits; + case 'Y': + case 'G': + case 'g': + return parseTokenSignedNumber; + case 'YYYYYY': + case 'YYYYY': + case 'GGGGG': + case 'ggggg': + return strict ? parseTokenSixDigits : parseTokenOneToSixDigits; + case 'S': + if (strict) { + return parseTokenOneDigit; + } + /* falls through */ + case 'SS': + if (strict) { + return parseTokenTwoDigits; + } + /* falls through */ + case 'SSS': + if (strict) { + return parseTokenThreeDigits; + } + /* falls through */ + case 'DDD': + return parseTokenOneToThreeDigits; + case 'MMM': + case 'MMMM': + case 'dd': + case 'ddd': + case 'dddd': + return parseTokenWord; + case 'a': + case 'A': + return config._locale._meridiemParse; + case 'X': + return parseTokenTimestampMs; + case 'Z': + case 'ZZ': + return parseTokenTimezone; + case 'T': + return parseTokenT; + case 'SSSS': + return parseTokenDigits; + case 'MM': + case 'DD': + case 'YY': + case 'GG': + case 'gg': + case 'HH': + case 'hh': + case 'mm': + case 'ss': + case 'ww': + case 'WW': + return strict ? parseTokenTwoDigits : parseTokenOneOrTwoDigits; + case 'M': + case 'D': + case 'd': + case 'H': + case 'h': + case 'm': + case 's': + case 'w': + case 'W': + case 'e': + case 'E': + return parseTokenOneOrTwoDigits; + case 'Do': + return parseTokenOrdinal; + default : + a = new RegExp(regexpEscape(unescapeFormat(token.replace('\\', '')), 'i')); + return a; + } + } + + function timezoneMinutesFromString(string) { + string = string || ''; + var possibleTzMatches = (string.match(parseTokenTimezone) || []), + tzChunk = possibleTzMatches[possibleTzMatches.length - 1] || [], + parts = (tzChunk + '').match(parseTimezoneChunker) || ['-', 0, 0], + minutes = +(parts[1] * 60) + toInt(parts[2]); + + return parts[0] === '+' ? -minutes : minutes; + } + + // function to convert string input to date + function addTimeToArrayFromToken(token, input, config) { + var a, datePartArray = config._a; + + switch (token) { + // QUARTER + case 'Q': + if (input != null) { + datePartArray[MONTH] = (toInt(input) - 1) * 3; + } + break; + // MONTH + case 'M' : // fall through to MM + case 'MM' : + if (input != null) { + datePartArray[MONTH] = toInt(input) - 1; + } + break; + case 'MMM' : // fall through to MMMM + case 'MMMM' : + a = config._locale.monthsParse(input); + // if we didn't find a month name, mark the date as invalid. + if (a != null) { + datePartArray[MONTH] = a; + } else { + config._pf.invalidMonth = input; + } + break; + // DAY OF MONTH + case 'D' : // fall through to DD + case 'DD' : + if (input != null) { + datePartArray[DATE] = toInt(input); + } + break; + case 'Do' : + if (input != null) { + datePartArray[DATE] = toInt(parseInt(input, 10)); + } + break; + // DAY OF YEAR + case 'DDD' : // fall through to DDDD + case 'DDDD' : + if (input != null) { + config._dayOfYear = toInt(input); + } + + break; + // YEAR + case 'YY' : + datePartArray[YEAR] = moment.parseTwoDigitYear(input); + break; + case 'YYYY' : + case 'YYYYY' : + case 'YYYYYY' : + datePartArray[YEAR] = toInt(input); + break; + // AM / PM + case 'a' : // fall through to A + case 'A' : + config._isPm = config._locale.isPM(input); + break; + // 24 HOUR + case 'H' : // fall through to hh + case 'HH' : // fall through to hh + case 'h' : // fall through to hh + case 'hh' : + datePartArray[HOUR] = toInt(input); + break; + // MINUTE + case 'm' : // fall through to mm + case 'mm' : + datePartArray[MINUTE] = toInt(input); + break; + // SECOND + case 's' : // fall through to ss + case 'ss' : + datePartArray[SECOND] = toInt(input); + break; + // MILLISECOND + case 'S' : + case 'SS' : + case 'SSS' : + case 'SSSS' : + datePartArray[MILLISECOND] = toInt(('0.' + input) * 1000); + break; + // UNIX TIMESTAMP WITH MS + case 'X': + config._d = new Date(parseFloat(input) * 1000); + break; + // TIMEZONE + case 'Z' : // fall through to ZZ + case 'ZZ' : + config._useUTC = true; + config._tzm = timezoneMinutesFromString(input); + break; + // WEEKDAY - human + case 'dd': + case 'ddd': + case 'dddd': + a = config._locale.weekdaysParse(input); + // if we didn't get a weekday name, mark the date as invalid + if (a != null) { + config._w = config._w || {}; + config._w['d'] = a; + } else { + config._pf.invalidWeekday = input; + } + break; + // WEEK, WEEK DAY - numeric + case 'w': + case 'ww': + case 'W': + case 'WW': + case 'd': + case 'e': + case 'E': + token = token.substr(0, 1); + /* falls through */ + case 'gggg': + case 'GGGG': + case 'GGGGG': + token = token.substr(0, 2); + if (input) { + config._w = config._w || {}; + config._w[token] = toInt(input); + } + break; + case 'gg': + case 'GG': + config._w = config._w || {}; + config._w[token] = moment.parseTwoDigitYear(input); + } + } + + function dayOfYearFromWeekInfo(config) { + var w, weekYear, week, weekday, dow, doy, temp; + + w = config._w; + if (w.GG != null || w.W != null || w.E != null) { + dow = 1; + doy = 4; + + // TODO: We need to take the current isoWeekYear, but that depends on + // how we interpret now (local, utc, fixed offset). So create + // a now version of current config (take local/utc/offset flags, and + // create now). + weekYear = dfl(w.GG, config._a[YEAR], weekOfYear(moment(), 1, 4).year); + week = dfl(w.W, 1); + weekday = dfl(w.E, 1); + } else { + dow = config._locale._week.dow; + doy = config._locale._week.doy; + + weekYear = dfl(w.gg, config._a[YEAR], weekOfYear(moment(), dow, doy).year); + week = dfl(w.w, 1); + + if (w.d != null) { + // weekday -- low day numbers are considered next week + weekday = w.d; + if (weekday < dow) { + ++week; + } + } else if (w.e != null) { + // local weekday -- counting starts from begining of week + weekday = w.e + dow; + } else { + // default to begining of week + weekday = dow; + } + } + temp = dayOfYearFromWeeks(weekYear, week, weekday, doy, dow); + + config._a[YEAR] = temp.year; + config._dayOfYear = temp.dayOfYear; + } + + // convert an array to a date. + // the array should mirror the parameters below + // note: all values past the year are optional and will default to the lowest possible value. + // [year, month, day , hour, minute, second, millisecond] + function dateFromConfig(config) { + var i, date, input = [], currentDate, yearToUse; + + if (config._d) { + return; + } + + currentDate = currentDateArray(config); + + //compute day of the year from weeks and weekdays + if (config._w && config._a[DATE] == null && config._a[MONTH] == null) { + dayOfYearFromWeekInfo(config); + } + + //if the day of the year is set, figure out what it is + if (config._dayOfYear) { + yearToUse = dfl(config._a[YEAR], currentDate[YEAR]); + + if (config._dayOfYear > daysInYear(yearToUse)) { + config._pf._overflowDayOfYear = true; + } + + date = makeUTCDate(yearToUse, 0, config._dayOfYear); + config._a[MONTH] = date.getUTCMonth(); + config._a[DATE] = date.getUTCDate(); + } + + // Default to current date. + // * if no year, month, day of month are given, default to today + // * if day of month is given, default month and year + // * if month is given, default only year + // * if year is given, don't default anything + for (i = 0; i < 3 && config._a[i] == null; ++i) { + config._a[i] = input[i] = currentDate[i]; + } + + // Zero out whatever was not defaulted, including time + for (; i < 7; i++) { + config._a[i] = input[i] = (config._a[i] == null) ? (i === 2 ? 1 : 0) : config._a[i]; + } + + config._d = (config._useUTC ? makeUTCDate : makeDate).apply(null, input); + // Apply timezone offset from input. The actual zone can be changed + // with parseZone. + if (config._tzm != null) { + config._d.setUTCMinutes(config._d.getUTCMinutes() + config._tzm); + } + } + + function dateFromObject(config) { + var normalizedInput; + + if (config._d) { + return; + } + + normalizedInput = normalizeObjectUnits(config._i); + config._a = [ + normalizedInput.year, + normalizedInput.month, + normalizedInput.day, + normalizedInput.hour, + normalizedInput.minute, + normalizedInput.second, + normalizedInput.millisecond + ]; + + dateFromConfig(config); + } + + function currentDateArray(config) { + var now = new Date(); + if (config._useUTC) { + return [ + now.getUTCFullYear(), + now.getUTCMonth(), + now.getUTCDate() + ]; + } else { + return [now.getFullYear(), now.getMonth(), now.getDate()]; + } + } + + // date from string and format string + function makeDateFromStringAndFormat(config) { + if (config._f === moment.ISO_8601) { + parseISO(config); + return; + } + + config._a = []; + config._pf.empty = true; + + // This array is used to make a Date, either with `new Date` or `Date.UTC` + var string = '' + config._i, + i, parsedInput, tokens, token, skipped, + stringLength = string.length, + totalParsedInputLength = 0; + + tokens = expandFormat(config._f, config._locale).match(formattingTokens) || []; + + for (i = 0; i < tokens.length; i++) { + token = tokens[i]; + parsedInput = (string.match(getParseRegexForToken(token, config)) || [])[0]; + if (parsedInput) { + skipped = string.substr(0, string.indexOf(parsedInput)); + if (skipped.length > 0) { + config._pf.unusedInput.push(skipped); + } + string = string.slice(string.indexOf(parsedInput) + parsedInput.length); + totalParsedInputLength += parsedInput.length; + } + // don't parse if it's not a known token + if (formatTokenFunctions[token]) { + if (parsedInput) { + config._pf.empty = false; + } + else { + config._pf.unusedTokens.push(token); + } + addTimeToArrayFromToken(token, parsedInput, config); + } + else if (config._strict && !parsedInput) { + config._pf.unusedTokens.push(token); + } + } + + // add remaining unparsed input length to the string + config._pf.charsLeftOver = stringLength - totalParsedInputLength; + if (string.length > 0) { + config._pf.unusedInput.push(string); + } + + // handle am pm + if (config._isPm && config._a[HOUR] < 12) { + config._a[HOUR] += 12; + } + // if is 12 am, change hours to 0 + if (config._isPm === false && config._a[HOUR] === 12) { + config._a[HOUR] = 0; + } + + dateFromConfig(config); + checkOverflow(config); + } + + function unescapeFormat(s) { + return s.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function (matched, p1, p2, p3, p4) { + return p1 || p2 || p3 || p4; + }); + } + + // Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript + function regexpEscape(s) { + return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'); + } + + // date from string and array of format strings + function makeDateFromStringAndArray(config) { + var tempConfig, + bestMoment, + + scoreToBeat, + i, + currentScore; + + if (config._f.length === 0) { + config._pf.invalidFormat = true; + config._d = new Date(NaN); + return; + } + + for (i = 0; i < config._f.length; i++) { + currentScore = 0; + tempConfig = copyConfig({}, config); + tempConfig._pf = defaultParsingFlags(); + tempConfig._f = config._f[i]; + makeDateFromStringAndFormat(tempConfig); + + if (!isValid(tempConfig)) { + continue; + } + + // if there is any input that was not parsed add a penalty for that format + currentScore += tempConfig._pf.charsLeftOver; + + //or tokens + currentScore += tempConfig._pf.unusedTokens.length * 10; + + tempConfig._pf.score = currentScore; + + if (scoreToBeat == null || currentScore < scoreToBeat) { + scoreToBeat = currentScore; + bestMoment = tempConfig; + } + } + + extend(config, bestMoment || tempConfig); + } + + // date from iso format + function parseISO(config) { + var i, l, + string = config._i, + match = isoRegex.exec(string); + + if (match) { + config._pf.iso = true; + for (i = 0, l = isoDates.length; i < l; i++) { + if (isoDates[i][1].exec(string)) { + // match[5] should be 'T' or undefined + config._f = isoDates[i][0] + (match[6] || ' '); + break; + } + } + for (i = 0, l = isoTimes.length; i < l; i++) { + if (isoTimes[i][1].exec(string)) { + config._f += isoTimes[i][0]; + break; + } + } + if (string.match(parseTokenTimezone)) { + config._f += 'Z'; + } + makeDateFromStringAndFormat(config); + } else { + config._isValid = false; + } + } + + // date from iso format or fallback + function makeDateFromString(config) { + parseISO(config); + if (config._isValid === false) { + delete config._isValid; + moment.createFromInputFallback(config); + } + } + + function makeDateFromInput(config) { + var input = config._i, matched; + if (input === undefined) { + config._d = new Date(); + } else if (isDate(input)) { + config._d = new Date(+input); + } else if ((matched = aspNetJsonRegex.exec(input)) !== null) { + config._d = new Date(+matched[1]); + } else if (typeof input === 'string') { + makeDateFromString(config); + } else if (isArray(input)) { + config._a = input.slice(0); + dateFromConfig(config); + } else if (typeof(input) === 'object') { + dateFromObject(config); + } else if (typeof(input) === 'number') { + // from milliseconds + config._d = new Date(input); + } else { + moment.createFromInputFallback(config); + } + } + + function makeDate(y, m, d, h, M, s, ms) { + //can't just apply() to create a date: + //http://stackoverflow.com/questions/181348/instantiating-a-javascript-object-by-calling-prototype-constructor-apply + var date = new Date(y, m, d, h, M, s, ms); + + //the date constructor doesn't accept years < 1970 + if (y < 1970) { + date.setFullYear(y); + } + return date; + } + + function makeUTCDate(y) { + var date = new Date(Date.UTC.apply(null, arguments)); + if (y < 1970) { + date.setUTCFullYear(y); + } + return date; + } + + function parseWeekday(input, locale) { + if (typeof input === 'string') { + if (!isNaN(input)) { + input = parseInt(input, 10); + } + else { + input = locale.weekdaysParse(input); + if (typeof input !== 'number') { + return null; + } + } + } + return input; + } + + /************************************ + Relative Time + ************************************/ + + + // helper function for moment.fn.from, moment.fn.fromNow, and moment.duration.fn.humanize + function substituteTimeAgo(string, number, withoutSuffix, isFuture, locale) { + return locale.relativeTime(number || 1, !!withoutSuffix, string, isFuture); + } + + function relativeTime(posNegDuration, withoutSuffix, locale) { + var duration = moment.duration(posNegDuration).abs(), + seconds = round(duration.as('s')), + minutes = round(duration.as('m')), + hours = round(duration.as('h')), + days = round(duration.as('d')), + months = round(duration.as('M')), + years = round(duration.as('y')), + + args = seconds < relativeTimeThresholds.s && ['s', seconds] || + minutes === 1 && ['m'] || + minutes < relativeTimeThresholds.m && ['mm', minutes] || + hours === 1 && ['h'] || + hours < relativeTimeThresholds.h && ['hh', hours] || + days === 1 && ['d'] || + days < relativeTimeThresholds.d && ['dd', days] || + months === 1 && ['M'] || + months < relativeTimeThresholds.M && ['MM', months] || + years === 1 && ['y'] || ['yy', years]; + + args[2] = withoutSuffix; + args[3] = +posNegDuration > 0; + args[4] = locale; + return substituteTimeAgo.apply({}, args); + } + + + /************************************ + Week of Year + ************************************/ + + + // firstDayOfWeek 0 = sun, 6 = sat + // the day of the week that starts the week + // (usually sunday or monday) + // firstDayOfWeekOfYear 0 = sun, 6 = sat + // the first week is the week that contains the first + // of this day of the week + // (eg. ISO weeks use thursday (4)) + function weekOfYear(mom, firstDayOfWeek, firstDayOfWeekOfYear) { + var end = firstDayOfWeekOfYear - firstDayOfWeek, + daysToDayOfWeek = firstDayOfWeekOfYear - mom.day(), + adjustedMoment; + + + if (daysToDayOfWeek > end) { + daysToDayOfWeek -= 7; + } + + if (daysToDayOfWeek < end - 7) { + daysToDayOfWeek += 7; + } + + adjustedMoment = moment(mom).add(daysToDayOfWeek, 'd'); + return { + week: Math.ceil(adjustedMoment.dayOfYear() / 7), + year: adjustedMoment.year() + }; + } + + //http://en.wikipedia.org/wiki/ISO_week_date#Calculating_a_date_given_the_year.2C_week_number_and_weekday + function dayOfYearFromWeeks(year, week, weekday, firstDayOfWeekOfYear, firstDayOfWeek) { + var d = makeUTCDate(year, 0, 1).getUTCDay(), daysToAdd, dayOfYear; + + d = d === 0 ? 7 : d; + weekday = weekday != null ? weekday : firstDayOfWeek; + daysToAdd = firstDayOfWeek - d + (d > firstDayOfWeekOfYear ? 7 : 0) - (d < firstDayOfWeek ? 7 : 0); + dayOfYear = 7 * (week - 1) + (weekday - firstDayOfWeek) + daysToAdd + 1; + + return { + year: dayOfYear > 0 ? year : year - 1, + dayOfYear: dayOfYear > 0 ? dayOfYear : daysInYear(year - 1) + dayOfYear + }; + } + + /************************************ + Top Level Functions + ************************************/ + + function makeMoment(config) { + var input = config._i, + format = config._f; + + config._locale = config._locale || moment.localeData(config._l); + + if (input === null || (format === undefined && input === '')) { + return moment.invalid({nullInput: true}); + } + + if (typeof input === 'string') { + config._i = input = config._locale.preparse(input); + } + + if (moment.isMoment(input)) { + return new Moment(input, true); + } else if (format) { + if (isArray(format)) { + makeDateFromStringAndArray(config); + } else { + makeDateFromStringAndFormat(config); + } + } else { + makeDateFromInput(config); + } + + return new Moment(config); + } + + moment = function (input, format, locale, strict) { + var c; + + if (typeof(locale) === 'boolean') { + strict = locale; + locale = undefined; + } + // object construction must be done this way. + // https://github.com/moment/moment/issues/1423 + c = {}; + c._isAMomentObject = true; + c._i = input; + c._f = format; + c._l = locale; + c._strict = strict; + c._isUTC = false; + c._pf = defaultParsingFlags(); + + return makeMoment(c); + }; + + moment.suppressDeprecationWarnings = false; + + moment.createFromInputFallback = deprecate( + 'moment construction falls back to js Date. This is ' + + 'discouraged and will be removed in upcoming major ' + + 'release. Please refer to ' + + 'https://github.com/moment/moment/issues/1407 for more info.', + function (config) { + config._d = new Date(config._i); + } + ); + + // Pick a moment m from moments so that m[fn](other) is true for all + // other. This relies on the function fn to be transitive. + // + // moments should either be an array of moment objects or an array, whose + // first element is an array of moment objects. + function pickBy(fn, moments) { + var res, i; + if (moments.length === 1 && isArray(moments[0])) { + moments = moments[0]; + } + if (!moments.length) { + return moment(); + } + res = moments[0]; + for (i = 1; i < moments.length; ++i) { + if (moments[i][fn](res)) { + res = moments[i]; + } + } + return res; + } + + moment.min = function () { + var args = [].slice.call(arguments, 0); + + return pickBy('isBefore', args); + }; + + moment.max = function () { + var args = [].slice.call(arguments, 0); + + return pickBy('isAfter', args); + }; + + // creating with utc + moment.utc = function (input, format, locale, strict) { + var c; + + if (typeof(locale) === 'boolean') { + strict = locale; + locale = undefined; + } + // object construction must be done this way. + // https://github.com/moment/moment/issues/1423 + c = {}; + c._isAMomentObject = true; + c._useUTC = true; + c._isUTC = true; + c._l = locale; + c._i = input; + c._f = format; + c._strict = strict; + c._pf = defaultParsingFlags(); + + return makeMoment(c).utc(); + }; + + // creating with unix timestamp (in seconds) + moment.unix = function (input) { + return moment(input * 1000); + }; + + // duration + moment.duration = function (input, key) { + var duration = input, + // matching against regexp is expensive, do it on demand + match = null, + sign, + ret, + parseIso, + diffRes; + + if (moment.isDuration(input)) { + duration = { + ms: input._milliseconds, + d: input._days, + M: input._months + }; + } else if (typeof input === 'number') { + duration = {}; + if (key) { + duration[key] = input; + } else { + duration.milliseconds = input; + } + } else if (!!(match = aspNetTimeSpanJsonRegex.exec(input))) { + sign = (match[1] === '-') ? -1 : 1; + duration = { + y: 0, + d: toInt(match[DATE]) * sign, + h: toInt(match[HOUR]) * sign, + m: toInt(match[MINUTE]) * sign, + s: toInt(match[SECOND]) * sign, + ms: toInt(match[MILLISECOND]) * sign + }; + } else if (!!(match = isoDurationRegex.exec(input))) { + sign = (match[1] === '-') ? -1 : 1; + parseIso = function (inp) { + // We'd normally use ~~inp for this, but unfortunately it also + // converts floats to ints. + // inp may be undefined, so careful calling replace on it. + var res = inp && parseFloat(inp.replace(',', '.')); + // apply sign while we're at it + return (isNaN(res) ? 0 : res) * sign; + }; + duration = { + y: parseIso(match[2]), + M: parseIso(match[3]), + d: parseIso(match[4]), + h: parseIso(match[5]), + m: parseIso(match[6]), + s: parseIso(match[7]), + w: parseIso(match[8]) + }; + } else if (typeof duration === 'object' && + ('from' in duration || 'to' in duration)) { + diffRes = momentsDifference(moment(duration.from), moment(duration.to)); + + duration = {}; + duration.ms = diffRes.milliseconds; + duration.M = diffRes.months; + } + + ret = new Duration(duration); + + if (moment.isDuration(input) && hasOwnProp(input, '_locale')) { + ret._locale = input._locale; + } + + return ret; + }; + + // version number + moment.version = VERSION; + + // default format + moment.defaultFormat = isoFormat; + + // constant that refers to the ISO standard + moment.ISO_8601 = function () {}; + + // Plugins that add properties should also add the key here (null value), + // so we can properly clone ourselves. + moment.momentProperties = momentProperties; + + // This function will be called whenever a moment is mutated. + // It is intended to keep the offset in sync with the timezone. + moment.updateOffset = function () {}; + + // This function allows you to set a threshold for relative time strings + moment.relativeTimeThreshold = function (threshold, limit) { + if (relativeTimeThresholds[threshold] === undefined) { + return false; + } + if (limit === undefined) { + return relativeTimeThresholds[threshold]; + } + relativeTimeThresholds[threshold] = limit; + return true; + }; + + moment.lang = deprecate( + 'moment.lang is deprecated. Use moment.locale instead.', + function (key, value) { + return moment.locale(key, value); + } + ); + + // This function will load locale and then set the global locale. If + // no arguments are passed in, it will simply return the current global + // locale key. + moment.locale = function (key, values) { + var data; + if (key) { + if (typeof(values) !== 'undefined') { + data = moment.defineLocale(key, values); + } + else { + data = moment.localeData(key); + } + + if (data) { + moment.duration._locale = moment._locale = data; + } + } + + return moment._locale._abbr; + }; + + moment.defineLocale = function (name, values) { + if (values !== null) { + values.abbr = name; + if (!locales[name]) { + locales[name] = new Locale(); + } + locales[name].set(values); + + // backwards compat for now: also set the locale + moment.locale(name); + + return locales[name]; + } else { + // useful for testing + delete locales[name]; + return null; + } + }; + + moment.langData = deprecate( + 'moment.langData is deprecated. Use moment.localeData instead.', + function (key) { + return moment.localeData(key); + } + ); + + // returns locale data + moment.localeData = function (key) { + var locale; + + if (key && key._locale && key._locale._abbr) { + key = key._locale._abbr; + } + + if (!key) { + return moment._locale; + } + + if (!isArray(key)) { + //short-circuit everything else + locale = loadLocale(key); + if (locale) { + return locale; + } + key = [key]; + } + + return chooseLocale(key); + }; + + // compare moment object + moment.isMoment = function (obj) { + return obj instanceof Moment || + (obj != null && hasOwnProp(obj, '_isAMomentObject')); + }; + + // for typechecking Duration objects + moment.isDuration = function (obj) { + return obj instanceof Duration; + }; + + for (i = lists.length - 1; i >= 0; --i) { + makeList(lists[i]); + } + + moment.normalizeUnits = function (units) { + return normalizeUnits(units); + }; + + moment.invalid = function (flags) { + var m = moment.utc(NaN); + if (flags != null) { + extend(m._pf, flags); + } + else { + m._pf.userInvalidated = true; + } + + return m; + }; + + moment.parseZone = function () { + return moment.apply(null, arguments).parseZone(); + }; + + moment.parseTwoDigitYear = function (input) { + return toInt(input) + (toInt(input) > 68 ? 1900 : 2000); + }; + + /************************************ + Moment Prototype + ************************************/ + + + extend(moment.fn = Moment.prototype, { + + clone : function () { + return moment(this); + }, + + valueOf : function () { + return +this._d + ((this._offset || 0) * 60000); + }, + + unix : function () { + return Math.floor(+this / 1000); + }, + + toString : function () { + return this.clone().locale('en').format('ddd MMM DD YYYY HH:mm:ss [GMT]ZZ'); + }, + + toDate : function () { + return this._offset ? new Date(+this) : this._d; + }, + + toISOString : function () { + var m = moment(this).utc(); + if (0 < m.year() && m.year() <= 9999) { + return formatMoment(m, 'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]'); + } else { + return formatMoment(m, 'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]'); + } + }, + + toArray : function () { + var m = this; + return [ + m.year(), + m.month(), + m.date(), + m.hours(), + m.minutes(), + m.seconds(), + m.milliseconds() + ]; + }, + + isValid : function () { + return isValid(this); + }, + + isDSTShifted : function () { + if (this._a) { + return this.isValid() && compareArrays(this._a, (this._isUTC ? moment.utc(this._a) : moment(this._a)).toArray()) > 0; + } + + return false; + }, + + parsingFlags : function () { + return extend({}, this._pf); + }, + + invalidAt: function () { + return this._pf.overflow; + }, + + utc : function (keepLocalTime) { + return this.zone(0, keepLocalTime); + }, + + local : function (keepLocalTime) { + if (this._isUTC) { + this.zone(0, keepLocalTime); + this._isUTC = false; + + if (keepLocalTime) { + this.add(this._d.getTimezoneOffset(), 'm'); + } + } + return this; + }, + + format : function (inputString) { + var output = formatMoment(this, inputString || moment.defaultFormat); + return this.localeData().postformat(output); + }, + + add : createAdder(1, 'add'), + + subtract : createAdder(-1, 'subtract'), + + diff : function (input, units, asFloat) { + var that = makeAs(input, this), + zoneDiff = (this.zone() - that.zone()) * 6e4, + diff, output; + + units = normalizeUnits(units); + + if (units === 'year' || units === 'month') { + // average number of days in the months in the given dates + diff = (this.daysInMonth() + that.daysInMonth()) * 432e5; // 24 * 60 * 60 * 1000 / 2 + // difference in months + output = ((this.year() - that.year()) * 12) + (this.month() - that.month()); + // adjust by taking difference in days, average number of days + // and dst in the given months. + output += ((this - moment(this).startOf('month')) - + (that - moment(that).startOf('month'))) / diff; + // same as above but with zones, to negate all dst + output -= ((this.zone() - moment(this).startOf('month').zone()) - + (that.zone() - moment(that).startOf('month').zone())) * 6e4 / diff; + if (units === 'year') { + output = output / 12; + } + } else { + diff = (this - that); + output = units === 'second' ? diff / 1e3 : // 1000 + units === 'minute' ? diff / 6e4 : // 1000 * 60 + units === 'hour' ? diff / 36e5 : // 1000 * 60 * 60 + units === 'day' ? (diff - zoneDiff) / 864e5 : // 1000 * 60 * 60 * 24, negate dst + units === 'week' ? (diff - zoneDiff) / 6048e5 : // 1000 * 60 * 60 * 24 * 7, negate dst + diff; + } + return asFloat ? output : absRound(output); + }, + + from : function (time, withoutSuffix) { + return moment.duration({to: this, from: time}).locale(this.locale()).humanize(!withoutSuffix); + }, + + fromNow : function (withoutSuffix) { + return this.from(moment(), withoutSuffix); + }, + + calendar : function (time) { + // We want to compare the start of today, vs this. + // Getting start-of-today depends on whether we're zone'd or not. + var now = time || moment(), + sod = makeAs(now, this).startOf('day'), + diff = this.diff(sod, 'days', true), + format = diff < -6 ? 'sameElse' : + diff < -1 ? 'lastWeek' : + diff < 0 ? 'lastDay' : + diff < 1 ? 'sameDay' : + diff < 2 ? 'nextDay' : + diff < 7 ? 'nextWeek' : 'sameElse'; + return this.format(this.localeData().calendar(format, this)); + }, + + isLeapYear : function () { + return isLeapYear(this.year()); + }, + + isDST : function () { + return (this.zone() < this.clone().month(0).zone() || + this.zone() < this.clone().month(5).zone()); + }, + + day : function (input) { + var day = this._isUTC ? this._d.getUTCDay() : this._d.getDay(); + if (input != null) { + input = parseWeekday(input, this.localeData()); + return this.add(input - day, 'd'); + } else { + return day; + } + }, + + month : makeAccessor('Month', true), + + startOf : function (units) { + units = normalizeUnits(units); + // the following switch intentionally omits break keywords + // to utilize falling through the cases. + switch (units) { + case 'year': + this.month(0); + /* falls through */ + case 'quarter': + case 'month': + this.date(1); + /* falls through */ + case 'week': + case 'isoWeek': + case 'day': + this.hours(0); + /* falls through */ + case 'hour': + this.minutes(0); + /* falls through */ + case 'minute': + this.seconds(0); + /* falls through */ + case 'second': + this.milliseconds(0); + /* falls through */ + } + + // weeks are a special case + if (units === 'week') { + this.weekday(0); + } else if (units === 'isoWeek') { + this.isoWeekday(1); + } + + // quarters are also special + if (units === 'quarter') { + this.month(Math.floor(this.month() / 3) * 3); + } + + return this; + }, + + endOf: function (units) { + units = normalizeUnits(units); + return this.startOf(units).add(1, (units === 'isoWeek' ? 'week' : units)).subtract(1, 'ms'); + }, + + isAfter: function (input, units) { + units = typeof units !== 'undefined' ? units : 'millisecond'; + return +this.clone().startOf(units) > +moment(input).startOf(units); + }, + + isBefore: function (input, units) { + units = typeof units !== 'undefined' ? units : 'millisecond'; + return +this.clone().startOf(units) < +moment(input).startOf(units); + }, + + isSame: function (input, units) { + units = units || 'ms'; + return +this.clone().startOf(units) === +makeAs(input, this).startOf(units); + }, + + min: deprecate( + 'moment().min is deprecated, use moment.min instead. https://github.com/moment/moment/issues/1548', + function (other) { + other = moment.apply(null, arguments); + return other < this ? this : other; + } + ), + + max: deprecate( + 'moment().max is deprecated, use moment.max instead. https://github.com/moment/moment/issues/1548', + function (other) { + other = moment.apply(null, arguments); + return other > this ? this : other; + } + ), + + // keepLocalTime = true means only change the timezone, without + // affecting the local hour. So 5:31:26 +0300 --[zone(2, true)]--> + // 5:31:26 +0200 It is possible that 5:31:26 doesn't exist int zone + // +0200, so we adjust the time as needed, to be valid. + // + // Keeping the time actually adds/subtracts (one hour) + // from the actual represented time. That is why we call updateOffset + // a second time. In case it wants us to change the offset again + // _changeInProgress == true case, then we have to adjust, because + // there is no such time in the given timezone. + zone : function (input, keepLocalTime) { + var offset = this._offset || 0, + localAdjust; + if (input != null) { + if (typeof input === 'string') { + input = timezoneMinutesFromString(input); + } + if (Math.abs(input) < 16) { + input = input * 60; + } + if (!this._isUTC && keepLocalTime) { + localAdjust = this._d.getTimezoneOffset(); + } + this._offset = input; + this._isUTC = true; + if (localAdjust != null) { + this.subtract(localAdjust, 'm'); + } + if (offset !== input) { + if (!keepLocalTime || this._changeInProgress) { + addOrSubtractDurationFromMoment(this, + moment.duration(offset - input, 'm'), 1, false); + } else if (!this._changeInProgress) { + this._changeInProgress = true; + moment.updateOffset(this, true); + this._changeInProgress = null; + } + } + } else { + return this._isUTC ? offset : this._d.getTimezoneOffset(); + } + return this; + }, + + zoneAbbr : function () { + return this._isUTC ? 'UTC' : ''; + }, + + zoneName : function () { + return this._isUTC ? 'Coordinated Universal Time' : ''; + }, + + parseZone : function () { + if (this._tzm) { + this.zone(this._tzm); + } else if (typeof this._i === 'string') { + this.zone(this._i); + } + return this; + }, + + hasAlignedHourOffset : function (input) { + if (!input) { + input = 0; + } + else { + input = moment(input).zone(); + } + + return (this.zone() - input) % 60 === 0; + }, + + daysInMonth : function () { + return daysInMonth(this.year(), this.month()); + }, + + dayOfYear : function (input) { + var dayOfYear = round((moment(this).startOf('day') - moment(this).startOf('year')) / 864e5) + 1; + return input == null ? dayOfYear : this.add((input - dayOfYear), 'd'); + }, + + quarter : function (input) { + return input == null ? Math.ceil((this.month() + 1) / 3) : this.month((input - 1) * 3 + this.month() % 3); + }, + + weekYear : function (input) { + var year = weekOfYear(this, this.localeData()._week.dow, this.localeData()._week.doy).year; + return input == null ? year : this.add((input - year), 'y'); + }, + + isoWeekYear : function (input) { + var year = weekOfYear(this, 1, 4).year; + return input == null ? year : this.add((input - year), 'y'); + }, + + week : function (input) { + var week = this.localeData().week(this); + return input == null ? week : this.add((input - week) * 7, 'd'); + }, + + isoWeek : function (input) { + var week = weekOfYear(this, 1, 4).week; + return input == null ? week : this.add((input - week) * 7, 'd'); + }, + + weekday : function (input) { + var weekday = (this.day() + 7 - this.localeData()._week.dow) % 7; + return input == null ? weekday : this.add(input - weekday, 'd'); + }, + + isoWeekday : function (input) { + // behaves the same as moment#day except + // as a getter, returns 7 instead of 0 (1-7 range instead of 0-6) + // as a setter, sunday should belong to the previous week. + return input == null ? this.day() || 7 : this.day(this.day() % 7 ? input : input - 7); + }, + + isoWeeksInYear : function () { + return weeksInYear(this.year(), 1, 4); + }, + + weeksInYear : function () { + var weekInfo = this.localeData()._week; + return weeksInYear(this.year(), weekInfo.dow, weekInfo.doy); + }, + + get : function (units) { + units = normalizeUnits(units); + return this[units](); + }, + + set : function (units, value) { + units = normalizeUnits(units); + if (typeof this[units] === 'function') { + this[units](value); + } + return this; + }, + + // If passed a locale key, it will set the locale for this + // instance. Otherwise, it will return the locale configuration + // variables for this instance. + locale : function (key) { + if (key === undefined) { + return this._locale._abbr; + } else { + this._locale = moment.localeData(key); + return this; + } + }, + + lang : deprecate( + 'moment().lang() is deprecated. Use moment().localeData() instead.', + function (key) { + if (key === undefined) { + return this.localeData(); + } else { + this._locale = moment.localeData(key); + return this; + } + } + ), + + localeData : function () { + return this._locale; + } + }); + + function rawMonthSetter(mom, value) { + var dayOfMonth; + + // TODO: Move this out of here! + if (typeof value === 'string') { + value = mom.localeData().monthsParse(value); + // TODO: Another silent failure? + if (typeof value !== 'number') { + return mom; + } + } + + dayOfMonth = Math.min(mom.date(), + daysInMonth(mom.year(), value)); + mom._d['set' + (mom._isUTC ? 'UTC' : '') + 'Month'](value, dayOfMonth); + return mom; + } + + function rawGetter(mom, unit) { + return mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit](); + } + + function rawSetter(mom, unit, value) { + if (unit === 'Month') { + return rawMonthSetter(mom, value); + } else { + return mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value); + } + } + + function makeAccessor(unit, keepTime) { + return function (value) { + if (value != null) { + rawSetter(this, unit, value); + moment.updateOffset(this, keepTime); + return this; + } else { + return rawGetter(this, unit); + } + }; + } + + moment.fn.millisecond = moment.fn.milliseconds = makeAccessor('Milliseconds', false); + moment.fn.second = moment.fn.seconds = makeAccessor('Seconds', false); + moment.fn.minute = moment.fn.minutes = makeAccessor('Minutes', false); + // Setting the hour should keep the time, because the user explicitly + // specified which hour he wants. So trying to maintain the same hour (in + // a new timezone) makes sense. Adding/subtracting hours does not follow + // this rule. + moment.fn.hour = moment.fn.hours = makeAccessor('Hours', true); + // moment.fn.month is defined separately + moment.fn.date = makeAccessor('Date', true); + moment.fn.dates = deprecate('dates accessor is deprecated. Use date instead.', makeAccessor('Date', true)); + moment.fn.year = makeAccessor('FullYear', true); + moment.fn.years = deprecate('years accessor is deprecated. Use year instead.', makeAccessor('FullYear', true)); + + // add plural methods + moment.fn.days = moment.fn.day; + moment.fn.months = moment.fn.month; + moment.fn.weeks = moment.fn.week; + moment.fn.isoWeeks = moment.fn.isoWeek; + moment.fn.quarters = moment.fn.quarter; + + // add aliased format methods + moment.fn.toJSON = moment.fn.toISOString; + + /************************************ + Duration Prototype + ************************************/ + + + function daysToYears (days) { + // 400 years have 146097 days (taking into account leap year rules) + return days * 400 / 146097; + } + + function yearsToDays (years) { + // years * 365 + absRound(years / 4) - + // absRound(years / 100) + absRound(years / 400); + return years * 146097 / 400; + } + + extend(moment.duration.fn = Duration.prototype, { + + _bubble : function () { + var milliseconds = this._milliseconds, + days = this._days, + months = this._months, + data = this._data, + seconds, minutes, hours, years = 0; + + // The following code bubbles up values, see the tests for + // examples of what that means. + data.milliseconds = milliseconds % 1000; + + seconds = absRound(milliseconds / 1000); + data.seconds = seconds % 60; + + minutes = absRound(seconds / 60); + data.minutes = minutes % 60; + + hours = absRound(minutes / 60); + data.hours = hours % 24; + + days += absRound(hours / 24); + + // Accurately convert days to years, assume start from year 0. + years = absRound(daysToYears(days)); + days -= absRound(yearsToDays(years)); + + // 30 days to a month + // TODO (iskren): Use anchor date (like 1st Jan) to compute this. + months += absRound(days / 30); + days %= 30; + + // 12 months -> 1 year + years += absRound(months / 12); + months %= 12; + + data.days = days; + data.months = months; + data.years = years; + }, + + abs : function () { + this._milliseconds = Math.abs(this._milliseconds); + this._days = Math.abs(this._days); + this._months = Math.abs(this._months); + + this._data.milliseconds = Math.abs(this._data.milliseconds); + this._data.seconds = Math.abs(this._data.seconds); + this._data.minutes = Math.abs(this._data.minutes); + this._data.hours = Math.abs(this._data.hours); + this._data.months = Math.abs(this._data.months); + this._data.years = Math.abs(this._data.years); + + return this; + }, + + weeks : function () { + return absRound(this.days() / 7); + }, + + valueOf : function () { + return this._milliseconds + + this._days * 864e5 + + (this._months % 12) * 2592e6 + + toInt(this._months / 12) * 31536e6; + }, + + humanize : function (withSuffix) { + var output = relativeTime(this, !withSuffix, this.localeData()); + + if (withSuffix) { + output = this.localeData().pastFuture(+this, output); + } + + return this.localeData().postformat(output); + }, + + add : function (input, val) { + // supports only 2.0-style add(1, 's') or add(moment) + var dur = moment.duration(input, val); + + this._milliseconds += dur._milliseconds; + this._days += dur._days; + this._months += dur._months; + + this._bubble(); + + return this; + }, + + subtract : function (input, val) { + var dur = moment.duration(input, val); + + this._milliseconds -= dur._milliseconds; + this._days -= dur._days; + this._months -= dur._months; + + this._bubble(); + + return this; + }, + + get : function (units) { + units = normalizeUnits(units); + return this[units.toLowerCase() + 's'](); + }, + + as : function (units) { + var days, months; + units = normalizeUnits(units); + + days = this._days + this._milliseconds / 864e5; + if (units === 'month' || units === 'year') { + months = this._months + daysToYears(days) * 12; + return units === 'month' ? months : months / 12; + } else { + days += yearsToDays(this._months / 12); + switch (units) { + case 'week': return days / 7; + case 'day': return days; + case 'hour': return days * 24; + case 'minute': return days * 24 * 60; + case 'second': return days * 24 * 60 * 60; + case 'millisecond': return days * 24 * 60 * 60 * 1000; + default: throw new Error('Unknown unit ' + units); + } + } + }, + + lang : moment.fn.lang, + locale : moment.fn.locale, + + toIsoString : deprecate( + 'toIsoString() is deprecated. Please use toISOString() instead ' + + '(notice the capitals)', + function () { + return this.toISOString(); + } + ), + + toISOString : function () { + // inspired by https://github.com/dordille/moment-isoduration/blob/master/moment.isoduration.js + var years = Math.abs(this.years()), + months = Math.abs(this.months()), + days = Math.abs(this.days()), + hours = Math.abs(this.hours()), + minutes = Math.abs(this.minutes()), + seconds = Math.abs(this.seconds() + this.milliseconds() / 1000); + + if (!this.asSeconds()) { + // this is the same as C#'s (Noda) and python (isodate)... + // but not other JS (goog.date) + return 'P0D'; + } + + return (this.asSeconds() < 0 ? '-' : '') + + 'P' + + (years ? years + 'Y' : '') + + (months ? months + 'M' : '') + + (days ? days + 'D' : '') + + ((hours || minutes || seconds) ? 'T' : '') + + (hours ? hours + 'H' : '') + + (minutes ? minutes + 'M' : '') + + (seconds ? seconds + 'S' : ''); + }, + + localeData : function () { + return this._locale; + } + }); + + moment.duration.fn.toString = moment.duration.fn.toISOString; + + function makeDurationGetter(name) { + moment.duration.fn[name] = function () { + return this._data[name]; + }; + } + + for (i in unitMillisecondFactors) { + if (hasOwnProp(unitMillisecondFactors, i)) { + makeDurationGetter(i.toLowerCase()); + } + } + + moment.duration.fn.asMilliseconds = function () { + return this.as('ms'); + }; + moment.duration.fn.asSeconds = function () { + return this.as('s'); + }; + moment.duration.fn.asMinutes = function () { + return this.as('m'); + }; + moment.duration.fn.asHours = function () { + return this.as('h'); + }; + moment.duration.fn.asDays = function () { + return this.as('d'); + }; + moment.duration.fn.asWeeks = function () { + return this.as('weeks'); + }; + moment.duration.fn.asMonths = function () { + return this.as('M'); + }; + moment.duration.fn.asYears = function () { + return this.as('y'); + }; + + /************************************ + Default Locale + ************************************/ + + + // Set default locale, other locale will inherit from English. + moment.locale('en', { + ordinal : function (number) { + var b = number % 10, + output = (toInt(number % 100 / 10) === 1) ? 'th' : + (b === 1) ? 'st' : + (b === 2) ? 'nd' : + (b === 3) ? 'rd' : 'th'; + return number + output; + } + }); + + // moment.js locale configuration +// locale : afrikaans (af) +// author : Werner Mollentze : https://github.com/wernerm + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('af', { + months : 'Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember'.split('_'), + monthsShort : 'Jan_Feb_Mar_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des'.split('_'), + weekdays : 'Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag'.split('_'), + weekdaysShort : 'Son_Maa_Din_Woe_Don_Vry_Sat'.split('_'), + weekdaysMin : 'So_Ma_Di_Wo_Do_Vr_Sa'.split('_'), + meridiem : function (hours, minutes, isLower) { + if (hours < 12) { + return isLower ? 'vm' : 'VM'; + } else { + return isLower ? 'nm' : 'NM'; + } + }, + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd, D MMMM YYYY LT' + }, + calendar : { + sameDay : '[Vandag om] LT', + nextDay : '[Môre om] LT', + nextWeek : 'dddd [om] LT', + lastDay : '[Gister om] LT', + lastWeek : '[Laas] dddd [om] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'oor %s', + past : '%s gelede', + s : '\'n paar sekondes', + m : '\'n minuut', + mm : '%d minute', + h : '\'n uur', + hh : '%d ure', + d : '\'n dag', + dd : '%d dae', + M : '\'n maand', + MM : '%d maande', + y : '\'n jaar', + yy : '%d jaar' + }, + ordinal : function (number) { + return number + ((number === 1 || number === 8 || number >= 20) ? 'ste' : 'de'); // Thanks to Joris Röling : https://github.com/jjupiter + }, + week : { + dow : 1, // Maandag is die eerste dag van die week. + doy : 4 // Die week wat die 4de Januarie bevat is die eerste week van die jaar. + } + }); +})); +// moment.js locale configuration +// locale : Moroccan Arabic (ar-ma) +// author : ElFadili Yassine : https://github.com/ElFadiliY +// author : Abdel Said : https://github.com/abdelsaid + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('ar-ma', { + months : 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split('_'), + monthsShort : 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split('_'), + weekdays : 'الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'), + weekdaysShort : 'احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'), + weekdaysMin : 'ح_ن_ث_ر_خ_ج_س'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd D MMMM YYYY LT' + }, + calendar : { + sameDay: '[اليوم على الساعة] LT', + nextDay: '[غدا على الساعة] LT', + nextWeek: 'dddd [على الساعة] LT', + lastDay: '[أمس على الساعة] LT', + lastWeek: 'dddd [على الساعة] LT', + sameElse: 'L' + }, + relativeTime : { + future : 'في %s', + past : 'منذ %s', + s : 'ثوان', + m : 'دقيقة', + mm : '%d دقائق', + h : 'ساعة', + hh : '%d ساعات', + d : 'يوم', + dd : '%d أيام', + M : 'شهر', + MM : '%d أشهر', + y : 'سنة', + yy : '%d سنوات' + }, + week : { + dow : 6, // Saturday is the first day of the week. + doy : 12 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Arabic Saudi Arabia (ar-sa) +// author : Suhail Alkowaileet : https://github.com/xsoh + +(function (factory) { + factory(moment); +}(function (moment) { + var symbolMap = { + '1': '١', + '2': '٢', + '3': '٣', + '4': '٤', + '5': '٥', + '6': '٦', + '7': '٧', + '8': '٨', + '9': '٩', + '0': '٠' + }, numberMap = { + '١': '1', + '٢': '2', + '٣': '3', + '٤': '4', + '٥': '5', + '٦': '6', + '٧': '7', + '٨': '8', + '٩': '9', + '٠': '0' + }; + + return moment.defineLocale('ar-sa', { + months : 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'), + monthsShort : 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'), + weekdays : 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'), + weekdaysShort : 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'), + weekdaysMin : 'ح_ن_ث_ر_خ_ج_س'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd D MMMM YYYY LT' + }, + meridiem : function (hour, minute, isLower) { + if (hour < 12) { + return 'ص'; + } else { + return 'م'; + } + }, + calendar : { + sameDay: '[اليوم على الساعة] LT', + nextDay: '[غدا على الساعة] LT', + nextWeek: 'dddd [على الساعة] LT', + lastDay: '[أمس على الساعة] LT', + lastWeek: 'dddd [على الساعة] LT', + sameElse: 'L' + }, + relativeTime : { + future : 'في %s', + past : 'منذ %s', + s : 'ثوان', + m : 'دقيقة', + mm : '%d دقائق', + h : 'ساعة', + hh : '%d ساعات', + d : 'يوم', + dd : '%d أيام', + M : 'شهر', + MM : '%d أشهر', + y : 'سنة', + yy : '%d سنوات' + }, + preparse: function (string) { + return string.replace(/[۰-۹]/g, function (match) { + return numberMap[match]; + }).replace(/،/g, ','); + }, + postformat: function (string) { + return string.replace(/\d/g, function (match) { + return symbolMap[match]; + }).replace(/,/g, '،'); + }, + week : { + dow : 6, // Saturday is the first day of the week. + doy : 12 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Arabic (ar) +// author : Abdel Said : https://github.com/abdelsaid +// changes in months, weekdays : Ahmed Elkhatib + +(function (factory) { + factory(moment); +}(function (moment) { + var symbolMap = { + '1': '١', + '2': '٢', + '3': '٣', + '4': '٤', + '5': '٥', + '6': '٦', + '7': '٧', + '8': '٨', + '9': '٩', + '0': '٠' + }, numberMap = { + '١': '1', + '٢': '2', + '٣': '3', + '٤': '4', + '٥': '5', + '٦': '6', + '٧': '7', + '٨': '8', + '٩': '9', + '٠': '0' + }; + + return moment.defineLocale('ar', { + months : 'يناير/ كانون الثاني_فبراير/ شباط_مارس/ آذار_أبريل/ نيسان_مايو/ أيار_يونيو/ حزيران_يوليو/ تموز_أغسطس/ آب_سبتمبر/ أيلول_أكتوبر/ تشرين الأول_نوفمبر/ تشرين الثاني_ديسمبر/ كانون الأول'.split('_'), + monthsShort : 'يناير/ كانون الثاني_فبراير/ شباط_مارس/ آذار_أبريل/ نيسان_مايو/ أيار_يونيو/ حزيران_يوليو/ تموز_أغسطس/ آب_سبتمبر/ أيلول_أكتوبر/ تشرين الأول_نوفمبر/ تشرين الثاني_ديسمبر/ كانون الأول'.split('_'), + weekdays : 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'), + weekdaysShort : 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'), + weekdaysMin : 'ح_ن_ث_ر_خ_ج_س'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd D MMMM YYYY LT' + }, + meridiem : function (hour, minute, isLower) { + if (hour < 12) { + return 'ص'; + } else { + return 'م'; + } + }, + calendar : { + sameDay: '[اليوم على الساعة] LT', + nextDay: '[غدا على الساعة] LT', + nextWeek: 'dddd [على الساعة] LT', + lastDay: '[أمس على الساعة] LT', + lastWeek: 'dddd [على الساعة] LT', + sameElse: 'L' + }, + relativeTime : { + future : 'في %s', + past : 'منذ %s', + s : 'ثوان', + m : 'دقيقة', + mm : '%d دقائق', + h : 'ساعة', + hh : '%d ساعات', + d : 'يوم', + dd : '%d أيام', + M : 'شهر', + MM : '%d أشهر', + y : 'سنة', + yy : '%d سنوات' + }, + preparse: function (string) { + return string.replace(/[۰-۹]/g, function (match) { + return numberMap[match]; + }).replace(/،/g, ','); + }, + postformat: function (string) { + return string.replace(/\d/g, function (match) { + return symbolMap[match]; + }).replace(/,/g, '،'); + }, + week : { + dow : 6, // Saturday is the first day of the week. + doy : 12 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : azerbaijani (az) +// author : topchiyev : https://github.com/topchiyev + +(function (factory) { + factory(moment); +}(function (moment) { + var suffixes = { + 1: '-inci', + 5: '-inci', + 8: '-inci', + 70: '-inci', + 80: '-inci', + + 2: '-nci', + 7: '-nci', + 20: '-nci', + 50: '-nci', + + 3: '-üncü', + 4: '-üncü', + 100: '-üncü', + + 6: '-ncı', + + 9: '-uncu', + 10: '-uncu', + 30: '-uncu', + + 60: '-ıncı', + 90: '-ıncı' + }; + return moment.defineLocale('az', { + months : 'yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr'.split('_'), + monthsShort : 'yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek'.split('_'), + weekdays : 'Bazar_Bazar ertəsi_Çərşənbə axşamı_Çərşənbə_Cümə axşamı_Cümə_Şənbə'.split('_'), + weekdaysShort : 'Baz_BzE_ÇAx_Çər_CAx_Cüm_Şən'.split('_'), + weekdaysMin : 'Bz_BE_ÇA_Çə_CA_Cü_Şə'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD.MM.YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd, D MMMM YYYY LT' + }, + calendar : { + sameDay : '[bugün saat] LT', + nextDay : '[sabah saat] LT', + nextWeek : '[gələn həftə] dddd [saat] LT', + lastDay : '[dünən] LT', + lastWeek : '[keçən həftə] dddd [saat] LT', + sameElse : 'L' + }, + relativeTime : { + future : '%s sonra', + past : '%s əvvəl', + s : 'birneçə saniyyə', + m : 'bir dəqiqə', + mm : '%d dəqiqə', + h : 'bir saat', + hh : '%d saat', + d : 'bir gün', + dd : '%d gün', + M : 'bir ay', + MM : '%d ay', + y : 'bir il', + yy : '%d il' + }, + meridiem : function (hour, minute, isLower) { + if (hour < 4) { + return 'gecə'; + } else if (hour < 12) { + return 'səhər'; + } else if (hour < 17) { + return 'gündüz'; + } else { + return 'axşam'; + } + }, + ordinal : function (number) { + if (number === 0) { // special case for zero + return number + '-ıncı'; + } + var a = number % 10, + b = number % 100 - a, + c = number >= 100 ? 100 : null; + + return number + (suffixes[a] || suffixes[b] || suffixes[c]); + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : belarusian (be) +// author : Dmitry Demidov : https://github.com/demidov91 +// author: Praleska: http://praleska.pro/ +// Author : Menelion Elensúle : https://github.com/Oire + +(function (factory) { + factory(moment); +}(function (moment) { + function plural(word, num) { + var forms = word.split('_'); + return num % 10 === 1 && num % 100 !== 11 ? forms[0] : (num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20) ? forms[1] : forms[2]); + } + + function relativeTimeWithPlural(number, withoutSuffix, key) { + var format = { + 'mm': withoutSuffix ? 'хвіліна_хвіліны_хвілін' : 'хвіліну_хвіліны_хвілін', + 'hh': withoutSuffix ? 'гадзіна_гадзіны_гадзін' : 'гадзіну_гадзіны_гадзін', + 'dd': 'дзень_дні_дзён', + 'MM': 'месяц_месяцы_месяцаў', + 'yy': 'год_гады_гадоў' + }; + if (key === 'm') { + return withoutSuffix ? 'хвіліна' : 'хвіліну'; + } + else if (key === 'h') { + return withoutSuffix ? 'гадзіна' : 'гадзіну'; + } + else { + return number + ' ' + plural(format[key], +number); + } + } + + function monthsCaseReplace(m, format) { + var months = { + 'nominative': 'студзень_люты_сакавік_красавік_травень_чэрвень_ліпень_жнівень_верасень_кастрычнік_лістапад_снежань'.split('_'), + 'accusative': 'студзеня_лютага_сакавіка_красавіка_траўня_чэрвеня_ліпеня_жніўня_верасня_кастрычніка_лістапада_снежня'.split('_') + }, + + nounCase = (/D[oD]?(\[[^\[\]]*\]|\s+)+MMMM?/).test(format) ? + 'accusative' : + 'nominative'; + + return months[nounCase][m.month()]; + } + + function weekdaysCaseReplace(m, format) { + var weekdays = { + 'nominative': 'нядзеля_панядзелак_аўторак_серада_чацвер_пятніца_субота'.split('_'), + 'accusative': 'нядзелю_панядзелак_аўторак_сераду_чацвер_пятніцу_суботу'.split('_') + }, + + nounCase = (/\[ ?[Вв] ?(?:мінулую|наступную)? ?\] ?dddd/).test(format) ? + 'accusative' : + 'nominative'; + + return weekdays[nounCase][m.day()]; + } + + return moment.defineLocale('be', { + months : monthsCaseReplace, + monthsShort : 'студ_лют_сак_крас_трав_чэрв_ліп_жнів_вер_каст_ліст_снеж'.split('_'), + weekdays : weekdaysCaseReplace, + weekdaysShort : 'нд_пн_ат_ср_чц_пт_сб'.split('_'), + weekdaysMin : 'нд_пн_ат_ср_чц_пт_сб'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD.MM.YYYY', + LL : 'D MMMM YYYY г.', + LLL : 'D MMMM YYYY г., LT', + LLLL : 'dddd, D MMMM YYYY г., LT' + }, + calendar : { + sameDay: '[Сёння ў] LT', + nextDay: '[Заўтра ў] LT', + lastDay: '[Учора ў] LT', + nextWeek: function () { + return '[У] dddd [ў] LT'; + }, + lastWeek: function () { + switch (this.day()) { + case 0: + case 3: + case 5: + case 6: + return '[У мінулую] dddd [ў] LT'; + case 1: + case 2: + case 4: + return '[У мінулы] dddd [ў] LT'; + } + }, + sameElse: 'L' + }, + relativeTime : { + future : 'праз %s', + past : '%s таму', + s : 'некалькі секунд', + m : relativeTimeWithPlural, + mm : relativeTimeWithPlural, + h : relativeTimeWithPlural, + hh : relativeTimeWithPlural, + d : 'дзень', + dd : relativeTimeWithPlural, + M : 'месяц', + MM : relativeTimeWithPlural, + y : 'год', + yy : relativeTimeWithPlural + }, + + + meridiem : function (hour, minute, isLower) { + if (hour < 4) { + return 'ночы'; + } else if (hour < 12) { + return 'раніцы'; + } else if (hour < 17) { + return 'дня'; + } else { + return 'вечара'; + } + }, + + ordinal: function (number, period) { + switch (period) { + case 'M': + case 'd': + case 'DDD': + case 'w': + case 'W': + return (number % 10 === 2 || number % 10 === 3) && (number % 100 !== 12 && number % 100 !== 13) ? number + '-і' : number + '-ы'; + case 'D': + return number + '-га'; + default: + return number; + } + }, + + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : bulgarian (bg) +// author : Krasen Borisov : https://github.com/kraz + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('bg', { + months : 'януари_февруари_март_април_май_юни_юли_август_септември_октомври_ноември_декември'.split('_'), + monthsShort : 'янр_фев_мар_апр_май_юни_юли_авг_сеп_окт_ное_дек'.split('_'), + weekdays : 'неделя_понеделник_вторник_сряда_четвъртък_петък_събота'.split('_'), + weekdaysShort : 'нед_пон_вто_сря_чет_пет_съб'.split('_'), + weekdaysMin : 'нд_пн_вт_ср_чт_пт_сб'.split('_'), + longDateFormat : { + LT : 'H:mm', + L : 'D.MM.YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd, D MMMM YYYY LT' + }, + calendar : { + sameDay : '[Днес в] LT', + nextDay : '[Утре в] LT', + nextWeek : 'dddd [в] LT', + lastDay : '[Вчера в] LT', + lastWeek : function () { + switch (this.day()) { + case 0: + case 3: + case 6: + return '[В изминалата] dddd [в] LT'; + case 1: + case 2: + case 4: + case 5: + return '[В изминалия] dddd [в] LT'; + } + }, + sameElse : 'L' + }, + relativeTime : { + future : 'след %s', + past : 'преди %s', + s : 'няколко секунди', + m : 'минута', + mm : '%d минути', + h : 'час', + hh : '%d часа', + d : 'ден', + dd : '%d дни', + M : 'месец', + MM : '%d месеца', + y : 'година', + yy : '%d години' + }, + ordinal : function (number) { + var lastDigit = number % 10, + last2Digits = number % 100; + if (number === 0) { + return number + '-ев'; + } else if (last2Digits === 0) { + return number + '-ен'; + } else if (last2Digits > 10 && last2Digits < 20) { + return number + '-ти'; + } else if (lastDigit === 1) { + return number + '-ви'; + } else if (lastDigit === 2) { + return number + '-ри'; + } else if (lastDigit === 7 || lastDigit === 8) { + return number + '-ми'; + } else { + return number + '-ти'; + } + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Bengali (bn) +// author : Kaushik Gandhi : https://github.com/kaushikgandhi + +(function (factory) { + factory(moment); +}(function (moment) { + var symbolMap = { + '1': '১', + '2': '২', + '3': '৩', + '4': '৪', + '5': '৫', + '6': '৬', + '7': '৭', + '8': '৮', + '9': '৯', + '0': '০' + }, + numberMap = { + '১': '1', + '২': '2', + '৩': '3', + '৪': '4', + '৫': '5', + '৬': '6', + '৭': '7', + '৮': '8', + '৯': '9', + '০': '0' + }; + + return moment.defineLocale('bn', { + months : 'জানুয়ারী_ফেবুয়ারী_মার্চ_এপ্রিল_মে_জুন_জুলাই_অগাস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর'.split('_'), + monthsShort : 'জানু_ফেব_মার্চ_এপর_মে_জুন_জুল_অগ_সেপ্ট_অক্টো_নভ_ডিসেম্'.split('_'), + weekdays : 'রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পত্তিবার_শুক্রুবার_শনিবার'.split('_'), + weekdaysShort : 'রবি_সোম_মঙ্গল_বুধ_বৃহস্পত্তি_শুক্রু_শনি'.split('_'), + weekdaysMin : 'রব_সম_মঙ্গ_বু_ব্রিহ_শু_শনি'.split('_'), + longDateFormat : { + LT : 'A h:mm সময়', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY, LT', + LLLL : 'dddd, D MMMM YYYY, LT' + }, + calendar : { + sameDay : '[আজ] LT', + nextDay : '[আগামীকাল] LT', + nextWeek : 'dddd, LT', + lastDay : '[গতকাল] LT', + lastWeek : '[গত] dddd, LT', + sameElse : 'L' + }, + relativeTime : { + future : '%s পরে', + past : '%s আগে', + s : 'কএক সেকেন্ড', + m : 'এক মিনিট', + mm : '%d মিনিট', + h : 'এক ঘন্টা', + hh : '%d ঘন্টা', + d : 'এক দিন', + dd : '%d দিন', + M : 'এক মাস', + MM : '%d মাস', + y : 'এক বছর', + yy : '%d বছর' + }, + preparse: function (string) { + return string.replace(/[১২৩৪৫৬৭৮৯০]/g, function (match) { + return numberMap[match]; + }); + }, + postformat: function (string) { + return string.replace(/\d/g, function (match) { + return symbolMap[match]; + }); + }, + //Bengali is a vast language its spoken + //in different forms in various parts of the world. + //I have just generalized with most common one used + meridiem : function (hour, minute, isLower) { + if (hour < 4) { + return 'রাত'; + } else if (hour < 10) { + return 'শকাল'; + } else if (hour < 17) { + return 'দুপুর'; + } else if (hour < 20) { + return 'বিকেল'; + } else { + return 'রাত'; + } + }, + week : { + dow : 0, // Sunday is the first day of the week. + doy : 6 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : tibetan (bo) +// author : Thupten N. Chakrishar : https://github.com/vajradog + +(function (factory) { + factory(moment); +}(function (moment) { + var symbolMap = { + '1': '༡', + '2': '༢', + '3': '༣', + '4': '༤', + '5': '༥', + '6': '༦', + '7': '༧', + '8': '༨', + '9': '༩', + '0': '༠' + }, + numberMap = { + '༡': '1', + '༢': '2', + '༣': '3', + '༤': '4', + '༥': '5', + '༦': '6', + '༧': '7', + '༨': '8', + '༩': '9', + '༠': '0' + }; + + return moment.defineLocale('bo', { + months : 'ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ'.split('_'), + monthsShort : 'ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ'.split('_'), + weekdays : 'གཟའ་ཉི་མ་_གཟའ་ཟླ་བ་_གཟའ་མིག་དམར་_གཟའ་ལྷག་པ་_གཟའ་ཕུར་བུ_གཟའ་པ་སངས་_གཟའ་སྤེན་པ་'.split('_'), + weekdaysShort : 'ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་'.split('_'), + weekdaysMin : 'ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་'.split('_'), + longDateFormat : { + LT : 'A h:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY, LT', + LLLL : 'dddd, D MMMM YYYY, LT' + }, + calendar : { + sameDay : '[དི་རིང] LT', + nextDay : '[སང་ཉིན] LT', + nextWeek : '[བདུན་ཕྲག་རྗེས་མ], LT', + lastDay : '[ཁ་སང] LT', + lastWeek : '[བདུན་ཕྲག་མཐའ་མ] dddd, LT', + sameElse : 'L' + }, + relativeTime : { + future : '%s ལ་', + past : '%s སྔན་ལ', + s : 'ལམ་སང', + m : 'སྐར་མ་གཅིག', + mm : '%d སྐར་མ', + h : 'ཆུ་ཚོད་གཅིག', + hh : '%d ཆུ་ཚོད', + d : 'ཉིན་གཅིག', + dd : '%d ཉིན་', + M : 'ཟླ་བ་གཅིག', + MM : '%d ཟླ་བ', + y : 'ལོ་གཅིག', + yy : '%d ལོ' + }, + preparse: function (string) { + return string.replace(/[༡༢༣༤༥༦༧༨༩༠]/g, function (match) { + return numberMap[match]; + }); + }, + postformat: function (string) { + return string.replace(/\d/g, function (match) { + return symbolMap[match]; + }); + }, + meridiem : function (hour, minute, isLower) { + if (hour < 4) { + return 'མཚན་མོ'; + } else if (hour < 10) { + return 'ཞོགས་ཀས'; + } else if (hour < 17) { + return 'ཉིན་གུང'; + } else if (hour < 20) { + return 'དགོང་དག'; + } else { + return 'མཚན་མོ'; + } + }, + week : { + dow : 0, // Sunday is the first day of the week. + doy : 6 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : breton (br) +// author : Jean-Baptiste Le Duigou : https://github.com/jbleduigou + +(function (factory) { + factory(moment); +}(function (moment) { + function relativeTimeWithMutation(number, withoutSuffix, key) { + var format = { + 'mm': 'munutenn', + 'MM': 'miz', + 'dd': 'devezh' + }; + return number + ' ' + mutation(format[key], number); + } + + function specialMutationForYears(number) { + switch (lastNumber(number)) { + case 1: + case 3: + case 4: + case 5: + case 9: + return number + ' bloaz'; + default: + return number + ' vloaz'; + } + } + + function lastNumber(number) { + if (number > 9) { + return lastNumber(number % 10); + } + return number; + } + + function mutation(text, number) { + if (number === 2) { + return softMutation(text); + } + return text; + } + + function softMutation(text) { + var mutationTable = { + 'm': 'v', + 'b': 'v', + 'd': 'z' + }; + if (mutationTable[text.charAt(0)] === undefined) { + return text; + } + return mutationTable[text.charAt(0)] + text.substring(1); + } + + return moment.defineLocale('br', { + months : 'Genver_C\'hwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu'.split('_'), + monthsShort : 'Gen_C\'hwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker'.split('_'), + weekdays : 'Sul_Lun_Meurzh_Merc\'her_Yaou_Gwener_Sadorn'.split('_'), + weekdaysShort : 'Sul_Lun_Meu_Mer_Yao_Gwe_Sad'.split('_'), + weekdaysMin : 'Su_Lu_Me_Mer_Ya_Gw_Sa'.split('_'), + longDateFormat : { + LT : 'h[e]mm A', + L : 'DD/MM/YYYY', + LL : 'D [a viz] MMMM YYYY', + LLL : 'D [a viz] MMMM YYYY LT', + LLLL : 'dddd, D [a viz] MMMM YYYY LT' + }, + calendar : { + sameDay : '[Hiziv da] LT', + nextDay : '[Warc\'hoazh da] LT', + nextWeek : 'dddd [da] LT', + lastDay : '[Dec\'h da] LT', + lastWeek : 'dddd [paset da] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'a-benn %s', + past : '%s \'zo', + s : 'un nebeud segondennoù', + m : 'ur vunutenn', + mm : relativeTimeWithMutation, + h : 'un eur', + hh : '%d eur', + d : 'un devezh', + dd : relativeTimeWithMutation, + M : 'ur miz', + MM : relativeTimeWithMutation, + y : 'ur bloaz', + yy : specialMutationForYears + }, + ordinal : function (number) { + var output = (number === 1) ? 'añ' : 'vet'; + return number + output; + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : bosnian (bs) +// author : Nedim Cholich : https://github.com/frontyard +// based on (hr) translation by Bojan Marković + +(function (factory) { + factory(moment); +}(function (moment) { + function translate(number, withoutSuffix, key) { + var result = number + ' '; + switch (key) { + case 'm': + return withoutSuffix ? 'jedna minuta' : 'jedne minute'; + case 'mm': + if (number === 1) { + result += 'minuta'; + } else if (number === 2 || number === 3 || number === 4) { + result += 'minute'; + } else { + result += 'minuta'; + } + return result; + case 'h': + return withoutSuffix ? 'jedan sat' : 'jednog sata'; + case 'hh': + if (number === 1) { + result += 'sat'; + } else if (number === 2 || number === 3 || number === 4) { + result += 'sata'; + } else { + result += 'sati'; + } + return result; + case 'dd': + if (number === 1) { + result += 'dan'; + } else { + result += 'dana'; + } + return result; + case 'MM': + if (number === 1) { + result += 'mjesec'; + } else if (number === 2 || number === 3 || number === 4) { + result += 'mjeseca'; + } else { + result += 'mjeseci'; + } + return result; + case 'yy': + if (number === 1) { + result += 'godina'; + } else if (number === 2 || number === 3 || number === 4) { + result += 'godine'; + } else { + result += 'godina'; + } + return result; + } + } + + return moment.defineLocale('bs', { + months : 'januar_februar_mart_april_maj_juni_juli_avgust_septembar_oktobar_novembar_decembar'.split('_'), + monthsShort : 'jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.'.split('_'), + weekdays : 'nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota'.split('_'), + weekdaysShort : 'ned._pon._uto._sri._čet._pet._sub.'.split('_'), + weekdaysMin : 'ne_po_ut_sr_če_pe_su'.split('_'), + longDateFormat : { + LT : 'H:mm', + L : 'DD. MM. YYYY', + LL : 'D. MMMM YYYY', + LLL : 'D. MMMM YYYY LT', + LLLL : 'dddd, D. MMMM YYYY LT' + }, + calendar : { + sameDay : '[danas u] LT', + nextDay : '[sutra u] LT', + + nextWeek : function () { + switch (this.day()) { + case 0: + return '[u] [nedjelju] [u] LT'; + case 3: + return '[u] [srijedu] [u] LT'; + case 6: + return '[u] [subotu] [u] LT'; + case 1: + case 2: + case 4: + case 5: + return '[u] dddd [u] LT'; + } + }, + lastDay : '[jučer u] LT', + lastWeek : function () { + switch (this.day()) { + case 0: + case 3: + return '[prošlu] dddd [u] LT'; + case 6: + return '[prošle] [subote] [u] LT'; + case 1: + case 2: + case 4: + case 5: + return '[prošli] dddd [u] LT'; + } + }, + sameElse : 'L' + }, + relativeTime : { + future : 'za %s', + past : 'prije %s', + s : 'par sekundi', + m : translate, + mm : translate, + h : translate, + hh : translate, + d : 'dan', + dd : translate, + M : 'mjesec', + MM : translate, + y : 'godinu', + yy : translate + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : catalan (ca) +// author : Juan G. Hurtado : https://github.com/juanghurtado + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('ca', { + months : 'gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre'.split('_'), + monthsShort : 'gen._febr._mar._abr._mai._jun._jul._ag._set._oct._nov._des.'.split('_'), + weekdays : 'diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte'.split('_'), + weekdaysShort : 'dg._dl._dt._dc._dj._dv._ds.'.split('_'), + weekdaysMin : 'Dg_Dl_Dt_Dc_Dj_Dv_Ds'.split('_'), + longDateFormat : { + LT : 'H:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd D MMMM YYYY LT' + }, + calendar : { + sameDay : function () { + return '[avui a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT'; + }, + nextDay : function () { + return '[demà a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT'; + }, + nextWeek : function () { + return 'dddd [a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT'; + }, + lastDay : function () { + return '[ahir a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT'; + }, + lastWeek : function () { + return '[el] dddd [passat a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT'; + }, + sameElse : 'L' + }, + relativeTime : { + future : 'en %s', + past : 'fa %s', + s : 'uns segons', + m : 'un minut', + mm : '%d minuts', + h : 'una hora', + hh : '%d hores', + d : 'un dia', + dd : '%d dies', + M : 'un mes', + MM : '%d mesos', + y : 'un any', + yy : '%d anys' + }, + ordinal : '%dº', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : czech (cs) +// author : petrbela : https://github.com/petrbela + +(function (factory) { + factory(moment); +}(function (moment) { + var months = 'leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec'.split('_'), + monthsShort = 'led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro'.split('_'); + + function plural(n) { + return (n > 1) && (n < 5) && (~~(n / 10) !== 1); + } + + function translate(number, withoutSuffix, key, isFuture) { + var result = number + ' '; + switch (key) { + case 's': // a few seconds / in a few seconds / a few seconds ago + return (withoutSuffix || isFuture) ? 'pár sekund' : 'pár sekundami'; + case 'm': // a minute / in a minute / a minute ago + return withoutSuffix ? 'minuta' : (isFuture ? 'minutu' : 'minutou'); + case 'mm': // 9 minutes / in 9 minutes / 9 minutes ago + if (withoutSuffix || isFuture) { + return result + (plural(number) ? 'minuty' : 'minut'); + } else { + return result + 'minutami'; + } + break; + case 'h': // an hour / in an hour / an hour ago + return withoutSuffix ? 'hodina' : (isFuture ? 'hodinu' : 'hodinou'); + case 'hh': // 9 hours / in 9 hours / 9 hours ago + if (withoutSuffix || isFuture) { + return result + (plural(number) ? 'hodiny' : 'hodin'); + } else { + return result + 'hodinami'; + } + break; + case 'd': // a day / in a day / a day ago + return (withoutSuffix || isFuture) ? 'den' : 'dnem'; + case 'dd': // 9 days / in 9 days / 9 days ago + if (withoutSuffix || isFuture) { + return result + (plural(number) ? 'dny' : 'dní'); + } else { + return result + 'dny'; + } + break; + case 'M': // a month / in a month / a month ago + return (withoutSuffix || isFuture) ? 'měsíc' : 'měsícem'; + case 'MM': // 9 months / in 9 months / 9 months ago + if (withoutSuffix || isFuture) { + return result + (plural(number) ? 'měsíce' : 'měsíců'); + } else { + return result + 'měsíci'; + } + break; + case 'y': // a year / in a year / a year ago + return (withoutSuffix || isFuture) ? 'rok' : 'rokem'; + case 'yy': // 9 years / in 9 years / 9 years ago + if (withoutSuffix || isFuture) { + return result + (plural(number) ? 'roky' : 'let'); + } else { + return result + 'lety'; + } + break; + } + } + + return moment.defineLocale('cs', { + months : months, + monthsShort : monthsShort, + monthsParse : (function (months, monthsShort) { + var i, _monthsParse = []; + for (i = 0; i < 12; i++) { + // use custom parser to solve problem with July (červenec) + _monthsParse[i] = new RegExp('^' + months[i] + '$|^' + monthsShort[i] + '$', 'i'); + } + return _monthsParse; + }(months, monthsShort)), + weekdays : 'neděle_pondělí_úterý_středa_čtvrtek_pátek_sobota'.split('_'), + weekdaysShort : 'ne_po_út_st_čt_pá_so'.split('_'), + weekdaysMin : 'ne_po_út_st_čt_pá_so'.split('_'), + longDateFormat : { + LT: 'H.mm', + L : 'DD. MM. YYYY', + LL : 'D. MMMM YYYY', + LLL : 'D. MMMM YYYY LT', + LLLL : 'dddd D. MMMM YYYY LT' + }, + calendar : { + sameDay: '[dnes v] LT', + nextDay: '[zítra v] LT', + nextWeek: function () { + switch (this.day()) { + case 0: + return '[v neděli v] LT'; + case 1: + case 2: + return '[v] dddd [v] LT'; + case 3: + return '[ve středu v] LT'; + case 4: + return '[ve čtvrtek v] LT'; + case 5: + return '[v pátek v] LT'; + case 6: + return '[v sobotu v] LT'; + } + }, + lastDay: '[včera v] LT', + lastWeek: function () { + switch (this.day()) { + case 0: + return '[minulou neděli v] LT'; + case 1: + case 2: + return '[minulé] dddd [v] LT'; + case 3: + return '[minulou středu v] LT'; + case 4: + case 5: + return '[minulý] dddd [v] LT'; + case 6: + return '[minulou sobotu v] LT'; + } + }, + sameElse: 'L' + }, + relativeTime : { + future : 'za %s', + past : 'před %s', + s : translate, + m : translate, + mm : translate, + h : translate, + hh : translate, + d : translate, + dd : translate, + M : translate, + MM : translate, + y : translate, + yy : translate + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : chuvash (cv) +// author : Anatoly Mironov : https://github.com/mirontoli + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('cv', { + months : 'кăрлач_нарăс_пуш_ака_май_çĕртме_утă_çурла_авăн_юпа_чӳк_раштав'.split('_'), + monthsShort : 'кăр_нар_пуш_ака_май_çĕр_утă_çур_ав_юпа_чӳк_раш'.split('_'), + weekdays : 'вырсарникун_тунтикун_ытларикун_юнкун_кĕçнерникун_эрнекун_шăматкун'.split('_'), + weekdaysShort : 'выр_тун_ытл_юн_кĕç_эрн_шăм'.split('_'), + weekdaysMin : 'вр_тн_ыт_юн_кç_эр_шм'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD-MM-YYYY', + LL : 'YYYY [çулхи] MMMM [уйăхĕн] D[-мĕшĕ]', + LLL : 'YYYY [çулхи] MMMM [уйăхĕн] D[-мĕшĕ], LT', + LLLL : 'dddd, YYYY [çулхи] MMMM [уйăхĕн] D[-мĕшĕ], LT' + }, + calendar : { + sameDay: '[Паян] LT [сехетре]', + nextDay: '[Ыран] LT [сехетре]', + lastDay: '[Ĕнер] LT [сехетре]', + nextWeek: '[Çитес] dddd LT [сехетре]', + lastWeek: '[Иртнĕ] dddd LT [сехетре]', + sameElse: 'L' + }, + relativeTime : { + future : function (output) { + var affix = /сехет$/i.exec(output) ? 'рен' : /çул$/i.exec(output) ? 'тан' : 'ран'; + return output + affix; + }, + past : '%s каялла', + s : 'пĕр-ик çеккунт', + m : 'пĕр минут', + mm : '%d минут', + h : 'пĕр сехет', + hh : '%d сехет', + d : 'пĕр кун', + dd : '%d кун', + M : 'пĕр уйăх', + MM : '%d уйăх', + y : 'пĕр çул', + yy : '%d çул' + }, + ordinal : '%d-мĕш', + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Welsh (cy) +// author : Robert Allen + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('cy', { + months: 'Ionawr_Chwefror_Mawrth_Ebrill_Mai_Mehefin_Gorffennaf_Awst_Medi_Hydref_Tachwedd_Rhagfyr'.split('_'), + monthsShort: 'Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag'.split('_'), + weekdays: 'Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn'.split('_'), + weekdaysShort: 'Sul_Llun_Maw_Mer_Iau_Gwe_Sad'.split('_'), + weekdaysMin: 'Su_Ll_Ma_Me_Ia_Gw_Sa'.split('_'), + // time formats are the same as en-gb + longDateFormat: { + LT: 'HH:mm', + L: 'DD/MM/YYYY', + LL: 'D MMMM YYYY', + LLL: 'D MMMM YYYY LT', + LLLL: 'dddd, D MMMM YYYY LT' + }, + calendar: { + sameDay: '[Heddiw am] LT', + nextDay: '[Yfory am] LT', + nextWeek: 'dddd [am] LT', + lastDay: '[Ddoe am] LT', + lastWeek: 'dddd [diwethaf am] LT', + sameElse: 'L' + }, + relativeTime: { + future: 'mewn %s', + past: '%s yn ôl', + s: 'ychydig eiliadau', + m: 'munud', + mm: '%d munud', + h: 'awr', + hh: '%d awr', + d: 'diwrnod', + dd: '%d diwrnod', + M: 'mis', + MM: '%d mis', + y: 'blwyddyn', + yy: '%d flynedd' + }, + // traditional ordinal numbers above 31 are not commonly used in colloquial Welsh + ordinal: function (number) { + var b = number, + output = '', + lookup = [ + '', 'af', 'il', 'ydd', 'ydd', 'ed', 'ed', 'ed', 'fed', 'fed', 'fed', // 1af to 10fed + 'eg', 'fed', 'eg', 'eg', 'fed', 'eg', 'eg', 'fed', 'eg', 'fed' // 11eg to 20fed + ]; + + if (b > 20) { + if (b === 40 || b === 50 || b === 60 || b === 80 || b === 100) { + output = 'fed'; // not 30ain, 70ain or 90ain + } else { + output = 'ain'; + } + } else if (b > 0) { + output = lookup[b]; + } + + return number + output; + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : danish (da) +// author : Ulrik Nielsen : https://github.com/mrbase + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('da', { + months : 'januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december'.split('_'), + monthsShort : 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'), + weekdays : 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'), + weekdaysShort : 'søn_man_tir_ons_tor_fre_lør'.split('_'), + weekdaysMin : 'sø_ma_ti_on_to_fr_lø'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D. MMMM YYYY', + LLL : 'D. MMMM YYYY LT', + LLLL : 'dddd [d.] D. MMMM YYYY LT' + }, + calendar : { + sameDay : '[I dag kl.] LT', + nextDay : '[I morgen kl.] LT', + nextWeek : 'dddd [kl.] LT', + lastDay : '[I går kl.] LT', + lastWeek : '[sidste] dddd [kl] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'om %s', + past : '%s siden', + s : 'få sekunder', + m : 'et minut', + mm : '%d minutter', + h : 'en time', + hh : '%d timer', + d : 'en dag', + dd : '%d dage', + M : 'en måned', + MM : '%d måneder', + y : 'et år', + yy : '%d år' + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : austrian german (de-at) +// author : lluchs : https://github.com/lluchs +// author: Menelion Elensúle: https://github.com/Oire +// author : Martin Groller : https://github.com/MadMG + +(function (factory) { + factory(moment); +}(function (moment) { + function processRelativeTime(number, withoutSuffix, key, isFuture) { + var format = { + 'm': ['eine Minute', 'einer Minute'], + 'h': ['eine Stunde', 'einer Stunde'], + 'd': ['ein Tag', 'einem Tag'], + 'dd': [number + ' Tage', number + ' Tagen'], + 'M': ['ein Monat', 'einem Monat'], + 'MM': [number + ' Monate', number + ' Monaten'], + 'y': ['ein Jahr', 'einem Jahr'], + 'yy': [number + ' Jahre', number + ' Jahren'] + }; + return withoutSuffix ? format[key][0] : format[key][1]; + } + + return moment.defineLocale('de-at', { + months : 'Jänner_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'), + monthsShort : 'Jän._Febr._Mrz._Apr._Mai_Jun._Jul._Aug._Sept._Okt._Nov._Dez.'.split('_'), + weekdays : 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split('_'), + weekdaysShort : 'So._Mo._Di._Mi._Do._Fr._Sa.'.split('_'), + weekdaysMin : 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'), + longDateFormat : { + LT: 'HH:mm [Uhr]', + L : 'DD.MM.YYYY', + LL : 'D. MMMM YYYY', + LLL : 'D. MMMM YYYY LT', + LLLL : 'dddd, D. MMMM YYYY LT' + }, + calendar : { + sameDay: '[Heute um] LT', + sameElse: 'L', + nextDay: '[Morgen um] LT', + nextWeek: 'dddd [um] LT', + lastDay: '[Gestern um] LT', + lastWeek: '[letzten] dddd [um] LT' + }, + relativeTime : { + future : 'in %s', + past : 'vor %s', + s : 'ein paar Sekunden', + m : processRelativeTime, + mm : '%d Minuten', + h : processRelativeTime, + hh : '%d Stunden', + d : processRelativeTime, + dd : processRelativeTime, + M : processRelativeTime, + MM : processRelativeTime, + y : processRelativeTime, + yy : processRelativeTime + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : german (de) +// author : lluchs : https://github.com/lluchs +// author: Menelion Elensúle: https://github.com/Oire + +(function (factory) { + factory(moment); +}(function (moment) { + function processRelativeTime(number, withoutSuffix, key, isFuture) { + var format = { + 'm': ['eine Minute', 'einer Minute'], + 'h': ['eine Stunde', 'einer Stunde'], + 'd': ['ein Tag', 'einem Tag'], + 'dd': [number + ' Tage', number + ' Tagen'], + 'M': ['ein Monat', 'einem Monat'], + 'MM': [number + ' Monate', number + ' Monaten'], + 'y': ['ein Jahr', 'einem Jahr'], + 'yy': [number + ' Jahre', number + ' Jahren'] + }; + return withoutSuffix ? format[key][0] : format[key][1]; + } + + return moment.defineLocale('de', { + months : 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'), + monthsShort : 'Jan._Febr._Mrz._Apr._Mai_Jun._Jul._Aug._Sept._Okt._Nov._Dez.'.split('_'), + weekdays : 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split('_'), + weekdaysShort : 'So._Mo._Di._Mi._Do._Fr._Sa.'.split('_'), + weekdaysMin : 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'), + longDateFormat : { + LT: 'HH:mm [Uhr]', + L : 'DD.MM.YYYY', + LL : 'D. MMMM YYYY', + LLL : 'D. MMMM YYYY LT', + LLLL : 'dddd, D. MMMM YYYY LT' + }, + calendar : { + sameDay: '[Heute um] LT', + sameElse: 'L', + nextDay: '[Morgen um] LT', + nextWeek: 'dddd [um] LT', + lastDay: '[Gestern um] LT', + lastWeek: '[letzten] dddd [um] LT' + }, + relativeTime : { + future : 'in %s', + past : 'vor %s', + s : 'ein paar Sekunden', + m : processRelativeTime, + mm : '%d Minuten', + h : processRelativeTime, + hh : '%d Stunden', + d : processRelativeTime, + dd : processRelativeTime, + M : processRelativeTime, + MM : processRelativeTime, + y : processRelativeTime, + yy : processRelativeTime + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : modern greek (el) +// author : Aggelos Karalias : https://github.com/mehiel + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('el', { + monthsNominativeEl : 'Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος'.split('_'), + monthsGenitiveEl : 'Ιανουαρίου_Φεβρουαρίου_Μαρτίου_Απριλίου_Μαΐου_Ιουνίου_Ιουλίου_Αυγούστου_Σεπτεμβρίου_Οκτωβρίου_Νοεμβρίου_Δεκεμβρίου'.split('_'), + months : function (momentToFormat, format) { + if (/D/.test(format.substring(0, format.indexOf('MMMM')))) { // if there is a day number before 'MMMM' + return this._monthsGenitiveEl[momentToFormat.month()]; + } else { + return this._monthsNominativeEl[momentToFormat.month()]; + } + }, + monthsShort : 'Ιαν_Φεβ_Μαρ_Απρ_Μαϊ_Ιουν_Ιουλ_Αυγ_Σεπ_Οκτ_Νοε_Δεκ'.split('_'), + weekdays : 'Κυριακή_Δευτέρα_Τρίτη_Τετάρτη_Πέμπτη_Παρασκευή_Σάββατο'.split('_'), + weekdaysShort : 'Κυρ_Δευ_Τρι_Τετ_Πεμ_Παρ_Σαβ'.split('_'), + weekdaysMin : 'Κυ_Δε_Τρ_Τε_Πε_Πα_Σα'.split('_'), + meridiem : function (hours, minutes, isLower) { + if (hours > 11) { + return isLower ? 'μμ' : 'ΜΜ'; + } else { + return isLower ? 'πμ' : 'ΠΜ'; + } + }, + isPM : function (input) { + return ((input + '').toLowerCase()[0] === 'μ'); + }, + meridiemParse : /[ΠΜ]\.?Μ?\.?/i, + longDateFormat : { + LT : 'h:mm A', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd, D MMMM YYYY LT' + }, + calendarEl : { + sameDay : '[Σήμερα {}] LT', + nextDay : '[Αύριο {}] LT', + nextWeek : 'dddd [{}] LT', + lastDay : '[Χθες {}] LT', + lastWeek : function () { + switch (this.day()) { + case 6: + return '[το προηγούμενο] dddd [{}] LT'; + default: + return '[την προηγούμενη] dddd [{}] LT'; + } + }, + sameElse : 'L' + }, + calendar : function (key, mom) { + var output = this._calendarEl[key], + hours = mom && mom.hours(); + + if (typeof output === 'function') { + output = output.apply(mom); + } + + return output.replace('{}', (hours % 12 === 1 ? 'στη' : 'στις')); + }, + relativeTime : { + future : 'σε %s', + past : '%s πριν', + s : 'δευτερόλεπτα', + m : 'ένα λεπτό', + mm : '%d λεπτά', + h : 'μία ώρα', + hh : '%d ώρες', + d : 'μία μέρα', + dd : '%d μέρες', + M : 'ένας μήνας', + MM : '%d μήνες', + y : 'ένας χρόνος', + yy : '%d χρόνια' + }, + ordinal : function (number) { + return number + 'η'; + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : australian english (en-au) + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('en-au', { + months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'), + monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), + weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'), + weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), + weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), + longDateFormat : { + LT : 'h:mm A', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd, D MMMM YYYY LT' + }, + calendar : { + sameDay : '[Today at] LT', + nextDay : '[Tomorrow at] LT', + nextWeek : 'dddd [at] LT', + lastDay : '[Yesterday at] LT', + lastWeek : '[Last] dddd [at] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'in %s', + past : '%s ago', + s : 'a few seconds', + m : 'a minute', + mm : '%d minutes', + h : 'an hour', + hh : '%d hours', + d : 'a day', + dd : '%d days', + M : 'a month', + MM : '%d months', + y : 'a year', + yy : '%d years' + }, + ordinal : function (number) { + var b = number % 10, + output = (~~(number % 100 / 10) === 1) ? 'th' : + (b === 1) ? 'st' : + (b === 2) ? 'nd' : + (b === 3) ? 'rd' : 'th'; + return number + output; + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : canadian english (en-ca) +// author : Jonathan Abourbih : https://github.com/jonbca + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('en-ca', { + months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'), + monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), + weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'), + weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), + weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), + longDateFormat : { + LT : 'h:mm A', + L : 'YYYY-MM-DD', + LL : 'D MMMM, YYYY', + LLL : 'D MMMM, YYYY LT', + LLLL : 'dddd, D MMMM, YYYY LT' + }, + calendar : { + sameDay : '[Today at] LT', + nextDay : '[Tomorrow at] LT', + nextWeek : 'dddd [at] LT', + lastDay : '[Yesterday at] LT', + lastWeek : '[Last] dddd [at] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'in %s', + past : '%s ago', + s : 'a few seconds', + m : 'a minute', + mm : '%d minutes', + h : 'an hour', + hh : '%d hours', + d : 'a day', + dd : '%d days', + M : 'a month', + MM : '%d months', + y : 'a year', + yy : '%d years' + }, + ordinal : function (number) { + var b = number % 10, + output = (~~(number % 100 / 10) === 1) ? 'th' : + (b === 1) ? 'st' : + (b === 2) ? 'nd' : + (b === 3) ? 'rd' : 'th'; + return number + output; + } + }); +})); +// moment.js locale configuration +// locale : great britain english (en-gb) +// author : Chris Gedrim : https://github.com/chrisgedrim + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('en-gb', { + months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'), + monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), + weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'), + weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), + weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd, D MMMM YYYY LT' + }, + calendar : { + sameDay : '[Today at] LT', + nextDay : '[Tomorrow at] LT', + nextWeek : 'dddd [at] LT', + lastDay : '[Yesterday at] LT', + lastWeek : '[Last] dddd [at] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'in %s', + past : '%s ago', + s : 'a few seconds', + m : 'a minute', + mm : '%d minutes', + h : 'an hour', + hh : '%d hours', + d : 'a day', + dd : '%d days', + M : 'a month', + MM : '%d months', + y : 'a year', + yy : '%d years' + }, + ordinal : function (number) { + var b = number % 10, + output = (~~(number % 100 / 10) === 1) ? 'th' : + (b === 1) ? 'st' : + (b === 2) ? 'nd' : + (b === 3) ? 'rd' : 'th'; + return number + output; + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : esperanto (eo) +// author : Colin Dean : https://github.com/colindean +// komento: Mi estas malcerta se mi korekte traktis akuzativojn en tiu traduko. +// Se ne, bonvolu korekti kaj avizi min por ke mi povas lerni! + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('eo', { + months : 'januaro_februaro_marto_aprilo_majo_junio_julio_aŭgusto_septembro_oktobro_novembro_decembro'.split('_'), + monthsShort : 'jan_feb_mar_apr_maj_jun_jul_aŭg_sep_okt_nov_dec'.split('_'), + weekdays : 'Dimanĉo_Lundo_Mardo_Merkredo_Ĵaŭdo_Vendredo_Sabato'.split('_'), + weekdaysShort : 'Dim_Lun_Mard_Merk_Ĵaŭ_Ven_Sab'.split('_'), + weekdaysMin : 'Di_Lu_Ma_Me_Ĵa_Ve_Sa'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'YYYY-MM-DD', + LL : 'D[-an de] MMMM, YYYY', + LLL : 'D[-an de] MMMM, YYYY LT', + LLLL : 'dddd, [la] D[-an de] MMMM, YYYY LT' + }, + meridiem : function (hours, minutes, isLower) { + if (hours > 11) { + return isLower ? 'p.t.m.' : 'P.T.M.'; + } else { + return isLower ? 'a.t.m.' : 'A.T.M.'; + } + }, + calendar : { + sameDay : '[Hodiaŭ je] LT', + nextDay : '[Morgaŭ je] LT', + nextWeek : 'dddd [je] LT', + lastDay : '[Hieraŭ je] LT', + lastWeek : '[pasinta] dddd [je] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'je %s', + past : 'antaŭ %s', + s : 'sekundoj', + m : 'minuto', + mm : '%d minutoj', + h : 'horo', + hh : '%d horoj', + d : 'tago',//ne 'diurno', ĉar estas uzita por proksimumo + dd : '%d tagoj', + M : 'monato', + MM : '%d monatoj', + y : 'jaro', + yy : '%d jaroj' + }, + ordinal : '%da', + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : spanish (es) +// author : Julio Napurí : https://github.com/julionc + +(function (factory) { + factory(moment); +}(function (moment) { + var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split('_'), + monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'); + + return moment.defineLocale('es', { + months : 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split('_'), + monthsShort : function (m, format) { + if (/-MMM-/.test(format)) { + return monthsShort[m.month()]; + } else { + return monthsShortDot[m.month()]; + } + }, + weekdays : 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'), + weekdaysShort : 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'), + weekdaysMin : 'Do_Lu_Ma_Mi_Ju_Vi_Sá'.split('_'), + longDateFormat : { + LT : 'H:mm', + L : 'DD/MM/YYYY', + LL : 'D [de] MMMM [de] YYYY', + LLL : 'D [de] MMMM [de] YYYY LT', + LLLL : 'dddd, D [de] MMMM [de] YYYY LT' + }, + calendar : { + sameDay : function () { + return '[hoy a la' + ((this.hours() !== 1) ? 's' : '') + '] LT'; + }, + nextDay : function () { + return '[mañana a la' + ((this.hours() !== 1) ? 's' : '') + '] LT'; + }, + nextWeek : function () { + return 'dddd [a la' + ((this.hours() !== 1) ? 's' : '') + '] LT'; + }, + lastDay : function () { + return '[ayer a la' + ((this.hours() !== 1) ? 's' : '') + '] LT'; + }, + lastWeek : function () { + return '[el] dddd [pasado a la' + ((this.hours() !== 1) ? 's' : '') + '] LT'; + }, + sameElse : 'L' + }, + relativeTime : { + future : 'en %s', + past : 'hace %s', + s : 'unos segundos', + m : 'un minuto', + mm : '%d minutos', + h : 'una hora', + hh : '%d horas', + d : 'un día', + dd : '%d días', + M : 'un mes', + MM : '%d meses', + y : 'un año', + yy : '%d años' + }, + ordinal : '%dº', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : estonian (et) +// author : Henry Kehlmann : https://github.com/madhenry +// improvements : Illimar Tambek : https://github.com/ragulka + +(function (factory) { + factory(moment); +}(function (moment) { + function processRelativeTime(number, withoutSuffix, key, isFuture) { + var format = { + 's' : ['mõne sekundi', 'mõni sekund', 'paar sekundit'], + 'm' : ['ühe minuti', 'üks minut'], + 'mm': [number + ' minuti', number + ' minutit'], + 'h' : ['ühe tunni', 'tund aega', 'üks tund'], + 'hh': [number + ' tunni', number + ' tundi'], + 'd' : ['ühe päeva', 'üks päev'], + 'M' : ['kuu aja', 'kuu aega', 'üks kuu'], + 'MM': [number + ' kuu', number + ' kuud'], + 'y' : ['ühe aasta', 'aasta', 'üks aasta'], + 'yy': [number + ' aasta', number + ' aastat'] + }; + if (withoutSuffix) { + return format[key][2] ? format[key][2] : format[key][1]; + } + return isFuture ? format[key][0] : format[key][1]; + } + + return moment.defineLocale('et', { + months : 'jaanuar_veebruar_märts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember'.split('_'), + monthsShort : 'jaan_veebr_märts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets'.split('_'), + weekdays : 'pühapäev_esmaspäev_teisipäev_kolmapäev_neljapäev_reede_laupäev'.split('_'), + weekdaysShort : 'P_E_T_K_N_R_L'.split('_'), + weekdaysMin : 'P_E_T_K_N_R_L'.split('_'), + longDateFormat : { + LT : 'H:mm', + L : 'DD.MM.YYYY', + LL : 'D. MMMM YYYY', + LLL : 'D. MMMM YYYY LT', + LLLL : 'dddd, D. MMMM YYYY LT' + }, + calendar : { + sameDay : '[Täna,] LT', + nextDay : '[Homme,] LT', + nextWeek : '[Järgmine] dddd LT', + lastDay : '[Eile,] LT', + lastWeek : '[Eelmine] dddd LT', + sameElse : 'L' + }, + relativeTime : { + future : '%s pärast', + past : '%s tagasi', + s : processRelativeTime, + m : processRelativeTime, + mm : processRelativeTime, + h : processRelativeTime, + hh : processRelativeTime, + d : processRelativeTime, + dd : '%d päeva', + M : processRelativeTime, + MM : processRelativeTime, + y : processRelativeTime, + yy : processRelativeTime + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : euskara (eu) +// author : Eneko Illarramendi : https://github.com/eillarra + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('eu', { + months : 'urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua'.split('_'), + monthsShort : 'urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.'.split('_'), + weekdays : 'igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata'.split('_'), + weekdaysShort : 'ig._al._ar._az._og._ol._lr.'.split('_'), + weekdaysMin : 'ig_al_ar_az_og_ol_lr'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'YYYY-MM-DD', + LL : 'YYYY[ko] MMMM[ren] D[a]', + LLL : 'YYYY[ko] MMMM[ren] D[a] LT', + LLLL : 'dddd, YYYY[ko] MMMM[ren] D[a] LT', + l : 'YYYY-M-D', + ll : 'YYYY[ko] MMM D[a]', + lll : 'YYYY[ko] MMM D[a] LT', + llll : 'ddd, YYYY[ko] MMM D[a] LT' + }, + calendar : { + sameDay : '[gaur] LT[etan]', + nextDay : '[bihar] LT[etan]', + nextWeek : 'dddd LT[etan]', + lastDay : '[atzo] LT[etan]', + lastWeek : '[aurreko] dddd LT[etan]', + sameElse : 'L' + }, + relativeTime : { + future : '%s barru', + past : 'duela %s', + s : 'segundo batzuk', + m : 'minutu bat', + mm : '%d minutu', + h : 'ordu bat', + hh : '%d ordu', + d : 'egun bat', + dd : '%d egun', + M : 'hilabete bat', + MM : '%d hilabete', + y : 'urte bat', + yy : '%d urte' + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Persian (fa) +// author : Ebrahim Byagowi : https://github.com/ebraminio + +(function (factory) { + factory(moment); +}(function (moment) { + var symbolMap = { + '1': '۱', + '2': '۲', + '3': '۳', + '4': '۴', + '5': '۵', + '6': '۶', + '7': '۷', + '8': '۸', + '9': '۹', + '0': '۰' + }, numberMap = { + '۱': '1', + '۲': '2', + '۳': '3', + '۴': '4', + '۵': '5', + '۶': '6', + '۷': '7', + '۸': '8', + '۹': '9', + '۰': '0' + }; + + return moment.defineLocale('fa', { + months : 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split('_'), + monthsShort : 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split('_'), + weekdays : 'یک\u200cشنبه_دوشنبه_سه\u200cشنبه_چهارشنبه_پنج\u200cشنبه_جمعه_شنبه'.split('_'), + weekdaysShort : 'یک\u200cشنبه_دوشنبه_سه\u200cشنبه_چهارشنبه_پنج\u200cشنبه_جمعه_شنبه'.split('_'), + weekdaysMin : 'ی_د_س_چ_پ_ج_ش'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd, D MMMM YYYY LT' + }, + meridiem : function (hour, minute, isLower) { + if (hour < 12) { + return 'قبل از ظهر'; + } else { + return 'بعد از ظهر'; + } + }, + calendar : { + sameDay : '[امروز ساعت] LT', + nextDay : '[فردا ساعت] LT', + nextWeek : 'dddd [ساعت] LT', + lastDay : '[دیروز ساعت] LT', + lastWeek : 'dddd [پیش] [ساعت] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'در %s', + past : '%s پیش', + s : 'چندین ثانیه', + m : 'یک دقیقه', + mm : '%d دقیقه', + h : 'یک ساعت', + hh : '%d ساعت', + d : 'یک روز', + dd : '%d روز', + M : 'یک ماه', + MM : '%d ماه', + y : 'یک سال', + yy : '%d سال' + }, + preparse: function (string) { + return string.replace(/[۰-۹]/g, function (match) { + return numberMap[match]; + }).replace(/،/g, ','); + }, + postformat: function (string) { + return string.replace(/\d/g, function (match) { + return symbolMap[match]; + }).replace(/,/g, '،'); + }, + ordinal : '%dم', + week : { + dow : 6, // Saturday is the first day of the week. + doy : 12 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : finnish (fi) +// author : Tarmo Aidantausta : https://github.com/bleadof + +(function (factory) { + factory(moment); +}(function (moment) { + var numbersPast = 'nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän'.split(' '), + numbersFuture = [ + 'nolla', 'yhden', 'kahden', 'kolmen', 'neljän', 'viiden', 'kuuden', + numbersPast[7], numbersPast[8], numbersPast[9] + ]; + + function translate(number, withoutSuffix, key, isFuture) { + var result = ''; + switch (key) { + case 's': + return isFuture ? 'muutaman sekunnin' : 'muutama sekunti'; + case 'm': + return isFuture ? 'minuutin' : 'minuutti'; + case 'mm': + result = isFuture ? 'minuutin' : 'minuuttia'; + break; + case 'h': + return isFuture ? 'tunnin' : 'tunti'; + case 'hh': + result = isFuture ? 'tunnin' : 'tuntia'; + break; + case 'd': + return isFuture ? 'päivän' : 'päivä'; + case 'dd': + result = isFuture ? 'päivän' : 'päivää'; + break; + case 'M': + return isFuture ? 'kuukauden' : 'kuukausi'; + case 'MM': + result = isFuture ? 'kuukauden' : 'kuukautta'; + break; + case 'y': + return isFuture ? 'vuoden' : 'vuosi'; + case 'yy': + result = isFuture ? 'vuoden' : 'vuotta'; + break; + } + result = verbalNumber(number, isFuture) + ' ' + result; + return result; + } + + function verbalNumber(number, isFuture) { + return number < 10 ? (isFuture ? numbersFuture[number] : numbersPast[number]) : number; + } + + return moment.defineLocale('fi', { + months : 'tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu'.split('_'), + monthsShort : 'tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu'.split('_'), + weekdays : 'sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai'.split('_'), + weekdaysShort : 'su_ma_ti_ke_to_pe_la'.split('_'), + weekdaysMin : 'su_ma_ti_ke_to_pe_la'.split('_'), + longDateFormat : { + LT : 'HH.mm', + L : 'DD.MM.YYYY', + LL : 'Do MMMM[ta] YYYY', + LLL : 'Do MMMM[ta] YYYY, [klo] LT', + LLLL : 'dddd, Do MMMM[ta] YYYY, [klo] LT', + l : 'D.M.YYYY', + ll : 'Do MMM YYYY', + lll : 'Do MMM YYYY, [klo] LT', + llll : 'ddd, Do MMM YYYY, [klo] LT' + }, + calendar : { + sameDay : '[tänään] [klo] LT', + nextDay : '[huomenna] [klo] LT', + nextWeek : 'dddd [klo] LT', + lastDay : '[eilen] [klo] LT', + lastWeek : '[viime] dddd[na] [klo] LT', + sameElse : 'L' + }, + relativeTime : { + future : '%s päästä', + past : '%s sitten', + s : translate, + m : translate, + mm : translate, + h : translate, + hh : translate, + d : translate, + dd : translate, + M : translate, + MM : translate, + y : translate, + yy : translate + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : faroese (fo) +// author : Ragnar Johannesen : https://github.com/ragnar123 + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('fo', { + months : 'januar_februar_mars_apríl_mai_juni_juli_august_september_oktober_november_desember'.split('_'), + monthsShort : 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'), + weekdays : 'sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_fríggjadagur_leygardagur'.split('_'), + weekdaysShort : 'sun_mán_týs_mik_hós_frí_ley'.split('_'), + weekdaysMin : 'su_má_tý_mi_hó_fr_le'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd D. MMMM, YYYY LT' + }, + calendar : { + sameDay : '[Í dag kl.] LT', + nextDay : '[Í morgin kl.] LT', + nextWeek : 'dddd [kl.] LT', + lastDay : '[Í gjár kl.] LT', + lastWeek : '[síðstu] dddd [kl] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'um %s', + past : '%s síðani', + s : 'fá sekund', + m : 'ein minutt', + mm : '%d minuttir', + h : 'ein tími', + hh : '%d tímar', + d : 'ein dagur', + dd : '%d dagar', + M : 'ein mánaði', + MM : '%d mánaðir', + y : 'eitt ár', + yy : '%d ár' + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : canadian french (fr-ca) +// author : Jonathan Abourbih : https://github.com/jonbca + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('fr-ca', { + months : 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split('_'), + monthsShort : 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split('_'), + weekdays : 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'), + weekdaysShort : 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'), + weekdaysMin : 'Di_Lu_Ma_Me_Je_Ve_Sa'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'YYYY-MM-DD', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd D MMMM YYYY LT' + }, + calendar : { + sameDay: '[Aujourd\'hui à] LT', + nextDay: '[Demain à] LT', + nextWeek: 'dddd [à] LT', + lastDay: '[Hier à] LT', + lastWeek: 'dddd [dernier à] LT', + sameElse: 'L' + }, + relativeTime : { + future : 'dans %s', + past : 'il y a %s', + s : 'quelques secondes', + m : 'une minute', + mm : '%d minutes', + h : 'une heure', + hh : '%d heures', + d : 'un jour', + dd : '%d jours', + M : 'un mois', + MM : '%d mois', + y : 'un an', + yy : '%d ans' + }, + ordinal : function (number) { + return number + (number === 1 ? 'er' : ''); + } + }); +})); +// moment.js locale configuration +// locale : french (fr) +// author : John Fischer : https://github.com/jfroffice + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('fr', { + months : 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split('_'), + monthsShort : 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split('_'), + weekdays : 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'), + weekdaysShort : 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'), + weekdaysMin : 'Di_Lu_Ma_Me_Je_Ve_Sa'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd D MMMM YYYY LT' + }, + calendar : { + sameDay: '[Aujourd\'hui à] LT', + nextDay: '[Demain à] LT', + nextWeek: 'dddd [à] LT', + lastDay: '[Hier à] LT', + lastWeek: 'dddd [dernier à] LT', + sameElse: 'L' + }, + relativeTime : { + future : 'dans %s', + past : 'il y a %s', + s : 'quelques secondes', + m : 'une minute', + mm : '%d minutes', + h : 'une heure', + hh : '%d heures', + d : 'un jour', + dd : '%d jours', + M : 'un mois', + MM : '%d mois', + y : 'un an', + yy : '%d ans' + }, + ordinal : function (number) { + return number + (number === 1 ? 'er' : ''); + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : galician (gl) +// author : Juan G. Hurtado : https://github.com/juanghurtado + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('gl', { + months : 'Xaneiro_Febreiro_Marzo_Abril_Maio_Xuño_Xullo_Agosto_Setembro_Outubro_Novembro_Decembro'.split('_'), + monthsShort : 'Xan._Feb._Mar._Abr._Mai._Xuñ._Xul._Ago._Set._Out._Nov._Dec.'.split('_'), + weekdays : 'Domingo_Luns_Martes_Mércores_Xoves_Venres_Sábado'.split('_'), + weekdaysShort : 'Dom._Lun._Mar._Mér._Xov._Ven._Sáb.'.split('_'), + weekdaysMin : 'Do_Lu_Ma_Mé_Xo_Ve_Sá'.split('_'), + longDateFormat : { + LT : 'H:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd D MMMM YYYY LT' + }, + calendar : { + sameDay : function () { + return '[hoxe ' + ((this.hours() !== 1) ? 'ás' : 'á') + '] LT'; + }, + nextDay : function () { + return '[mañá ' + ((this.hours() !== 1) ? 'ás' : 'á') + '] LT'; + }, + nextWeek : function () { + return 'dddd [' + ((this.hours() !== 1) ? 'ás' : 'a') + '] LT'; + }, + lastDay : function () { + return '[onte ' + ((this.hours() !== 1) ? 'á' : 'a') + '] LT'; + }, + lastWeek : function () { + return '[o] dddd [pasado ' + ((this.hours() !== 1) ? 'ás' : 'a') + '] LT'; + }, + sameElse : 'L' + }, + relativeTime : { + future : function (str) { + if (str === 'uns segundos') { + return 'nuns segundos'; + } + return 'en ' + str; + }, + past : 'hai %s', + s : 'uns segundos', + m : 'un minuto', + mm : '%d minutos', + h : 'unha hora', + hh : '%d horas', + d : 'un día', + dd : '%d días', + M : 'un mes', + MM : '%d meses', + y : 'un ano', + yy : '%d anos' + }, + ordinal : '%dº', + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Hebrew (he) +// author : Tomer Cohen : https://github.com/tomer +// author : Moshe Simantov : https://github.com/DevelopmentIL +// author : Tal Ater : https://github.com/TalAter + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('he', { + months : 'ינואר_פברואר_מרץ_אפריל_מאי_יוני_יולי_אוגוסט_ספטמבר_אוקטובר_נובמבר_דצמבר'.split('_'), + monthsShort : 'ינו׳_פבר׳_מרץ_אפר׳_מאי_יוני_יולי_אוג׳_ספט׳_אוק׳_נוב׳_דצמ׳'.split('_'), + weekdays : 'ראשון_שני_שלישי_רביעי_חמישי_שישי_שבת'.split('_'), + weekdaysShort : 'א׳_ב׳_ג׳_ד׳_ה׳_ו׳_ש׳'.split('_'), + weekdaysMin : 'א_ב_ג_ד_ה_ו_ש'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D [ב]MMMM YYYY', + LLL : 'D [ב]MMMM YYYY LT', + LLLL : 'dddd, D [ב]MMMM YYYY LT', + l : 'D/M/YYYY', + ll : 'D MMM YYYY', + lll : 'D MMM YYYY LT', + llll : 'ddd, D MMM YYYY LT' + }, + calendar : { + sameDay : '[היום ב־]LT', + nextDay : '[מחר ב־]LT', + nextWeek : 'dddd [בשעה] LT', + lastDay : '[אתמול ב־]LT', + lastWeek : '[ביום] dddd [האחרון בשעה] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'בעוד %s', + past : 'לפני %s', + s : 'מספר שניות', + m : 'דקה', + mm : '%d דקות', + h : 'שעה', + hh : function (number) { + if (number === 2) { + return 'שעתיים'; + } + return number + ' שעות'; + }, + d : 'יום', + dd : function (number) { + if (number === 2) { + return 'יומיים'; + } + return number + ' ימים'; + }, + M : 'חודש', + MM : function (number) { + if (number === 2) { + return 'חודשיים'; + } + return number + ' חודשים'; + }, + y : 'שנה', + yy : function (number) { + if (number === 2) { + return 'שנתיים'; + } + return number + ' שנים'; + } + } + }); +})); +// moment.js locale configuration +// locale : hindi (hi) +// author : Mayank Singhal : https://github.com/mayanksinghal + +(function (factory) { + factory(moment); +}(function (moment) { + var symbolMap = { + '1': '१', + '2': '२', + '3': '३', + '4': '४', + '5': '५', + '6': '६', + '7': '७', + '8': '८', + '9': '९', + '0': '०' + }, + numberMap = { + '१': '1', + '२': '2', + '३': '3', + '४': '4', + '५': '5', + '६': '6', + '७': '7', + '८': '8', + '९': '9', + '०': '0' + }; + + return moment.defineLocale('hi', { + months : 'जनवरी_फ़रवरी_मार्च_अप्रैल_मई_जून_जुलाई_अगस्त_सितम्बर_अक्टूबर_नवम्बर_दिसम्बर'.split('_'), + monthsShort : 'जन._फ़र._मार्च_अप्रै._मई_जून_जुल._अग._सित._अक्टू._नव._दिस.'.split('_'), + weekdays : 'रविवार_सोमवार_मंगलवार_बुधवार_गुरूवार_शुक्रवार_शनिवार'.split('_'), + weekdaysShort : 'रवि_सोम_मंगल_बुध_गुरू_शुक्र_शनि'.split('_'), + weekdaysMin : 'र_सो_मं_बु_गु_शु_श'.split('_'), + longDateFormat : { + LT : 'A h:mm बजे', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY, LT', + LLLL : 'dddd, D MMMM YYYY, LT' + }, + calendar : { + sameDay : '[आज] LT', + nextDay : '[कल] LT', + nextWeek : 'dddd, LT', + lastDay : '[कल] LT', + lastWeek : '[पिछले] dddd, LT', + sameElse : 'L' + }, + relativeTime : { + future : '%s में', + past : '%s पहले', + s : 'कुछ ही क्षण', + m : 'एक मिनट', + mm : '%d मिनट', + h : 'एक घंटा', + hh : '%d घंटे', + d : 'एक दिन', + dd : '%d दिन', + M : 'एक महीने', + MM : '%d महीने', + y : 'एक वर्ष', + yy : '%d वर्ष' + }, + preparse: function (string) { + return string.replace(/[१२३४५६७८९०]/g, function (match) { + return numberMap[match]; + }); + }, + postformat: function (string) { + return string.replace(/\d/g, function (match) { + return symbolMap[match]; + }); + }, + // Hindi notation for meridiems are quite fuzzy in practice. While there exists + // a rigid notion of a 'Pahar' it is not used as rigidly in modern Hindi. + meridiem : function (hour, minute, isLower) { + if (hour < 4) { + return 'रात'; + } else if (hour < 10) { + return 'सुबह'; + } else if (hour < 17) { + return 'दोपहर'; + } else if (hour < 20) { + return 'शाम'; + } else { + return 'रात'; + } + }, + week : { + dow : 0, // Sunday is the first day of the week. + doy : 6 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : hrvatski (hr) +// author : Bojan Marković : https://github.com/bmarkovic + +// based on (sl) translation by Robert Sedovšek + +(function (factory) { + factory(moment); +}(function (moment) { + function translate(number, withoutSuffix, key) { + var result = number + ' '; + switch (key) { + case 'm': + return withoutSuffix ? 'jedna minuta' : 'jedne minute'; + case 'mm': + if (number === 1) { + result += 'minuta'; + } else if (number === 2 || number === 3 || number === 4) { + result += 'minute'; + } else { + result += 'minuta'; + } + return result; + case 'h': + return withoutSuffix ? 'jedan sat' : 'jednog sata'; + case 'hh': + if (number === 1) { + result += 'sat'; + } else if (number === 2 || number === 3 || number === 4) { + result += 'sata'; + } else { + result += 'sati'; + } + return result; + case 'dd': + if (number === 1) { + result += 'dan'; + } else { + result += 'dana'; + } + return result; + case 'MM': + if (number === 1) { + result += 'mjesec'; + } else if (number === 2 || number === 3 || number === 4) { + result += 'mjeseca'; + } else { + result += 'mjeseci'; + } + return result; + case 'yy': + if (number === 1) { + result += 'godina'; + } else if (number === 2 || number === 3 || number === 4) { + result += 'godine'; + } else { + result += 'godina'; + } + return result; + } + } + + return moment.defineLocale('hr', { + months : 'sječanj_veljača_ožujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac'.split('_'), + monthsShort : 'sje._vel._ožu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.'.split('_'), + weekdays : 'nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota'.split('_'), + weekdaysShort : 'ned._pon._uto._sri._čet._pet._sub.'.split('_'), + weekdaysMin : 'ne_po_ut_sr_če_pe_su'.split('_'), + longDateFormat : { + LT : 'H:mm', + L : 'DD. MM. YYYY', + LL : 'D. MMMM YYYY', + LLL : 'D. MMMM YYYY LT', + LLLL : 'dddd, D. MMMM YYYY LT' + }, + calendar : { + sameDay : '[danas u] LT', + nextDay : '[sutra u] LT', + + nextWeek : function () { + switch (this.day()) { + case 0: + return '[u] [nedjelju] [u] LT'; + case 3: + return '[u] [srijedu] [u] LT'; + case 6: + return '[u] [subotu] [u] LT'; + case 1: + case 2: + case 4: + case 5: + return '[u] dddd [u] LT'; + } + }, + lastDay : '[jučer u] LT', + lastWeek : function () { + switch (this.day()) { + case 0: + case 3: + return '[prošlu] dddd [u] LT'; + case 6: + return '[prošle] [subote] [u] LT'; + case 1: + case 2: + case 4: + case 5: + return '[prošli] dddd [u] LT'; + } + }, + sameElse : 'L' + }, + relativeTime : { + future : 'za %s', + past : 'prije %s', + s : 'par sekundi', + m : translate, + mm : translate, + h : translate, + hh : translate, + d : 'dan', + dd : translate, + M : 'mjesec', + MM : translate, + y : 'godinu', + yy : translate + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : hungarian (hu) +// author : Adam Brunner : https://github.com/adambrunner + +(function (factory) { + factory(moment); +}(function (moment) { + var weekEndings = 'vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton'.split(' '); + + function translate(number, withoutSuffix, key, isFuture) { + var num = number, + suffix; + + switch (key) { + case 's': + return (isFuture || withoutSuffix) ? 'néhány másodperc' : 'néhány másodperce'; + case 'm': + return 'egy' + (isFuture || withoutSuffix ? ' perc' : ' perce'); + case 'mm': + return num + (isFuture || withoutSuffix ? ' perc' : ' perce'); + case 'h': + return 'egy' + (isFuture || withoutSuffix ? ' óra' : ' órája'); + case 'hh': + return num + (isFuture || withoutSuffix ? ' óra' : ' órája'); + case 'd': + return 'egy' + (isFuture || withoutSuffix ? ' nap' : ' napja'); + case 'dd': + return num + (isFuture || withoutSuffix ? ' nap' : ' napja'); + case 'M': + return 'egy' + (isFuture || withoutSuffix ? ' hónap' : ' hónapja'); + case 'MM': + return num + (isFuture || withoutSuffix ? ' hónap' : ' hónapja'); + case 'y': + return 'egy' + (isFuture || withoutSuffix ? ' év' : ' éve'); + case 'yy': + return num + (isFuture || withoutSuffix ? ' év' : ' éve'); + } + + return ''; + } + + function week(isFuture) { + return (isFuture ? '' : '[múlt] ') + '[' + weekEndings[this.day()] + '] LT[-kor]'; + } + + return moment.defineLocale('hu', { + months : 'január_február_március_április_május_június_július_augusztus_szeptember_október_november_december'.split('_'), + monthsShort : 'jan_feb_márc_ápr_máj_jún_júl_aug_szept_okt_nov_dec'.split('_'), + weekdays : 'vasárnap_hétfő_kedd_szerda_csütörtök_péntek_szombat'.split('_'), + weekdaysShort : 'vas_hét_kedd_sze_csüt_pén_szo'.split('_'), + weekdaysMin : 'v_h_k_sze_cs_p_szo'.split('_'), + longDateFormat : { + LT : 'H:mm', + L : 'YYYY.MM.DD.', + LL : 'YYYY. MMMM D.', + LLL : 'YYYY. MMMM D., LT', + LLLL : 'YYYY. MMMM D., dddd LT' + }, + meridiem : function (hours, minutes, isLower) { + if (hours < 12) { + return isLower === true ? 'de' : 'DE'; + } else { + return isLower === true ? 'du' : 'DU'; + } + }, + calendar : { + sameDay : '[ma] LT[-kor]', + nextDay : '[holnap] LT[-kor]', + nextWeek : function () { + return week.call(this, true); + }, + lastDay : '[tegnap] LT[-kor]', + lastWeek : function () { + return week.call(this, false); + }, + sameElse : 'L' + }, + relativeTime : { + future : '%s múlva', + past : '%s', + s : translate, + m : translate, + mm : translate, + h : translate, + hh : translate, + d : translate, + dd : translate, + M : translate, + MM : translate, + y : translate, + yy : translate + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Armenian (hy-am) +// author : Armendarabyan : https://github.com/armendarabyan + +(function (factory) { + factory(moment); +}(function (moment) { + function monthsCaseReplace(m, format) { + var months = { + 'nominative': 'հունվար_փետրվար_մարտ_ապրիլ_մայիս_հունիս_հուլիս_օգոստոս_սեպտեմբեր_հոկտեմբեր_նոյեմբեր_դեկտեմբեր'.split('_'), + 'accusative': 'հունվարի_փետրվարի_մարտի_ապրիլի_մայիսի_հունիսի_հուլիսի_օգոստոսի_սեպտեմբերի_հոկտեմբերի_նոյեմբերի_դեկտեմբերի'.split('_') + }, + + nounCase = (/D[oD]?(\[[^\[\]]*\]|\s+)+MMMM?/).test(format) ? + 'accusative' : + 'nominative'; + + return months[nounCase][m.month()]; + } + + function monthsShortCaseReplace(m, format) { + var monthsShort = 'հնվ_փտր_մրտ_ապր_մյս_հնս_հլս_օգս_սպտ_հկտ_նմբ_դկտ'.split('_'); + + return monthsShort[m.month()]; + } + + function weekdaysCaseReplace(m, format) { + var weekdays = 'կիրակի_երկուշաբթի_երեքշաբթի_չորեքշաբթի_հինգշաբթի_ուրբաթ_շաբաթ'.split('_'); + + return weekdays[m.day()]; + } + + return moment.defineLocale('hy-am', { + months : monthsCaseReplace, + monthsShort : monthsShortCaseReplace, + weekdays : weekdaysCaseReplace, + weekdaysShort : 'կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ'.split('_'), + weekdaysMin : 'կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD.MM.YYYY', + LL : 'D MMMM YYYY թ.', + LLL : 'D MMMM YYYY թ., LT', + LLLL : 'dddd, D MMMM YYYY թ., LT' + }, + calendar : { + sameDay: '[այսօր] LT', + nextDay: '[վաղը] LT', + lastDay: '[երեկ] LT', + nextWeek: function () { + return 'dddd [օրը ժամը] LT'; + }, + lastWeek: function () { + return '[անցած] dddd [օրը ժամը] LT'; + }, + sameElse: 'L' + }, + relativeTime : { + future : '%s հետո', + past : '%s առաջ', + s : 'մի քանի վայրկյան', + m : 'րոպե', + mm : '%d րոպե', + h : 'ժամ', + hh : '%d ժամ', + d : 'օր', + dd : '%d օր', + M : 'ամիս', + MM : '%d ամիս', + y : 'տարի', + yy : '%d տարի' + }, + + meridiem : function (hour) { + if (hour < 4) { + return 'գիշերվա'; + } else if (hour < 12) { + return 'առավոտվա'; + } else if (hour < 17) { + return 'ցերեկվա'; + } else { + return 'երեկոյան'; + } + }, + + ordinal: function (number, period) { + switch (period) { + case 'DDD': + case 'w': + case 'W': + case 'DDDo': + if (number === 1) { + return number + '-ին'; + } + return number + '-րդ'; + default: + return number; + } + }, + + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Bahasa Indonesia (id) +// author : Mohammad Satrio Utomo : https://github.com/tyok +// reference: http://id.wikisource.org/wiki/Pedoman_Umum_Ejaan_Bahasa_Indonesia_yang_Disempurnakan + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('id', { + months : 'Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember'.split('_'), + monthsShort : 'Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nov_Des'.split('_'), + weekdays : 'Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu'.split('_'), + weekdaysShort : 'Min_Sen_Sel_Rab_Kam_Jum_Sab'.split('_'), + weekdaysMin : 'Mg_Sn_Sl_Rb_Km_Jm_Sb'.split('_'), + longDateFormat : { + LT : 'HH.mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY [pukul] LT', + LLLL : 'dddd, D MMMM YYYY [pukul] LT' + }, + meridiem : function (hours, minutes, isLower) { + if (hours < 11) { + return 'pagi'; + } else if (hours < 15) { + return 'siang'; + } else if (hours < 19) { + return 'sore'; + } else { + return 'malam'; + } + }, + calendar : { + sameDay : '[Hari ini pukul] LT', + nextDay : '[Besok pukul] LT', + nextWeek : 'dddd [pukul] LT', + lastDay : '[Kemarin pukul] LT', + lastWeek : 'dddd [lalu pukul] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'dalam %s', + past : '%s yang lalu', + s : 'beberapa detik', + m : 'semenit', + mm : '%d menit', + h : 'sejam', + hh : '%d jam', + d : 'sehari', + dd : '%d hari', + M : 'sebulan', + MM : '%d bulan', + y : 'setahun', + yy : '%d tahun' + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : icelandic (is) +// author : Hinrik Örn Sigurðsson : https://github.com/hinrik + +(function (factory) { + factory(moment); +}(function (moment) { + function plural(n) { + if (n % 100 === 11) { + return true; + } else if (n % 10 === 1) { + return false; + } + return true; + } + + function translate(number, withoutSuffix, key, isFuture) { + var result = number + ' '; + switch (key) { + case 's': + return withoutSuffix || isFuture ? 'nokkrar sekúndur' : 'nokkrum sekúndum'; + case 'm': + return withoutSuffix ? 'mínúta' : 'mínútu'; + case 'mm': + if (plural(number)) { + return result + (withoutSuffix || isFuture ? 'mínútur' : 'mínútum'); + } else if (withoutSuffix) { + return result + 'mínúta'; + } + return result + 'mínútu'; + case 'hh': + if (plural(number)) { + return result + (withoutSuffix || isFuture ? 'klukkustundir' : 'klukkustundum'); + } + return result + 'klukkustund'; + case 'd': + if (withoutSuffix) { + return 'dagur'; + } + return isFuture ? 'dag' : 'degi'; + case 'dd': + if (plural(number)) { + if (withoutSuffix) { + return result + 'dagar'; + } + return result + (isFuture ? 'daga' : 'dögum'); + } else if (withoutSuffix) { + return result + 'dagur'; + } + return result + (isFuture ? 'dag' : 'degi'); + case 'M': + if (withoutSuffix) { + return 'mánuður'; + } + return isFuture ? 'mánuð' : 'mánuði'; + case 'MM': + if (plural(number)) { + if (withoutSuffix) { + return result + 'mánuðir'; + } + return result + (isFuture ? 'mánuði' : 'mánuðum'); + } else if (withoutSuffix) { + return result + 'mánuður'; + } + return result + (isFuture ? 'mánuð' : 'mánuði'); + case 'y': + return withoutSuffix || isFuture ? 'ár' : 'ári'; + case 'yy': + if (plural(number)) { + return result + (withoutSuffix || isFuture ? 'ár' : 'árum'); + } + return result + (withoutSuffix || isFuture ? 'ár' : 'ári'); + } + } + + return moment.defineLocale('is', { + months : 'janúar_febrúar_mars_apríl_maí_júní_júlí_ágúst_september_október_nóvember_desember'.split('_'), + monthsShort : 'jan_feb_mar_apr_maí_jún_júl_ágú_sep_okt_nóv_des'.split('_'), + weekdays : 'sunnudagur_mánudagur_þriðjudagur_miðvikudagur_fimmtudagur_föstudagur_laugardagur'.split('_'), + weekdaysShort : 'sun_mán_þri_mið_fim_fös_lau'.split('_'), + weekdaysMin : 'Su_Má_Þr_Mi_Fi_Fö_La'.split('_'), + longDateFormat : { + LT : 'H:mm', + L : 'DD/MM/YYYY', + LL : 'D. MMMM YYYY', + LLL : 'D. MMMM YYYY [kl.] LT', + LLLL : 'dddd, D. MMMM YYYY [kl.] LT' + }, + calendar : { + sameDay : '[í dag kl.] LT', + nextDay : '[á morgun kl.] LT', + nextWeek : 'dddd [kl.] LT', + lastDay : '[í gær kl.] LT', + lastWeek : '[síðasta] dddd [kl.] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'eftir %s', + past : 'fyrir %s síðan', + s : translate, + m : translate, + mm : translate, + h : 'klukkustund', + hh : translate, + d : translate, + dd : translate, + M : translate, + MM : translate, + y : translate, + yy : translate + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : italian (it) +// author : Lorenzo : https://github.com/aliem +// author: Mattia Larentis: https://github.com/nostalgiaz + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('it', { + months : 'gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre'.split('_'), + monthsShort : 'gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic'.split('_'), + weekdays : 'Domenica_Lunedì_Martedì_Mercoledì_Giovedì_Venerdì_Sabato'.split('_'), + weekdaysShort : 'Dom_Lun_Mar_Mer_Gio_Ven_Sab'.split('_'), + weekdaysMin : 'D_L_Ma_Me_G_V_S'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd, D MMMM YYYY LT' + }, + calendar : { + sameDay: '[Oggi alle] LT', + nextDay: '[Domani alle] LT', + nextWeek: 'dddd [alle] LT', + lastDay: '[Ieri alle] LT', + lastWeek: '[lo scorso] dddd [alle] LT', + sameElse: 'L' + }, + relativeTime : { + future : function (s) { + return ((/^[0-9].+$/).test(s) ? 'tra' : 'in') + ' ' + s; + }, + past : '%s fa', + s : 'alcuni secondi', + m : 'un minuto', + mm : '%d minuti', + h : 'un\'ora', + hh : '%d ore', + d : 'un giorno', + dd : '%d giorni', + M : 'un mese', + MM : '%d mesi', + y : 'un anno', + yy : '%d anni' + }, + ordinal: '%dº', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : japanese (ja) +// author : LI Long : https://github.com/baryon + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('ja', { + months : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'), + monthsShort : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'), + weekdays : '日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日'.split('_'), + weekdaysShort : '日_月_火_水_木_金_土'.split('_'), + weekdaysMin : '日_月_火_水_木_金_土'.split('_'), + longDateFormat : { + LT : 'Ah時m分', + L : 'YYYY/MM/DD', + LL : 'YYYY年M月D日', + LLL : 'YYYY年M月D日LT', + LLLL : 'YYYY年M月D日LT dddd' + }, + meridiem : function (hour, minute, isLower) { + if (hour < 12) { + return '午前'; + } else { + return '午後'; + } + }, + calendar : { + sameDay : '[今日] LT', + nextDay : '[明日] LT', + nextWeek : '[来週]dddd LT', + lastDay : '[昨日] LT', + lastWeek : '[前週]dddd LT', + sameElse : 'L' + }, + relativeTime : { + future : '%s後', + past : '%s前', + s : '数秒', + m : '1分', + mm : '%d分', + h : '1時間', + hh : '%d時間', + d : '1日', + dd : '%d日', + M : '1ヶ月', + MM : '%dヶ月', + y : '1年', + yy : '%d年' + } + }); +})); +// moment.js locale configuration +// locale : Georgian (ka) +// author : Irakli Janiashvili : https://github.com/irakli-janiashvili + +(function (factory) { + factory(moment); +}(function (moment) { + function monthsCaseReplace(m, format) { + var months = { + 'nominative': 'იანვარი_თებერვალი_მარტი_აპრილი_მაისი_ივნისი_ივლისი_აგვისტო_სექტემბერი_ოქტომბერი_ნოემბერი_დეკემბერი'.split('_'), + 'accusative': 'იანვარს_თებერვალს_მარტს_აპრილის_მაისს_ივნისს_ივლისს_აგვისტს_სექტემბერს_ოქტომბერს_ნოემბერს_დეკემბერს'.split('_') + }, + + nounCase = (/D[oD] *MMMM?/).test(format) ? + 'accusative' : + 'nominative'; + + return months[nounCase][m.month()]; + } + + function weekdaysCaseReplace(m, format) { + var weekdays = { + 'nominative': 'კვირა_ორშაბათი_სამშაბათი_ოთხშაბათი_ხუთშაბათი_პარასკევი_შაბათი'.split('_'), + 'accusative': 'კვირას_ორშაბათს_სამშაბათს_ოთხშაბათს_ხუთშაბათს_პარასკევს_შაბათს'.split('_') + }, + + nounCase = (/(წინა|შემდეგ)/).test(format) ? + 'accusative' : + 'nominative'; + + return weekdays[nounCase][m.day()]; + } + + return moment.defineLocale('ka', { + months : monthsCaseReplace, + monthsShort : 'იან_თებ_მარ_აპრ_მაი_ივნ_ივლ_აგვ_სექ_ოქტ_ნოე_დეკ'.split('_'), + weekdays : weekdaysCaseReplace, + weekdaysShort : 'კვი_ორშ_სამ_ოთხ_ხუთ_პარ_შაბ'.split('_'), + weekdaysMin : 'კვ_ორ_სა_ოთ_ხუ_პა_შა'.split('_'), + longDateFormat : { + LT : 'h:mm A', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd, D MMMM YYYY LT' + }, + calendar : { + sameDay : '[დღეს] LT[-ზე]', + nextDay : '[ხვალ] LT[-ზე]', + lastDay : '[გუშინ] LT[-ზე]', + nextWeek : '[შემდეგ] dddd LT[-ზე]', + lastWeek : '[წინა] dddd LT-ზე', + sameElse : 'L' + }, + relativeTime : { + future : function (s) { + return (/(წამი|წუთი|საათი|წელი)/).test(s) ? + s.replace(/ი$/, 'ში') : + s + 'ში'; + }, + past : function (s) { + if ((/(წამი|წუთი|საათი|დღე|თვე)/).test(s)) { + return s.replace(/(ი|ე)$/, 'ის წინ'); + } + if ((/წელი/).test(s)) { + return s.replace(/წელი$/, 'წლის წინ'); + } + }, + s : 'რამდენიმე წამი', + m : 'წუთი', + mm : '%d წუთი', + h : 'საათი', + hh : '%d საათი', + d : 'დღე', + dd : '%d დღე', + M : 'თვე', + MM : '%d თვე', + y : 'წელი', + yy : '%d წელი' + }, + ordinal : function (number) { + if (number === 0) { + return number; + } + + if (number === 1) { + return number + '-ლი'; + } + + if ((number < 20) || (number <= 100 && (number % 20 === 0)) || (number % 100 === 0)) { + return 'მე-' + number; + } + + return number + '-ე'; + }, + week : { + dow : 1, + doy : 7 + } + }); +})); +// moment.js locale configuration +// locale : khmer (km) +// author : Kruy Vanna : https://github.com/kruyvanna + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('km', { + months: 'មករា_កុម្ភៈ_មិនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ'.split('_'), + monthsShort: 'មករា_កុម្ភៈ_មិនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ'.split('_'), + weekdays: 'អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍'.split('_'), + weekdaysShort: 'អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍'.split('_'), + weekdaysMin: 'អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍'.split('_'), + longDateFormat: { + LT: 'HH:mm', + L: 'DD/MM/YYYY', + LL: 'D MMMM YYYY', + LLL: 'D MMMM YYYY LT', + LLLL: 'dddd, D MMMM YYYY LT' + }, + calendar: { + sameDay: '[ថ្ងៃនៈ ម៉ោង] LT', + nextDay: '[ស្អែក ម៉ោង] LT', + nextWeek: 'dddd [ម៉ោង] LT', + lastDay: '[ម្សិលមិញ ម៉ោង] LT', + lastWeek: 'dddd [សប្តាហ៍មុន] [ម៉ោង] LT', + sameElse: 'L' + }, + relativeTime: { + future: '%sទៀត', + past: '%sមុន', + s: 'ប៉ុន្មានវិនាទី', + m: 'មួយនាទី', + mm: '%d នាទី', + h: 'មួយម៉ោង', + hh: '%d ម៉ោង', + d: 'មួយថ្ងៃ', + dd: '%d ថ្ងៃ', + M: 'មួយខែ', + MM: '%d ខែ', + y: 'មួយឆ្នាំ', + yy: '%d ឆ្នាំ' + }, + week: { + dow: 1, // Monday is the first day of the week. + doy: 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : korean (ko) +// +// authors +// +// - Kyungwook, Park : https://github.com/kyungw00k +// - Jeeeyul Lee +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('ko', { + months : '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split('_'), + monthsShort : '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split('_'), + weekdays : '일요일_월요일_화요일_수요일_목요일_금요일_토요일'.split('_'), + weekdaysShort : '일_월_화_수_목_금_토'.split('_'), + weekdaysMin : '일_월_화_수_목_금_토'.split('_'), + longDateFormat : { + LT : 'A h시 m분', + L : 'YYYY.MM.DD', + LL : 'YYYY년 MMMM D일', + LLL : 'YYYY년 MMMM D일 LT', + LLLL : 'YYYY년 MMMM D일 dddd LT' + }, + meridiem : function (hour, minute, isUpper) { + return hour < 12 ? '오전' : '오후'; + }, + calendar : { + sameDay : '오늘 LT', + nextDay : '내일 LT', + nextWeek : 'dddd LT', + lastDay : '어제 LT', + lastWeek : '지난주 dddd LT', + sameElse : 'L' + }, + relativeTime : { + future : '%s 후', + past : '%s 전', + s : '몇초', + ss : '%d초', + m : '일분', + mm : '%d분', + h : '한시간', + hh : '%d시간', + d : '하루', + dd : '%d일', + M : '한달', + MM : '%d달', + y : '일년', + yy : '%d년' + }, + ordinal : '%d일', + meridiemParse : /(오전|오후)/, + isPM : function (token) { + return token === '오후'; + } + }); +})); +// moment.js locale configuration +// locale : Luxembourgish (lb) +// author : mweimerskirch : https://github.com/mweimerskirch, David Raison : https://github.com/kwisatz + +// Note: Luxembourgish has a very particular phonological rule ('Eifeler Regel') that causes the +// deletion of the final 'n' in certain contexts. That's what the 'eifelerRegelAppliesToWeekday' +// and 'eifelerRegelAppliesToNumber' methods are meant for + +(function (factory) { + factory(moment); +}(function (moment) { + function processRelativeTime(number, withoutSuffix, key, isFuture) { + var format = { + 'm': ['eng Minutt', 'enger Minutt'], + 'h': ['eng Stonn', 'enger Stonn'], + 'd': ['een Dag', 'engem Dag'], + 'M': ['ee Mount', 'engem Mount'], + 'y': ['ee Joer', 'engem Joer'] + }; + return withoutSuffix ? format[key][0] : format[key][1]; + } + + function processFutureTime(string) { + var number = string.substr(0, string.indexOf(' ')); + if (eifelerRegelAppliesToNumber(number)) { + return 'a ' + string; + } + return 'an ' + string; + } + + function processPastTime(string) { + var number = string.substr(0, string.indexOf(' ')); + if (eifelerRegelAppliesToNumber(number)) { + return 'viru ' + string; + } + return 'virun ' + string; + } + + /** + * Returns true if the word before the given number loses the '-n' ending. + * e.g. 'an 10 Deeg' but 'a 5 Deeg' + * + * @param number {integer} + * @returns {boolean} + */ + function eifelerRegelAppliesToNumber(number) { + number = parseInt(number, 10); + if (isNaN(number)) { + return false; + } + if (number < 0) { + // Negative Number --> always true + return true; + } else if (number < 10) { + // Only 1 digit + if (4 <= number && number <= 7) { + return true; + } + return false; + } else if (number < 100) { + // 2 digits + var lastDigit = number % 10, firstDigit = number / 10; + if (lastDigit === 0) { + return eifelerRegelAppliesToNumber(firstDigit); + } + return eifelerRegelAppliesToNumber(lastDigit); + } else if (number < 10000) { + // 3 or 4 digits --> recursively check first digit + while (number >= 10) { + number = number / 10; + } + return eifelerRegelAppliesToNumber(number); + } else { + // Anything larger than 4 digits: recursively check first n-3 digits + number = number / 1000; + return eifelerRegelAppliesToNumber(number); + } + } + + return moment.defineLocale('lb', { + months: 'Januar_Februar_Mäerz_Abrëll_Mee_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'), + monthsShort: 'Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.'.split('_'), + weekdays: 'Sonndeg_Méindeg_Dënschdeg_Mëttwoch_Donneschdeg_Freideg_Samschdeg'.split('_'), + weekdaysShort: 'So._Mé._Dë._Më._Do._Fr._Sa.'.split('_'), + weekdaysMin: 'So_Mé_Dë_Më_Do_Fr_Sa'.split('_'), + longDateFormat: { + LT: 'H:mm [Auer]', + L: 'DD.MM.YYYY', + LL: 'D. MMMM YYYY', + LLL: 'D. MMMM YYYY LT', + LLLL: 'dddd, D. MMMM YYYY LT' + }, + calendar: { + sameDay: '[Haut um] LT', + sameElse: 'L', + nextDay: '[Muer um] LT', + nextWeek: 'dddd [um] LT', + lastDay: '[Gëschter um] LT', + lastWeek: function () { + // Different date string for 'Dënschdeg' (Tuesday) and 'Donneschdeg' (Thursday) due to phonological rule + switch (this.day()) { + case 2: + case 4: + return '[Leschten] dddd [um] LT'; + default: + return '[Leschte] dddd [um] LT'; + } + } + }, + relativeTime : { + future : processFutureTime, + past : processPastTime, + s : 'e puer Sekonnen', + m : processRelativeTime, + mm : '%d Minutten', + h : processRelativeTime, + hh : '%d Stonnen', + d : processRelativeTime, + dd : '%d Deeg', + M : processRelativeTime, + MM : '%d Méint', + y : processRelativeTime, + yy : '%d Joer' + }, + ordinal: '%d.', + week: { + dow: 1, // Monday is the first day of the week. + doy: 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Lithuanian (lt) +// author : Mindaugas Mozūras : https://github.com/mmozuras + +(function (factory) { + factory(moment); +}(function (moment) { + var units = { + 'm' : 'minutė_minutės_minutę', + 'mm': 'minutės_minučių_minutes', + 'h' : 'valanda_valandos_valandą', + 'hh': 'valandos_valandų_valandas', + 'd' : 'diena_dienos_dieną', + 'dd': 'dienos_dienų_dienas', + 'M' : 'mėnuo_mėnesio_mėnesį', + 'MM': 'mėnesiai_mėnesių_mėnesius', + 'y' : 'metai_metų_metus', + 'yy': 'metai_metų_metus' + }, + weekDays = 'sekmadienis_pirmadienis_antradienis_trečiadienis_ketvirtadienis_penktadienis_šeštadienis'.split('_'); + + function translateSeconds(number, withoutSuffix, key, isFuture) { + if (withoutSuffix) { + return 'kelios sekundės'; + } else { + return isFuture ? 'kelių sekundžių' : 'kelias sekundes'; + } + } + + function translateSingular(number, withoutSuffix, key, isFuture) { + return withoutSuffix ? forms(key)[0] : (isFuture ? forms(key)[1] : forms(key)[2]); + } + + function special(number) { + return number % 10 === 0 || (number > 10 && number < 20); + } + + function forms(key) { + return units[key].split('_'); + } + + function translate(number, withoutSuffix, key, isFuture) { + var result = number + ' '; + if (number === 1) { + return result + translateSingular(number, withoutSuffix, key[0], isFuture); + } else if (withoutSuffix) { + return result + (special(number) ? forms(key)[1] : forms(key)[0]); + } else { + if (isFuture) { + return result + forms(key)[1]; + } else { + return result + (special(number) ? forms(key)[1] : forms(key)[2]); + } + } + } + + function relativeWeekDay(moment, format) { + var nominative = format.indexOf('dddd HH:mm') === -1, + weekDay = weekDays[moment.day()]; + + return nominative ? weekDay : weekDay.substring(0, weekDay.length - 2) + 'į'; + } + + return moment.defineLocale('lt', { + months : 'sausio_vasario_kovo_balandžio_gegužės_birželio_liepos_rugpjūčio_rugsėjo_spalio_lapkričio_gruodžio'.split('_'), + monthsShort : 'sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd'.split('_'), + weekdays : relativeWeekDay, + weekdaysShort : 'Sek_Pir_Ant_Tre_Ket_Pen_Šeš'.split('_'), + weekdaysMin : 'S_P_A_T_K_Pn_Š'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'YYYY-MM-DD', + LL : 'YYYY [m.] MMMM D [d.]', + LLL : 'YYYY [m.] MMMM D [d.], LT [val.]', + LLLL : 'YYYY [m.] MMMM D [d.], dddd, LT [val.]', + l : 'YYYY-MM-DD', + ll : 'YYYY [m.] MMMM D [d.]', + lll : 'YYYY [m.] MMMM D [d.], LT [val.]', + llll : 'YYYY [m.] MMMM D [d.], ddd, LT [val.]' + }, + calendar : { + sameDay : '[Šiandien] LT', + nextDay : '[Rytoj] LT', + nextWeek : 'dddd LT', + lastDay : '[Vakar] LT', + lastWeek : '[Praėjusį] dddd LT', + sameElse : 'L' + }, + relativeTime : { + future : 'po %s', + past : 'prieš %s', + s : translateSeconds, + m : translateSingular, + mm : translate, + h : translateSingular, + hh : translate, + d : translateSingular, + dd : translate, + M : translateSingular, + MM : translate, + y : translateSingular, + yy : translate + }, + ordinal : function (number) { + return number + '-oji'; + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : latvian (lv) +// author : Kristaps Karlsons : https://github.com/skakri + +(function (factory) { + factory(moment); +}(function (moment) { + var units = { + 'mm': 'minūti_minūtes_minūte_minūtes', + 'hh': 'stundu_stundas_stunda_stundas', + 'dd': 'dienu_dienas_diena_dienas', + 'MM': 'mēnesi_mēnešus_mēnesis_mēneši', + 'yy': 'gadu_gadus_gads_gadi' + }; + + function format(word, number, withoutSuffix) { + var forms = word.split('_'); + if (withoutSuffix) { + return number % 10 === 1 && number !== 11 ? forms[2] : forms[3]; + } else { + return number % 10 === 1 && number !== 11 ? forms[0] : forms[1]; + } + } + + function relativeTimeWithPlural(number, withoutSuffix, key) { + return number + ' ' + format(units[key], number, withoutSuffix); + } + + return moment.defineLocale('lv', { + months : 'janvāris_februāris_marts_aprīlis_maijs_jūnijs_jūlijs_augusts_septembris_oktobris_novembris_decembris'.split('_'), + monthsShort : 'jan_feb_mar_apr_mai_jūn_jūl_aug_sep_okt_nov_dec'.split('_'), + weekdays : 'svētdiena_pirmdiena_otrdiena_trešdiena_ceturtdiena_piektdiena_sestdiena'.split('_'), + weekdaysShort : 'Sv_P_O_T_C_Pk_S'.split('_'), + weekdaysMin : 'Sv_P_O_T_C_Pk_S'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD.MM.YYYY', + LL : 'YYYY. [gada] D. MMMM', + LLL : 'YYYY. [gada] D. MMMM, LT', + LLLL : 'YYYY. [gada] D. MMMM, dddd, LT' + }, + calendar : { + sameDay : '[Šodien pulksten] LT', + nextDay : '[Rīt pulksten] LT', + nextWeek : 'dddd [pulksten] LT', + lastDay : '[Vakar pulksten] LT', + lastWeek : '[Pagājušā] dddd [pulksten] LT', + sameElse : 'L' + }, + relativeTime : { + future : '%s vēlāk', + past : '%s agrāk', + s : 'dažas sekundes', + m : 'minūti', + mm : relativeTimeWithPlural, + h : 'stundu', + hh : relativeTimeWithPlural, + d : 'dienu', + dd : relativeTimeWithPlural, + M : 'mēnesi', + MM : relativeTimeWithPlural, + y : 'gadu', + yy : relativeTimeWithPlural + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : macedonian (mk) +// author : Borislav Mickov : https://github.com/B0k0 + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('mk', { + months : 'јануари_февруари_март_април_мај_јуни_јули_август_септември_октомври_ноември_декември'.split('_'), + monthsShort : 'јан_фев_мар_апр_мај_јун_јул_авг_сеп_окт_ное_дек'.split('_'), + weekdays : 'недела_понеделник_вторник_среда_четврток_петок_сабота'.split('_'), + weekdaysShort : 'нед_пон_вто_сре_чет_пет_саб'.split('_'), + weekdaysMin : 'нe_пo_вт_ср_че_пе_сa'.split('_'), + longDateFormat : { + LT : 'H:mm', + L : 'D.MM.YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd, D MMMM YYYY LT' + }, + calendar : { + sameDay : '[Денес во] LT', + nextDay : '[Утре во] LT', + nextWeek : 'dddd [во] LT', + lastDay : '[Вчера во] LT', + lastWeek : function () { + switch (this.day()) { + case 0: + case 3: + case 6: + return '[Во изминатата] dddd [во] LT'; + case 1: + case 2: + case 4: + case 5: + return '[Во изминатиот] dddd [во] LT'; + } + }, + sameElse : 'L' + }, + relativeTime : { + future : 'после %s', + past : 'пред %s', + s : 'неколку секунди', + m : 'минута', + mm : '%d минути', + h : 'час', + hh : '%d часа', + d : 'ден', + dd : '%d дена', + M : 'месец', + MM : '%d месеци', + y : 'година', + yy : '%d години' + }, + ordinal : function (number) { + var lastDigit = number % 10, + last2Digits = number % 100; + if (number === 0) { + return number + '-ев'; + } else if (last2Digits === 0) { + return number + '-ен'; + } else if (last2Digits > 10 && last2Digits < 20) { + return number + '-ти'; + } else if (lastDigit === 1) { + return number + '-ви'; + } else if (lastDigit === 2) { + return number + '-ри'; + } else if (lastDigit === 7 || lastDigit === 8) { + return number + '-ми'; + } else { + return number + '-ти'; + } + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : malayalam (ml) +// author : Floyd Pink : https://github.com/floydpink + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('ml', { + months : 'ജനുവരി_ഫെബ്രുവരി_മാർച്ച്_ഏപ്രിൽ_മേയ്_ജൂൺ_ജൂലൈ_ഓഗസ്റ്റ്_സെപ്റ്റംബർ_ഒക്ടോബർ_നവംബർ_ഡിസംബർ'.split('_'), + monthsShort : 'ജനു._ഫെബ്രു._മാർ._ഏപ്രി._മേയ്_ജൂൺ_ജൂലൈ._ഓഗ._സെപ്റ്റ._ഒക്ടോ._നവം._ഡിസം.'.split('_'), + weekdays : 'ഞായറാഴ്ച_തിങ്കളാഴ്ച_ചൊവ്വാഴ്ച_ബുധനാഴ്ച_വ്യാഴാഴ്ച_വെള്ളിയാഴ്ച_ശനിയാഴ്ച'.split('_'), + weekdaysShort : 'ഞായർ_തിങ്കൾ_ചൊവ്വ_ബുധൻ_വ്യാഴം_വെള്ളി_ശനി'.split('_'), + weekdaysMin : 'ഞാ_തി_ചൊ_ബു_വ്യാ_വെ_ശ'.split('_'), + longDateFormat : { + LT : 'A h:mm -നു', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY, LT', + LLLL : 'dddd, D MMMM YYYY, LT' + }, + calendar : { + sameDay : '[ഇന്ന്] LT', + nextDay : '[നാളെ] LT', + nextWeek : 'dddd, LT', + lastDay : '[ഇന്നലെ] LT', + lastWeek : '[കഴിഞ്ഞ] dddd, LT', + sameElse : 'L' + }, + relativeTime : { + future : '%s കഴിഞ്ഞ്', + past : '%s മുൻപ്', + s : 'അൽപ നിമിഷങ്ങൾ', + m : 'ഒരു മിനിറ്റ്', + mm : '%d മിനിറ്റ്', + h : 'ഒരു മണിക്കൂർ', + hh : '%d മണിക്കൂർ', + d : 'ഒരു ദിവസം', + dd : '%d ദിവസം', + M : 'ഒരു മാസം', + MM : '%d മാസം', + y : 'ഒരു വർഷം', + yy : '%d വർഷം' + }, + meridiem : function (hour, minute, isLower) { + if (hour < 4) { + return 'രാത്രി'; + } else if (hour < 12) { + return 'രാവിലെ'; + } else if (hour < 17) { + return 'ഉച്ച കഴിഞ്ഞ്'; + } else if (hour < 20) { + return 'വൈകുന്നേരം'; + } else { + return 'രാത്രി'; + } + } + }); +})); +// moment.js locale configuration +// locale : Marathi (mr) +// author : Harshad Kale : https://github.com/kalehv + +(function (factory) { + factory(moment); +}(function (moment) { + var symbolMap = { + '1': '१', + '2': '२', + '3': '३', + '4': '४', + '5': '५', + '6': '६', + '7': '७', + '8': '८', + '9': '९', + '0': '०' + }, + numberMap = { + '१': '1', + '२': '2', + '३': '3', + '४': '4', + '५': '5', + '६': '6', + '७': '7', + '८': '8', + '९': '9', + '०': '0' + }; + + return moment.defineLocale('mr', { + months : 'जानेवारी_फेब्रुवारी_मार्च_एप्रिल_मे_जून_जुलै_ऑगस्ट_सप्टेंबर_ऑक्टोबर_नोव्हेंबर_डिसेंबर'.split('_'), + monthsShort: 'जाने._फेब्रु._मार्च._एप्रि._मे._जून._जुलै._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.'.split('_'), + weekdays : 'रविवार_सोमवार_मंगळवार_बुधवार_गुरूवार_शुक्रवार_शनिवार'.split('_'), + weekdaysShort : 'रवि_सोम_मंगळ_बुध_गुरू_शुक्र_शनि'.split('_'), + weekdaysMin : 'र_सो_मं_बु_गु_शु_श'.split('_'), + longDateFormat : { + LT : 'A h:mm वाजता', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY, LT', + LLLL : 'dddd, D MMMM YYYY, LT' + }, + calendar : { + sameDay : '[आज] LT', + nextDay : '[उद्या] LT', + nextWeek : 'dddd, LT', + lastDay : '[काल] LT', + lastWeek: '[मागील] dddd, LT', + sameElse : 'L' + }, + relativeTime : { + future : '%s नंतर', + past : '%s पूर्वी', + s : 'सेकंद', + m: 'एक मिनिट', + mm: '%d मिनिटे', + h : 'एक तास', + hh : '%d तास', + d : 'एक दिवस', + dd : '%d दिवस', + M : 'एक महिना', + MM : '%d महिने', + y : 'एक वर्ष', + yy : '%d वर्षे' + }, + preparse: function (string) { + return string.replace(/[१२३४५६७८९०]/g, function (match) { + return numberMap[match]; + }); + }, + postformat: function (string) { + return string.replace(/\d/g, function (match) { + return symbolMap[match]; + }); + }, + meridiem: function (hour, minute, isLower) + { + if (hour < 4) { + return 'रात्री'; + } else if (hour < 10) { + return 'सकाळी'; + } else if (hour < 17) { + return 'दुपारी'; + } else if (hour < 20) { + return 'सायंकाळी'; + } else { + return 'रात्री'; + } + }, + week : { + dow : 0, // Sunday is the first day of the week. + doy : 6 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Bahasa Malaysia (ms-MY) +// author : Weldan Jamili : https://github.com/weldan + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('ms-my', { + months : 'Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember'.split('_'), + monthsShort : 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis'.split('_'), + weekdays : 'Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu'.split('_'), + weekdaysShort : 'Ahd_Isn_Sel_Rab_Kha_Jum_Sab'.split('_'), + weekdaysMin : 'Ah_Is_Sl_Rb_Km_Jm_Sb'.split('_'), + longDateFormat : { + LT : 'HH.mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY [pukul] LT', + LLLL : 'dddd, D MMMM YYYY [pukul] LT' + }, + meridiem : function (hours, minutes, isLower) { + if (hours < 11) { + return 'pagi'; + } else if (hours < 15) { + return 'tengahari'; + } else if (hours < 19) { + return 'petang'; + } else { + return 'malam'; + } + }, + calendar : { + sameDay : '[Hari ini pukul] LT', + nextDay : '[Esok pukul] LT', + nextWeek : 'dddd [pukul] LT', + lastDay : '[Kelmarin pukul] LT', + lastWeek : 'dddd [lepas pukul] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'dalam %s', + past : '%s yang lepas', + s : 'beberapa saat', + m : 'seminit', + mm : '%d minit', + h : 'sejam', + hh : '%d jam', + d : 'sehari', + dd : '%d hari', + M : 'sebulan', + MM : '%d bulan', + y : 'setahun', + yy : '%d tahun' + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Burmese (my) +// author : Squar team, mysquar.com + +(function (factory) { + factory(moment); +}(function (moment) { + var symbolMap = { + '1': '၁', + '2': '၂', + '3': '၃', + '4': '၄', + '5': '၅', + '6': '၆', + '7': '၇', + '8': '၈', + '9': '၉', + '0': '၀' + }, numberMap = { + '၁': '1', + '၂': '2', + '၃': '3', + '၄': '4', + '၅': '5', + '၆': '6', + '၇': '7', + '၈': '8', + '၉': '9', + '၀': '0' + }; + return moment.defineLocale('my', { + months: 'ဇန်နဝါရီ_ဖေဖော်ဝါရီ_မတ်_ဧပြီ_မေ_ဇွန်_ဇူလိုင်_သြဂုတ်_စက်တင်ဘာ_အောက်တိုဘာ_နိုဝင်ဘာ_ဒီဇင်ဘာ'.split('_'), + monthsShort: 'ဇန်_ဖေ_မတ်_ပြီ_မေ_ဇွန်_လိုင်_သြ_စက်_အောက်_နို_ဒီ'.split('_'), + weekdays: 'တနင်္ဂနွေ_တနင်္လာ_အင်္ဂါ_ဗုဒ္ဓဟူး_ကြာသပတေး_သောကြာ_စနေ'.split('_'), + weekdaysShort: 'နွေ_လာ_င်္ဂါ_ဟူး_ကြာ_သော_နေ'.split('_'), + weekdaysMin: 'နွေ_လာ_င်္ဂါ_ဟူး_ကြာ_သော_နေ'.split('_'), + longDateFormat: { + LT: 'HH:mm', + L: 'DD/MM/YYYY', + LL: 'D MMMM YYYY', + LLL: 'D MMMM YYYY LT', + LLLL: 'dddd D MMMM YYYY LT' + }, + calendar: { + sameDay: '[ယနေ.] LT [မှာ]', + nextDay: '[မနက်ဖြန်] LT [မှာ]', + nextWeek: 'dddd LT [မှာ]', + lastDay: '[မနေ.က] LT [မှာ]', + lastWeek: '[ပြီးခဲ့သော] dddd LT [မှာ]', + sameElse: 'L' + }, + relativeTime: { + future: 'လာမည့် %s မှာ', + past: 'လွန်ခဲ့သော %s က', + s: 'စက္ကန်.အနည်းငယ်', + m: 'တစ်မိနစ်', + mm: '%d မိနစ်', + h: 'တစ်နာရီ', + hh: '%d နာရီ', + d: 'တစ်ရက်', + dd: '%d ရက်', + M: 'တစ်လ', + MM: '%d လ', + y: 'တစ်နှစ်', + yy: '%d နှစ်' + }, + preparse: function (string) { + return string.replace(/[၁၂၃၄၅၆၇၈၉၀]/g, function (match) { + return numberMap[match]; + }); + }, + postformat: function (string) { + return string.replace(/\d/g, function (match) { + return symbolMap[match]; + }); + }, + week: { + dow: 1, // Monday is the first day of the week. + doy: 4 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : norwegian bokmål (nb) +// authors : Espen Hovlandsdal : https://github.com/rexxars +// Sigurd Gartmann : https://github.com/sigurdga + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('nb', { + months : 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split('_'), + monthsShort : 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'), + weekdays : 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'), + weekdaysShort : 'søn_man_tirs_ons_tors_fre_lør'.split('_'), + weekdaysMin : 'sø_ma_ti_on_to_fr_lø'.split('_'), + longDateFormat : { + LT : 'H.mm', + L : 'DD.MM.YYYY', + LL : 'D. MMMM YYYY', + LLL : 'D. MMMM YYYY [kl.] LT', + LLLL : 'dddd D. MMMM YYYY [kl.] LT' + }, + calendar : { + sameDay: '[i dag kl.] LT', + nextDay: '[i morgen kl.] LT', + nextWeek: 'dddd [kl.] LT', + lastDay: '[i går kl.] LT', + lastWeek: '[forrige] dddd [kl.] LT', + sameElse: 'L' + }, + relativeTime : { + future : 'om %s', + past : 'for %s siden', + s : 'noen sekunder', + m : 'ett minutt', + mm : '%d minutter', + h : 'en time', + hh : '%d timer', + d : 'en dag', + dd : '%d dager', + M : 'en måned', + MM : '%d måneder', + y : 'ett år', + yy : '%d år' + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : nepali/nepalese +// author : suvash : https://github.com/suvash + +(function (factory) { + factory(moment); +}(function (moment) { + var symbolMap = { + '1': '१', + '2': '२', + '3': '३', + '4': '४', + '5': '५', + '6': '६', + '7': '७', + '8': '८', + '9': '९', + '0': '०' + }, + numberMap = { + '१': '1', + '२': '2', + '३': '3', + '४': '4', + '५': '5', + '६': '6', + '७': '7', + '८': '8', + '९': '9', + '०': '0' + }; + + return moment.defineLocale('ne', { + months : 'जनवरी_फेब्रुवरी_मार्च_अप्रिल_मई_जुन_जुलाई_अगष्ट_सेप्टेम्बर_अक्टोबर_नोभेम्बर_डिसेम्बर'.split('_'), + monthsShort : 'जन._फेब्रु._मार्च_अप्रि._मई_जुन_जुलाई._अग._सेप्ट._अक्टो._नोभे._डिसे.'.split('_'), + weekdays : 'आइतबार_सोमबार_मङ्गलबार_बुधबार_बिहिबार_शुक्रबार_शनिबार'.split('_'), + weekdaysShort : 'आइत._सोम._मङ्गल._बुध._बिहि._शुक्र._शनि.'.split('_'), + weekdaysMin : 'आइ._सो._मङ्_बु._बि._शु._श.'.split('_'), + longDateFormat : { + LT : 'Aको h:mm बजे', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY, LT', + LLLL : 'dddd, D MMMM YYYY, LT' + }, + preparse: function (string) { + return string.replace(/[१२३४५६७८९०]/g, function (match) { + return numberMap[match]; + }); + }, + postformat: function (string) { + return string.replace(/\d/g, function (match) { + return symbolMap[match]; + }); + }, + meridiem : function (hour, minute, isLower) { + if (hour < 3) { + return 'राती'; + } else if (hour < 10) { + return 'बिहान'; + } else if (hour < 15) { + return 'दिउँसो'; + } else if (hour < 18) { + return 'बेलुका'; + } else if (hour < 20) { + return 'साँझ'; + } else { + return 'राती'; + } + }, + calendar : { + sameDay : '[आज] LT', + nextDay : '[भोली] LT', + nextWeek : '[आउँदो] dddd[,] LT', + lastDay : '[हिजो] LT', + lastWeek : '[गएको] dddd[,] LT', + sameElse : 'L' + }, + relativeTime : { + future : '%sमा', + past : '%s अगाडी', + s : 'केही समय', + m : 'एक मिनेट', + mm : '%d मिनेट', + h : 'एक घण्टा', + hh : '%d घण्टा', + d : 'एक दिन', + dd : '%d दिन', + M : 'एक महिना', + MM : '%d महिना', + y : 'एक बर्ष', + yy : '%d बर्ष' + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : dutch (nl) +// author : Joris Röling : https://github.com/jjupiter + +(function (factory) { + factory(moment); +}(function (moment) { + var monthsShortWithDots = 'jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.'.split('_'), + monthsShortWithoutDots = 'jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec'.split('_'); + + return moment.defineLocale('nl', { + months : 'januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december'.split('_'), + monthsShort : function (m, format) { + if (/-MMM-/.test(format)) { + return monthsShortWithoutDots[m.month()]; + } else { + return monthsShortWithDots[m.month()]; + } + }, + weekdays : 'zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag'.split('_'), + weekdaysShort : 'zo._ma._di._wo._do._vr._za.'.split('_'), + weekdaysMin : 'Zo_Ma_Di_Wo_Do_Vr_Za'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD-MM-YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd D MMMM YYYY LT' + }, + calendar : { + sameDay: '[vandaag om] LT', + nextDay: '[morgen om] LT', + nextWeek: 'dddd [om] LT', + lastDay: '[gisteren om] LT', + lastWeek: '[afgelopen] dddd [om] LT', + sameElse: 'L' + }, + relativeTime : { + future : 'over %s', + past : '%s geleden', + s : 'een paar seconden', + m : 'één minuut', + mm : '%d minuten', + h : 'één uur', + hh : '%d uur', + d : 'één dag', + dd : '%d dagen', + M : 'één maand', + MM : '%d maanden', + y : 'één jaar', + yy : '%d jaar' + }, + ordinal : function (number) { + return number + ((number === 1 || number === 8 || number >= 20) ? 'ste' : 'de'); + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : norwegian nynorsk (nn) +// author : https://github.com/mechuwind + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('nn', { + months : 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split('_'), + monthsShort : 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'), + weekdays : 'sundag_måndag_tysdag_onsdag_torsdag_fredag_laurdag'.split('_'), + weekdaysShort : 'sun_mån_tys_ons_tor_fre_lau'.split('_'), + weekdaysMin : 'su_må_ty_on_to_fr_lø'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD.MM.YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd D MMMM YYYY LT' + }, + calendar : { + sameDay: '[I dag klokka] LT', + nextDay: '[I morgon klokka] LT', + nextWeek: 'dddd [klokka] LT', + lastDay: '[I går klokka] LT', + lastWeek: '[Føregåande] dddd [klokka] LT', + sameElse: 'L' + }, + relativeTime : { + future : 'om %s', + past : 'for %s sidan', + s : 'nokre sekund', + m : 'eit minutt', + mm : '%d minutt', + h : 'ein time', + hh : '%d timar', + d : 'ein dag', + dd : '%d dagar', + M : 'ein månad', + MM : '%d månader', + y : 'eit år', + yy : '%d år' + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : polish (pl) +// author : Rafal Hirsz : https://github.com/evoL + +(function (factory) { + factory(moment); +}(function (moment) { + var monthsNominative = 'styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień'.split('_'), + monthsSubjective = 'stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia'.split('_'); + + function plural(n) { + return (n % 10 < 5) && (n % 10 > 1) && ((~~(n / 10) % 10) !== 1); + } + + function translate(number, withoutSuffix, key) { + var result = number + ' '; + switch (key) { + case 'm': + return withoutSuffix ? 'minuta' : 'minutę'; + case 'mm': + return result + (plural(number) ? 'minuty' : 'minut'); + case 'h': + return withoutSuffix ? 'godzina' : 'godzinę'; + case 'hh': + return result + (plural(number) ? 'godziny' : 'godzin'); + case 'MM': + return result + (plural(number) ? 'miesiące' : 'miesięcy'); + case 'yy': + return result + (plural(number) ? 'lata' : 'lat'); + } + } + + return moment.defineLocale('pl', { + months : function (momentToFormat, format) { + if (/D MMMM/.test(format)) { + return monthsSubjective[momentToFormat.month()]; + } else { + return monthsNominative[momentToFormat.month()]; + } + }, + monthsShort : 'sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru'.split('_'), + weekdays : 'niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota'.split('_'), + weekdaysShort : 'nie_pon_wt_śr_czw_pt_sb'.split('_'), + weekdaysMin : 'N_Pn_Wt_Śr_Cz_Pt_So'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD.MM.YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd, D MMMM YYYY LT' + }, + calendar : { + sameDay: '[Dziś o] LT', + nextDay: '[Jutro o] LT', + nextWeek: '[W] dddd [o] LT', + lastDay: '[Wczoraj o] LT', + lastWeek: function () { + switch (this.day()) { + case 0: + return '[W zeszłą niedzielę o] LT'; + case 3: + return '[W zeszłą środę o] LT'; + case 6: + return '[W zeszłą sobotę o] LT'; + default: + return '[W zeszły] dddd [o] LT'; + } + }, + sameElse: 'L' + }, + relativeTime : { + future : 'za %s', + past : '%s temu', + s : 'kilka sekund', + m : translate, + mm : translate, + h : translate, + hh : translate, + d : '1 dzień', + dd : '%d dni', + M : 'miesiąc', + MM : translate, + y : 'rok', + yy : translate + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : brazilian portuguese (pt-br) +// author : Caio Ribeiro Pereira : https://github.com/caio-ribeiro-pereira + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('pt-br', { + months : 'janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro'.split('_'), + monthsShort : 'jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez'.split('_'), + weekdays : 'domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado'.split('_'), + weekdaysShort : 'dom_seg_ter_qua_qui_sex_sáb'.split('_'), + weekdaysMin : 'dom_2ª_3ª_4ª_5ª_6ª_sáb'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D [de] MMMM [de] YYYY', + LLL : 'D [de] MMMM [de] YYYY [às] LT', + LLLL : 'dddd, D [de] MMMM [de] YYYY [às] LT' + }, + calendar : { + sameDay: '[Hoje às] LT', + nextDay: '[Amanhã às] LT', + nextWeek: 'dddd [às] LT', + lastDay: '[Ontem às] LT', + lastWeek: function () { + return (this.day() === 0 || this.day() === 6) ? + '[Último] dddd [às] LT' : // Saturday + Sunday + '[Última] dddd [às] LT'; // Monday - Friday + }, + sameElse: 'L' + }, + relativeTime : { + future : 'em %s', + past : '%s atrás', + s : 'segundos', + m : 'um minuto', + mm : '%d minutos', + h : 'uma hora', + hh : '%d horas', + d : 'um dia', + dd : '%d dias', + M : 'um mês', + MM : '%d meses', + y : 'um ano', + yy : '%d anos' + }, + ordinal : '%dº' + }); +})); +// moment.js locale configuration +// locale : portuguese (pt) +// author : Jefferson : https://github.com/jalex79 + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('pt', { + months : 'janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro'.split('_'), + monthsShort : 'jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez'.split('_'), + weekdays : 'domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado'.split('_'), + weekdaysShort : 'dom_seg_ter_qua_qui_sex_sáb'.split('_'), + weekdaysMin : 'dom_2ª_3ª_4ª_5ª_6ª_sáb'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D [de] MMMM [de] YYYY', + LLL : 'D [de] MMMM [de] YYYY LT', + LLLL : 'dddd, D [de] MMMM [de] YYYY LT' + }, + calendar : { + sameDay: '[Hoje às] LT', + nextDay: '[Amanhã às] LT', + nextWeek: 'dddd [às] LT', + lastDay: '[Ontem às] LT', + lastWeek: function () { + return (this.day() === 0 || this.day() === 6) ? + '[Último] dddd [às] LT' : // Saturday + Sunday + '[Última] dddd [às] LT'; // Monday - Friday + }, + sameElse: 'L' + }, + relativeTime : { + future : 'em %s', + past : 'há %s', + s : 'segundos', + m : 'um minuto', + mm : '%d minutos', + h : 'uma hora', + hh : '%d horas', + d : 'um dia', + dd : '%d dias', + M : 'um mês', + MM : '%d meses', + y : 'um ano', + yy : '%d anos' + }, + ordinal : '%dº', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : romanian (ro) +// author : Vlad Gurdiga : https://github.com/gurdiga +// author : Valentin Agachi : https://github.com/avaly + +(function (factory) { + factory(moment); +}(function (moment) { + function relativeTimeWithPlural(number, withoutSuffix, key) { + var format = { + 'mm': 'minute', + 'hh': 'ore', + 'dd': 'zile', + 'MM': 'luni', + 'yy': 'ani' + }, + separator = ' '; + if (number % 100 >= 20 || (number >= 100 && number % 100 === 0)) { + separator = ' de '; + } + + return number + separator + format[key]; + } + + return moment.defineLocale('ro', { + months : 'ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie'.split('_'), + monthsShort : 'ian._febr._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.'.split('_'), + weekdays : 'duminică_luni_marți_miercuri_joi_vineri_sâmbătă'.split('_'), + weekdaysShort : 'Dum_Lun_Mar_Mie_Joi_Vin_Sâm'.split('_'), + weekdaysMin : 'Du_Lu_Ma_Mi_Jo_Vi_Sâ'.split('_'), + longDateFormat : { + LT : 'H:mm', + L : 'DD.MM.YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY H:mm', + LLLL : 'dddd, D MMMM YYYY H:mm' + }, + calendar : { + sameDay: '[azi la] LT', + nextDay: '[mâine la] LT', + nextWeek: 'dddd [la] LT', + lastDay: '[ieri la] LT', + lastWeek: '[fosta] dddd [la] LT', + sameElse: 'L' + }, + relativeTime : { + future : 'peste %s', + past : '%s în urmă', + s : 'câteva secunde', + m : 'un minut', + mm : relativeTimeWithPlural, + h : 'o oră', + hh : relativeTimeWithPlural, + d : 'o zi', + dd : relativeTimeWithPlural, + M : 'o lună', + MM : relativeTimeWithPlural, + y : 'un an', + yy : relativeTimeWithPlural + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : russian (ru) +// author : Viktorminator : https://github.com/Viktorminator +// Author : Menelion Elensúle : https://github.com/Oire + +(function (factory) { + factory(moment); +}(function (moment) { + function plural(word, num) { + var forms = word.split('_'); + return num % 10 === 1 && num % 100 !== 11 ? forms[0] : (num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20) ? forms[1] : forms[2]); + } + + function relativeTimeWithPlural(number, withoutSuffix, key) { + var format = { + 'mm': withoutSuffix ? 'минута_минуты_минут' : 'минуту_минуты_минут', + 'hh': 'час_часа_часов', + 'dd': 'день_дня_дней', + 'MM': 'месяц_месяца_месяцев', + 'yy': 'год_года_лет' + }; + if (key === 'm') { + return withoutSuffix ? 'минута' : 'минуту'; + } + else { + return number + ' ' + plural(format[key], +number); + } + } + + function monthsCaseReplace(m, format) { + var months = { + 'nominative': 'январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь'.split('_'), + 'accusative': 'января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря'.split('_') + }, + + nounCase = (/D[oD]?(\[[^\[\]]*\]|\s+)+MMMM?/).test(format) ? + 'accusative' : + 'nominative'; + + return months[nounCase][m.month()]; + } + + function monthsShortCaseReplace(m, format) { + var monthsShort = { + 'nominative': 'янв_фев_мар_апр_май_июнь_июль_авг_сен_окт_ноя_дек'.split('_'), + 'accusative': 'янв_фев_мар_апр_мая_июня_июля_авг_сен_окт_ноя_дек'.split('_') + }, + + nounCase = (/D[oD]?(\[[^\[\]]*\]|\s+)+MMMM?/).test(format) ? + 'accusative' : + 'nominative'; + + return monthsShort[nounCase][m.month()]; + } + + function weekdaysCaseReplace(m, format) { + var weekdays = { + 'nominative': 'воскресенье_понедельник_вторник_среда_четверг_пятница_суббота'.split('_'), + 'accusative': 'воскресенье_понедельник_вторник_среду_четверг_пятницу_субботу'.split('_') + }, + + nounCase = (/\[ ?[Вв] ?(?:прошлую|следующую)? ?\] ?dddd/).test(format) ? + 'accusative' : + 'nominative'; + + return weekdays[nounCase][m.day()]; + } + + return moment.defineLocale('ru', { + months : monthsCaseReplace, + monthsShort : monthsShortCaseReplace, + weekdays : weekdaysCaseReplace, + weekdaysShort : 'вс_пн_вт_ср_чт_пт_сб'.split('_'), + weekdaysMin : 'вс_пн_вт_ср_чт_пт_сб'.split('_'), + monthsParse : [/^янв/i, /^фев/i, /^мар/i, /^апр/i, /^ма[й|я]/i, /^июн/i, /^июл/i, /^авг/i, /^сен/i, /^окт/i, /^ноя/i, /^дек/i], + longDateFormat : { + LT : 'HH:mm', + L : 'DD.MM.YYYY', + LL : 'D MMMM YYYY г.', + LLL : 'D MMMM YYYY г., LT', + LLLL : 'dddd, D MMMM YYYY г., LT' + }, + calendar : { + sameDay: '[Сегодня в] LT', + nextDay: '[Завтра в] LT', + lastDay: '[Вчера в] LT', + nextWeek: function () { + return this.day() === 2 ? '[Во] dddd [в] LT' : '[В] dddd [в] LT'; + }, + lastWeek: function () { + switch (this.day()) { + case 0: + return '[В прошлое] dddd [в] LT'; + case 1: + case 2: + case 4: + return '[В прошлый] dddd [в] LT'; + case 3: + case 5: + case 6: + return '[В прошлую] dddd [в] LT'; + } + }, + sameElse: 'L' + }, + relativeTime : { + future : 'через %s', + past : '%s назад', + s : 'несколько секунд', + m : relativeTimeWithPlural, + mm : relativeTimeWithPlural, + h : 'час', + hh : relativeTimeWithPlural, + d : 'день', + dd : relativeTimeWithPlural, + M : 'месяц', + MM : relativeTimeWithPlural, + y : 'год', + yy : relativeTimeWithPlural + }, + + meridiemParse: /ночи|утра|дня|вечера/i, + isPM : function (input) { + return /^(дня|вечера)$/.test(input); + }, + + meridiem : function (hour, minute, isLower) { + if (hour < 4) { + return 'ночи'; + } else if (hour < 12) { + return 'утра'; + } else if (hour < 17) { + return 'дня'; + } else { + return 'вечера'; + } + }, + + ordinal: function (number, period) { + switch (period) { + case 'M': + case 'd': + case 'DDD': + return number + '-й'; + case 'D': + return number + '-го'; + case 'w': + case 'W': + return number + '-я'; + default: + return number; + } + }, + + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : slovak (sk) +// author : Martin Minka : https://github.com/k2s +// based on work of petrbela : https://github.com/petrbela + +(function (factory) { + factory(moment); +}(function (moment) { + var months = 'január_február_marec_apríl_máj_jún_júl_august_september_október_november_december'.split('_'), + monthsShort = 'jan_feb_mar_apr_máj_jún_júl_aug_sep_okt_nov_dec'.split('_'); + + function plural(n) { + return (n > 1) && (n < 5); + } + + function translate(number, withoutSuffix, key, isFuture) { + var result = number + ' '; + switch (key) { + case 's': // a few seconds / in a few seconds / a few seconds ago + return (withoutSuffix || isFuture) ? 'pár sekúnd' : 'pár sekundami'; + case 'm': // a minute / in a minute / a minute ago + return withoutSuffix ? 'minúta' : (isFuture ? 'minútu' : 'minútou'); + case 'mm': // 9 minutes / in 9 minutes / 9 minutes ago + if (withoutSuffix || isFuture) { + return result + (plural(number) ? 'minúty' : 'minút'); + } else { + return result + 'minútami'; + } + break; + case 'h': // an hour / in an hour / an hour ago + return withoutSuffix ? 'hodina' : (isFuture ? 'hodinu' : 'hodinou'); + case 'hh': // 9 hours / in 9 hours / 9 hours ago + if (withoutSuffix || isFuture) { + return result + (plural(number) ? 'hodiny' : 'hodín'); + } else { + return result + 'hodinami'; + } + break; + case 'd': // a day / in a day / a day ago + return (withoutSuffix || isFuture) ? 'deň' : 'dňom'; + case 'dd': // 9 days / in 9 days / 9 days ago + if (withoutSuffix || isFuture) { + return result + (plural(number) ? 'dni' : 'dní'); + } else { + return result + 'dňami'; + } + break; + case 'M': // a month / in a month / a month ago + return (withoutSuffix || isFuture) ? 'mesiac' : 'mesiacom'; + case 'MM': // 9 months / in 9 months / 9 months ago + if (withoutSuffix || isFuture) { + return result + (plural(number) ? 'mesiace' : 'mesiacov'); + } else { + return result + 'mesiacmi'; + } + break; + case 'y': // a year / in a year / a year ago + return (withoutSuffix || isFuture) ? 'rok' : 'rokom'; + case 'yy': // 9 years / in 9 years / 9 years ago + if (withoutSuffix || isFuture) { + return result + (plural(number) ? 'roky' : 'rokov'); + } else { + return result + 'rokmi'; + } + break; + } + } + + return moment.defineLocale('sk', { + months : months, + monthsShort : monthsShort, + monthsParse : (function (months, monthsShort) { + var i, _monthsParse = []; + for (i = 0; i < 12; i++) { + // use custom parser to solve problem with July (červenec) + _monthsParse[i] = new RegExp('^' + months[i] + '$|^' + monthsShort[i] + '$', 'i'); + } + return _monthsParse; + }(months, monthsShort)), + weekdays : 'nedeľa_pondelok_utorok_streda_štvrtok_piatok_sobota'.split('_'), + weekdaysShort : 'ne_po_ut_st_št_pi_so'.split('_'), + weekdaysMin : 'ne_po_ut_st_št_pi_so'.split('_'), + longDateFormat : { + LT: 'H:mm', + L : 'DD.MM.YYYY', + LL : 'D. MMMM YYYY', + LLL : 'D. MMMM YYYY LT', + LLLL : 'dddd D. MMMM YYYY LT' + }, + calendar : { + sameDay: '[dnes o] LT', + nextDay: '[zajtra o] LT', + nextWeek: function () { + switch (this.day()) { + case 0: + return '[v nedeľu o] LT'; + case 1: + case 2: + return '[v] dddd [o] LT'; + case 3: + return '[v stredu o] LT'; + case 4: + return '[vo štvrtok o] LT'; + case 5: + return '[v piatok o] LT'; + case 6: + return '[v sobotu o] LT'; + } + }, + lastDay: '[včera o] LT', + lastWeek: function () { + switch (this.day()) { + case 0: + return '[minulú nedeľu o] LT'; + case 1: + case 2: + return '[minulý] dddd [o] LT'; + case 3: + return '[minulú stredu o] LT'; + case 4: + case 5: + return '[minulý] dddd [o] LT'; + case 6: + return '[minulú sobotu o] LT'; + } + }, + sameElse: 'L' + }, + relativeTime : { + future : 'za %s', + past : 'pred %s', + s : translate, + m : translate, + mm : translate, + h : translate, + hh : translate, + d : translate, + dd : translate, + M : translate, + MM : translate, + y : translate, + yy : translate + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : slovenian (sl) +// author : Robert Sedovšek : https://github.com/sedovsek + +(function (factory) { + factory(moment); +}(function (moment) { + function translate(number, withoutSuffix, key) { + var result = number + ' '; + switch (key) { + case 'm': + return withoutSuffix ? 'ena minuta' : 'eno minuto'; + case 'mm': + if (number === 1) { + result += 'minuta'; + } else if (number === 2) { + result += 'minuti'; + } else if (number === 3 || number === 4) { + result += 'minute'; + } else { + result += 'minut'; + } + return result; + case 'h': + return withoutSuffix ? 'ena ura' : 'eno uro'; + case 'hh': + if (number === 1) { + result += 'ura'; + } else if (number === 2) { + result += 'uri'; + } else if (number === 3 || number === 4) { + result += 'ure'; + } else { + result += 'ur'; + } + return result; + case 'dd': + if (number === 1) { + result += 'dan'; + } else { + result += 'dni'; + } + return result; + case 'MM': + if (number === 1) { + result += 'mesec'; + } else if (number === 2) { + result += 'meseca'; + } else if (number === 3 || number === 4) { + result += 'mesece'; + } else { + result += 'mesecev'; + } + return result; + case 'yy': + if (number === 1) { + result += 'leto'; + } else if (number === 2) { + result += 'leti'; + } else if (number === 3 || number === 4) { + result += 'leta'; + } else { + result += 'let'; + } + return result; + } + } + + return moment.defineLocale('sl', { + months : 'januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december'.split('_'), + monthsShort : 'jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.'.split('_'), + weekdays : 'nedelja_ponedeljek_torek_sreda_četrtek_petek_sobota'.split('_'), + weekdaysShort : 'ned._pon._tor._sre._čet._pet._sob.'.split('_'), + weekdaysMin : 'ne_po_to_sr_če_pe_so'.split('_'), + longDateFormat : { + LT : 'H:mm', + L : 'DD. MM. YYYY', + LL : 'D. MMMM YYYY', + LLL : 'D. MMMM YYYY LT', + LLLL : 'dddd, D. MMMM YYYY LT' + }, + calendar : { + sameDay : '[danes ob] LT', + nextDay : '[jutri ob] LT', + + nextWeek : function () { + switch (this.day()) { + case 0: + return '[v] [nedeljo] [ob] LT'; + case 3: + return '[v] [sredo] [ob] LT'; + case 6: + return '[v] [soboto] [ob] LT'; + case 1: + case 2: + case 4: + case 5: + return '[v] dddd [ob] LT'; + } + }, + lastDay : '[včeraj ob] LT', + lastWeek : function () { + switch (this.day()) { + case 0: + case 3: + case 6: + return '[prejšnja] dddd [ob] LT'; + case 1: + case 2: + case 4: + case 5: + return '[prejšnji] dddd [ob] LT'; + } + }, + sameElse : 'L' + }, + relativeTime : { + future : 'čez %s', + past : '%s nazaj', + s : 'nekaj sekund', + m : translate, + mm : translate, + h : translate, + hh : translate, + d : 'en dan', + dd : translate, + M : 'en mesec', + MM : translate, + y : 'eno leto', + yy : translate + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Albanian (sq) +// author : Flakërim Ismani : https://github.com/flakerimi +// author: Menelion Elensúle: https://github.com/Oire (tests) +// author : Oerd Cukalla : https://github.com/oerd (fixes) + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('sq', { + months : 'Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_Nëntor_Dhjetor'.split('_'), + monthsShort : 'Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_Nën_Dhj'.split('_'), + weekdays : 'E Diel_E Hënë_E Martë_E Mërkurë_E Enjte_E Premte_E Shtunë'.split('_'), + weekdaysShort : 'Die_Hën_Mar_Mër_Enj_Pre_Sht'.split('_'), + weekdaysMin : 'D_H_Ma_Më_E_P_Sh'.split('_'), + meridiem : function (hours, minutes, isLower) { + return hours < 12 ? 'PD' : 'MD'; + }, + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd, D MMMM YYYY LT' + }, + calendar : { + sameDay : '[Sot në] LT', + nextDay : '[Nesër në] LT', + nextWeek : 'dddd [në] LT', + lastDay : '[Dje në] LT', + lastWeek : 'dddd [e kaluar në] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'në %s', + past : '%s më parë', + s : 'disa sekonda', + m : 'një minutë', + mm : '%d minuta', + h : 'një orë', + hh : '%d orë', + d : 'një ditë', + dd : '%d ditë', + M : 'një muaj', + MM : '%d muaj', + y : 'një vit', + yy : '%d vite' + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Serbian-cyrillic (sr-cyrl) +// author : Milan Janačković : https://github.com/milan-j + +(function (factory) { + factory(moment); +}(function (moment) { + var translator = { + words: { //Different grammatical cases + m: ['један минут', 'једне минуте'], + mm: ['минут', 'минуте', 'минута'], + h: ['један сат', 'једног сата'], + hh: ['сат', 'сата', 'сати'], + dd: ['дан', 'дана', 'дана'], + MM: ['месец', 'месеца', 'месеци'], + yy: ['година', 'године', 'година'] + }, + correctGrammaticalCase: function (number, wordKey) { + return number === 1 ? wordKey[0] : (number >= 2 && number <= 4 ? wordKey[1] : wordKey[2]); + }, + translate: function (number, withoutSuffix, key) { + var wordKey = translator.words[key]; + if (key.length === 1) { + return withoutSuffix ? wordKey[0] : wordKey[1]; + } else { + return number + ' ' + translator.correctGrammaticalCase(number, wordKey); + } + } + }; + + return moment.defineLocale('sr-cyrl', { + months: ['јануар', 'фебруар', 'март', 'април', 'мај', 'јун', 'јул', 'август', 'септембар', 'октобар', 'новембар', 'децембар'], + monthsShort: ['јан.', 'феб.', 'мар.', 'апр.', 'мај', 'јун', 'јул', 'авг.', 'сеп.', 'окт.', 'нов.', 'дец.'], + weekdays: ['недеља', 'понедељак', 'уторак', 'среда', 'четвртак', 'петак', 'субота'], + weekdaysShort: ['нед.', 'пон.', 'уто.', 'сре.', 'чет.', 'пет.', 'суб.'], + weekdaysMin: ['не', 'по', 'ут', 'ср', 'че', 'пе', 'су'], + longDateFormat: { + LT: 'H:mm', + L: 'DD. MM. YYYY', + LL: 'D. MMMM YYYY', + LLL: 'D. MMMM YYYY LT', + LLLL: 'dddd, D. MMMM YYYY LT' + }, + calendar: { + sameDay: '[данас у] LT', + nextDay: '[сутра у] LT', + + nextWeek: function () { + switch (this.day()) { + case 0: + return '[у] [недељу] [у] LT'; + case 3: + return '[у] [среду] [у] LT'; + case 6: + return '[у] [суботу] [у] LT'; + case 1: + case 2: + case 4: + case 5: + return '[у] dddd [у] LT'; + } + }, + lastDay : '[јуче у] LT', + lastWeek : function () { + var lastWeekDays = [ + '[прошле] [недеље] [у] LT', + '[прошлог] [понедељка] [у] LT', + '[прошлог] [уторка] [у] LT', + '[прошле] [среде] [у] LT', + '[прошлог] [четвртка] [у] LT', + '[прошлог] [петка] [у] LT', + '[прошле] [суботе] [у] LT' + ]; + return lastWeekDays[this.day()]; + }, + sameElse : 'L' + }, + relativeTime : { + future : 'за %s', + past : 'пре %s', + s : 'неколико секунди', + m : translator.translate, + mm : translator.translate, + h : translator.translate, + hh : translator.translate, + d : 'дан', + dd : translator.translate, + M : 'месец', + MM : translator.translate, + y : 'годину', + yy : translator.translate + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Serbian-latin (sr) +// author : Milan Janačković : https://github.com/milan-j + +(function (factory) { + factory(moment); +}(function (moment) { + var translator = { + words: { //Different grammatical cases + m: ['jedan minut', 'jedne minute'], + mm: ['minut', 'minute', 'minuta'], + h: ['jedan sat', 'jednog sata'], + hh: ['sat', 'sata', 'sati'], + dd: ['dan', 'dana', 'dana'], + MM: ['mesec', 'meseca', 'meseci'], + yy: ['godina', 'godine', 'godina'] + }, + correctGrammaticalCase: function (number, wordKey) { + return number === 1 ? wordKey[0] : (number >= 2 && number <= 4 ? wordKey[1] : wordKey[2]); + }, + translate: function (number, withoutSuffix, key) { + var wordKey = translator.words[key]; + if (key.length === 1) { + return withoutSuffix ? wordKey[0] : wordKey[1]; + } else { + return number + ' ' + translator.correctGrammaticalCase(number, wordKey); + } + } + }; + + return moment.defineLocale('sr', { + months: ['januar', 'februar', 'mart', 'april', 'maj', 'jun', 'jul', 'avgust', 'septembar', 'oktobar', 'novembar', 'decembar'], + monthsShort: ['jan.', 'feb.', 'mar.', 'apr.', 'maj', 'jun', 'jul', 'avg.', 'sep.', 'okt.', 'nov.', 'dec.'], + weekdays: ['nedelja', 'ponedeljak', 'utorak', 'sreda', 'četvrtak', 'petak', 'subota'], + weekdaysShort: ['ned.', 'pon.', 'uto.', 'sre.', 'čet.', 'pet.', 'sub.'], + weekdaysMin: ['ne', 'po', 'ut', 'sr', 'če', 'pe', 'su'], + longDateFormat: { + LT: 'H:mm', + L: 'DD. MM. YYYY', + LL: 'D. MMMM YYYY', + LLL: 'D. MMMM YYYY LT', + LLLL: 'dddd, D. MMMM YYYY LT' + }, + calendar: { + sameDay: '[danas u] LT', + nextDay: '[sutra u] LT', + + nextWeek: function () { + switch (this.day()) { + case 0: + return '[u] [nedelju] [u] LT'; + case 3: + return '[u] [sredu] [u] LT'; + case 6: + return '[u] [subotu] [u] LT'; + case 1: + case 2: + case 4: + case 5: + return '[u] dddd [u] LT'; + } + }, + lastDay : '[juče u] LT', + lastWeek : function () { + var lastWeekDays = [ + '[prošle] [nedelje] [u] LT', + '[prošlog] [ponedeljka] [u] LT', + '[prošlog] [utorka] [u] LT', + '[prošle] [srede] [u] LT', + '[prošlog] [četvrtka] [u] LT', + '[prošlog] [petka] [u] LT', + '[prošle] [subote] [u] LT' + ]; + return lastWeekDays[this.day()]; + }, + sameElse : 'L' + }, + relativeTime : { + future : 'za %s', + past : 'pre %s', + s : 'nekoliko sekundi', + m : translator.translate, + mm : translator.translate, + h : translator.translate, + hh : translator.translate, + d : 'dan', + dd : translator.translate, + M : 'mesec', + MM : translator.translate, + y : 'godinu', + yy : translator.translate + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : swedish (sv) +// author : Jens Alm : https://github.com/ulmus + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('sv', { + months : 'januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december'.split('_'), + monthsShort : 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'), + weekdays : 'söndag_måndag_tisdag_onsdag_torsdag_fredag_lördag'.split('_'), + weekdaysShort : 'sön_mån_tis_ons_tor_fre_lör'.split('_'), + weekdaysMin : 'sö_må_ti_on_to_fr_lö'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'YYYY-MM-DD', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd D MMMM YYYY LT' + }, + calendar : { + sameDay: '[Idag] LT', + nextDay: '[Imorgon] LT', + lastDay: '[Igår] LT', + nextWeek: 'dddd LT', + lastWeek: '[Förra] dddd[en] LT', + sameElse: 'L' + }, + relativeTime : { + future : 'om %s', + past : 'för %s sedan', + s : 'några sekunder', + m : 'en minut', + mm : '%d minuter', + h : 'en timme', + hh : '%d timmar', + d : 'en dag', + dd : '%d dagar', + M : 'en månad', + MM : '%d månader', + y : 'ett år', + yy : '%d år' + }, + ordinal : function (number) { + var b = number % 10, + output = (~~(number % 100 / 10) === 1) ? 'e' : + (b === 1) ? 'a' : + (b === 2) ? 'a' : + (b === 3) ? 'e' : 'e'; + return number + output; + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : tamil (ta) +// author : Arjunkumar Krishnamoorthy : https://github.com/tk120404 + +(function (factory) { + factory(moment); +}(function (moment) { + /*var symbolMap = { + '1': '௧', + '2': '௨', + '3': '௩', + '4': '௪', + '5': '௫', + '6': '௬', + '7': '௭', + '8': '௮', + '9': '௯', + '0': '௦' + }, + numberMap = { + '௧': '1', + '௨': '2', + '௩': '3', + '௪': '4', + '௫': '5', + '௬': '6', + '௭': '7', + '௮': '8', + '௯': '9', + '௦': '0' + }; */ + + return moment.defineLocale('ta', { + months : 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split('_'), + monthsShort : 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split('_'), + weekdays : 'ஞாயிற்றுக்கிழமை_திங்கட்கிழமை_செவ்வாய்கிழமை_புதன்கிழமை_வியாழக்கிழமை_வெள்ளிக்கிழமை_சனிக்கிழமை'.split('_'), + weekdaysShort : 'ஞாயிறு_திங்கள்_செவ்வாய்_புதன்_வியாழன்_வெள்ளி_சனி'.split('_'), + weekdaysMin : 'ஞா_தி_செ_பு_வி_வெ_ச'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY, LT', + LLLL : 'dddd, D MMMM YYYY, LT' + }, + calendar : { + sameDay : '[இன்று] LT', + nextDay : '[நாளை] LT', + nextWeek : 'dddd, LT', + lastDay : '[நேற்று] LT', + lastWeek : '[கடந்த வாரம்] dddd, LT', + sameElse : 'L' + }, + relativeTime : { + future : '%s இல்', + past : '%s முன்', + s : 'ஒரு சில விநாடிகள்', + m : 'ஒரு நிமிடம்', + mm : '%d நிமிடங்கள்', + h : 'ஒரு மணி நேரம்', + hh : '%d மணி நேரம்', + d : 'ஒரு நாள்', + dd : '%d நாட்கள்', + M : 'ஒரு மாதம்', + MM : '%d மாதங்கள்', + y : 'ஒரு வருடம்', + yy : '%d ஆண்டுகள்' + }, +/* preparse: function (string) { + return string.replace(/[௧௨௩௪௫௬௭௮௯௦]/g, function (match) { + return numberMap[match]; + }); + }, + postformat: function (string) { + return string.replace(/\d/g, function (match) { + return symbolMap[match]; + }); + },*/ + ordinal : function (number) { + return number + 'வது'; + }, + + + // refer http://ta.wikipedia.org/s/1er1 + + meridiem : function (hour, minute, isLower) { + if (hour >= 6 && hour <= 10) { + return ' காலை'; + } else if (hour >= 10 && hour <= 14) { + return ' நண்பகல்'; + } else if (hour >= 14 && hour <= 18) { + return ' எற்பாடு'; + } else if (hour >= 18 && hour <= 20) { + return ' மாலை'; + } else if (hour >= 20 && hour <= 24) { + return ' இரவு'; + } else if (hour >= 0 && hour <= 6) { + return ' வைகறை'; + } + }, + week : { + dow : 0, // Sunday is the first day of the week. + doy : 6 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : thai (th) +// author : Kridsada Thanabulpong : https://github.com/sirn + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('th', { + months : 'มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม'.split('_'), + monthsShort : 'มกรา_กุมภา_มีนา_เมษา_พฤษภา_มิถุนา_กรกฎา_สิงหา_กันยา_ตุลา_พฤศจิกา_ธันวา'.split('_'), + weekdays : 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์'.split('_'), + weekdaysShort : 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์'.split('_'), // yes, three characters difference + weekdaysMin : 'อา._จ._อ._พ._พฤ._ศ._ส.'.split('_'), + longDateFormat : { + LT : 'H นาฬิกา m นาที', + L : 'YYYY/MM/DD', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY เวลา LT', + LLLL : 'วันddddที่ D MMMM YYYY เวลา LT' + }, + meridiem : function (hour, minute, isLower) { + if (hour < 12) { + return 'ก่อนเที่ยง'; + } else { + return 'หลังเที่ยง'; + } + }, + calendar : { + sameDay : '[วันนี้ เวลา] LT', + nextDay : '[พรุ่งนี้ เวลา] LT', + nextWeek : 'dddd[หน้า เวลา] LT', + lastDay : '[เมื่อวานนี้ เวลา] LT', + lastWeek : '[วัน]dddd[ที่แล้ว เวลา] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'อีก %s', + past : '%sที่แล้ว', + s : 'ไม่กี่วินาที', + m : '1 นาที', + mm : '%d นาที', + h : '1 ชั่วโมง', + hh : '%d ชั่วโมง', + d : '1 วัน', + dd : '%d วัน', + M : '1 เดือน', + MM : '%d เดือน', + y : '1 ปี', + yy : '%d ปี' + } + }); +})); +// moment.js locale configuration +// locale : Tagalog/Filipino (tl-ph) +// author : Dan Hagman + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('tl-ph', { + months : 'Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre'.split('_'), + monthsShort : 'Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis'.split('_'), + weekdays : 'Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado'.split('_'), + weekdaysShort : 'Lin_Lun_Mar_Miy_Huw_Biy_Sab'.split('_'), + weekdaysMin : 'Li_Lu_Ma_Mi_Hu_Bi_Sab'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'MM/D/YYYY', + LL : 'MMMM D, YYYY', + LLL : 'MMMM D, YYYY LT', + LLLL : 'dddd, MMMM DD, YYYY LT' + }, + calendar : { + sameDay: '[Ngayon sa] LT', + nextDay: '[Bukas sa] LT', + nextWeek: 'dddd [sa] LT', + lastDay: '[Kahapon sa] LT', + lastWeek: 'dddd [huling linggo] LT', + sameElse: 'L' + }, + relativeTime : { + future : 'sa loob ng %s', + past : '%s ang nakalipas', + s : 'ilang segundo', + m : 'isang minuto', + mm : '%d minuto', + h : 'isang oras', + hh : '%d oras', + d : 'isang araw', + dd : '%d araw', + M : 'isang buwan', + MM : '%d buwan', + y : 'isang taon', + yy : '%d taon' + }, + ordinal : function (number) { + return number; + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : turkish (tr) +// authors : Erhan Gundogan : https://github.com/erhangundogan, +// Burak Yiğit Kaya: https://github.com/BYK + +(function (factory) { + factory(moment); +}(function (moment) { + var suffixes = { + 1: '\'inci', + 5: '\'inci', + 8: '\'inci', + 70: '\'inci', + 80: '\'inci', + + 2: '\'nci', + 7: '\'nci', + 20: '\'nci', + 50: '\'nci', + + 3: '\'üncü', + 4: '\'üncü', + 100: '\'üncü', + + 6: '\'ncı', + + 9: '\'uncu', + 10: '\'uncu', + 30: '\'uncu', + + 60: '\'ıncı', + 90: '\'ıncı' + }; + + return moment.defineLocale('tr', { + months : 'Ocak_Şubat_Mart_Nisan_Mayıs_Haziran_Temmuz_Ağustos_Eylül_Ekim_Kasım_Aralık'.split('_'), + monthsShort : 'Oca_Şub_Mar_Nis_May_Haz_Tem_Ağu_Eyl_Eki_Kas_Ara'.split('_'), + weekdays : 'Pazar_Pazartesi_Salı_Çarşamba_Perşembe_Cuma_Cumartesi'.split('_'), + weekdaysShort : 'Paz_Pts_Sal_Çar_Per_Cum_Cts'.split('_'), + weekdaysMin : 'Pz_Pt_Sa_Ça_Pe_Cu_Ct'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD.MM.YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd, D MMMM YYYY LT' + }, + calendar : { + sameDay : '[bugün saat] LT', + nextDay : '[yarın saat] LT', + nextWeek : '[haftaya] dddd [saat] LT', + lastDay : '[dün] LT', + lastWeek : '[geçen hafta] dddd [saat] LT', + sameElse : 'L' + }, + relativeTime : { + future : '%s sonra', + past : '%s önce', + s : 'birkaç saniye', + m : 'bir dakika', + mm : '%d dakika', + h : 'bir saat', + hh : '%d saat', + d : 'bir gün', + dd : '%d gün', + M : 'bir ay', + MM : '%d ay', + y : 'bir yıl', + yy : '%d yıl' + }, + ordinal : function (number) { + if (number === 0) { // special case for zero + return number + '\'ıncı'; + } + var a = number % 10, + b = number % 100 - a, + c = number >= 100 ? 100 : null; + + return number + (suffixes[a] || suffixes[b] || suffixes[c]); + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Morocco Central Atlas Tamaziɣt in Latin (tzm-latn) +// author : Abdel Said : https://github.com/abdelsaid + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('tzm-latn', { + months : 'innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir'.split('_'), + monthsShort : 'innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir'.split('_'), + weekdays : 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'), + weekdaysShort : 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'), + weekdaysMin : 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd D MMMM YYYY LT' + }, + calendar : { + sameDay: '[asdkh g] LT', + nextDay: '[aska g] LT', + nextWeek: 'dddd [g] LT', + lastDay: '[assant g] LT', + lastWeek: 'dddd [g] LT', + sameElse: 'L' + }, + relativeTime : { + future : 'dadkh s yan %s', + past : 'yan %s', + s : 'imik', + m : 'minuḍ', + mm : '%d minuḍ', + h : 'saɛa', + hh : '%d tassaɛin', + d : 'ass', + dd : '%d ossan', + M : 'ayowr', + MM : '%d iyyirn', + y : 'asgas', + yy : '%d isgasn' + }, + week : { + dow : 6, // Saturday is the first day of the week. + doy : 12 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Morocco Central Atlas Tamaziɣt (tzm) +// author : Abdel Said : https://github.com/abdelsaid + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('tzm', { + months : 'ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ'.split('_'), + monthsShort : 'ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ'.split('_'), + weekdays : 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'), + weekdaysShort : 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'), + weekdaysMin : 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd D MMMM YYYY LT' + }, + calendar : { + sameDay: '[ⴰⵙⴷⵅ ⴴ] LT', + nextDay: '[ⴰⵙⴽⴰ ⴴ] LT', + nextWeek: 'dddd [ⴴ] LT', + lastDay: '[ⴰⵚⴰⵏⵜ ⴴ] LT', + lastWeek: 'dddd [ⴴ] LT', + sameElse: 'L' + }, + relativeTime : { + future : 'ⴷⴰⴷⵅ ⵙ ⵢⴰⵏ %s', + past : 'ⵢⴰⵏ %s', + s : 'ⵉⵎⵉⴽ', + m : 'ⵎⵉⵏⵓⴺ', + mm : '%d ⵎⵉⵏⵓⴺ', + h : 'ⵙⴰⵄⴰ', + hh : '%d ⵜⴰⵙⵙⴰⵄⵉⵏ', + d : 'ⴰⵙⵙ', + dd : '%d oⵙⵙⴰⵏ', + M : 'ⴰⵢoⵓⵔ', + MM : '%d ⵉⵢⵢⵉⵔⵏ', + y : 'ⴰⵙⴳⴰⵙ', + yy : '%d ⵉⵙⴳⴰⵙⵏ' + }, + week : { + dow : 6, // Saturday is the first day of the week. + doy : 12 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : ukrainian (uk) +// author : zemlanin : https://github.com/zemlanin +// Author : Menelion Elensúle : https://github.com/Oire + +(function (factory) { + factory(moment); +}(function (moment) { + function plural(word, num) { + var forms = word.split('_'); + return num % 10 === 1 && num % 100 !== 11 ? forms[0] : (num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20) ? forms[1] : forms[2]); + } + + function relativeTimeWithPlural(number, withoutSuffix, key) { + var format = { + 'mm': 'хвилина_хвилини_хвилин', + 'hh': 'година_години_годин', + 'dd': 'день_дні_днів', + 'MM': 'місяць_місяці_місяців', + 'yy': 'рік_роки_років' + }; + if (key === 'm') { + return withoutSuffix ? 'хвилина' : 'хвилину'; + } + else if (key === 'h') { + return withoutSuffix ? 'година' : 'годину'; + } + else { + return number + ' ' + plural(format[key], +number); + } + } + + function monthsCaseReplace(m, format) { + var months = { + 'nominative': 'січень_лютий_березень_квітень_травень_червень_липень_серпень_вересень_жовтень_листопад_грудень'.split('_'), + 'accusative': 'січня_лютого_березня_квітня_травня_червня_липня_серпня_вересня_жовтня_листопада_грудня'.split('_') + }, + + nounCase = (/D[oD]? *MMMM?/).test(format) ? + 'accusative' : + 'nominative'; + + return months[nounCase][m.month()]; + } + + function weekdaysCaseReplace(m, format) { + var weekdays = { + 'nominative': 'неділя_понеділок_вівторок_середа_четвер_п’ятниця_субота'.split('_'), + 'accusative': 'неділю_понеділок_вівторок_середу_четвер_п’ятницю_суботу'.split('_'), + 'genitive': 'неділі_понеділка_вівторка_середи_четверга_п’ятниці_суботи'.split('_') + }, + + nounCase = (/(\[[ВвУу]\]) ?dddd/).test(format) ? + 'accusative' : + ((/\[?(?:минулої|наступної)? ?\] ?dddd/).test(format) ? + 'genitive' : + 'nominative'); + + return weekdays[nounCase][m.day()]; + } + + function processHoursFunction(str) { + return function () { + return str + 'о' + (this.hours() === 11 ? 'б' : '') + '] LT'; + }; + } + + return moment.defineLocale('uk', { + months : monthsCaseReplace, + monthsShort : 'січ_лют_бер_квіт_трав_черв_лип_серп_вер_жовт_лист_груд'.split('_'), + weekdays : weekdaysCaseReplace, + weekdaysShort : 'нд_пн_вт_ср_чт_пт_сб'.split('_'), + weekdaysMin : 'нд_пн_вт_ср_чт_пт_сб'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD.MM.YYYY', + LL : 'D MMMM YYYY р.', + LLL : 'D MMMM YYYY р., LT', + LLLL : 'dddd, D MMMM YYYY р., LT' + }, + calendar : { + sameDay: processHoursFunction('[Сьогодні '), + nextDay: processHoursFunction('[Завтра '), + lastDay: processHoursFunction('[Вчора '), + nextWeek: processHoursFunction('[У] dddd ['), + lastWeek: function () { + switch (this.day()) { + case 0: + case 3: + case 5: + case 6: + return processHoursFunction('[Минулої] dddd [').call(this); + case 1: + case 2: + case 4: + return processHoursFunction('[Минулого] dddd [').call(this); + } + }, + sameElse: 'L' + }, + relativeTime : { + future : 'за %s', + past : '%s тому', + s : 'декілька секунд', + m : relativeTimeWithPlural, + mm : relativeTimeWithPlural, + h : 'годину', + hh : relativeTimeWithPlural, + d : 'день', + dd : relativeTimeWithPlural, + M : 'місяць', + MM : relativeTimeWithPlural, + y : 'рік', + yy : relativeTimeWithPlural + }, + + // M. E.: those two are virtually unused but a user might want to implement them for his/her website for some reason + + meridiem : function (hour, minute, isLower) { + if (hour < 4) { + return 'ночі'; + } else if (hour < 12) { + return 'ранку'; + } else if (hour < 17) { + return 'дня'; + } else { + return 'вечора'; + } + }, + + ordinal: function (number, period) { + switch (period) { + case 'M': + case 'd': + case 'DDD': + case 'w': + case 'W': + return number + '-й'; + case 'D': + return number + '-го'; + default: + return number; + } + }, + + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : uzbek (uz) +// author : Sardor Muminov : https://github.com/muminoff + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('uz', { + months : 'январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь'.split('_'), + monthsShort : 'янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек'.split('_'), + weekdays : 'Якшанба_Душанба_Сешанба_Чоршанба_Пайшанба_Жума_Шанба'.split('_'), + weekdaysShort : 'Якш_Душ_Сеш_Чор_Пай_Жум_Шан'.split('_'), + weekdaysMin : 'Як_Ду_Се_Чо_Па_Жу_Ша'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'D MMMM YYYY, dddd LT' + }, + calendar : { + sameDay : '[Бугун соат] LT [да]', + nextDay : '[Эртага] LT [да]', + nextWeek : 'dddd [куни соат] LT [да]', + lastDay : '[Кеча соат] LT [да]', + lastWeek : '[Утган] dddd [куни соат] LT [да]', + sameElse : 'L' + }, + relativeTime : { + future : 'Якин %s ичида', + past : 'Бир неча %s олдин', + s : 'фурсат', + m : 'бир дакика', + mm : '%d дакика', + h : 'бир соат', + hh : '%d соат', + d : 'бир кун', + dd : '%d кун', + M : 'бир ой', + MM : '%d ой', + y : 'бир йил', + yy : '%d йил' + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : vietnamese (vi) +// author : Bang Nguyen : https://github.com/bangnk + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('vi', { + months : 'tháng 1_tháng 2_tháng 3_tháng 4_tháng 5_tháng 6_tháng 7_tháng 8_tháng 9_tháng 10_tháng 11_tháng 12'.split('_'), + monthsShort : 'Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12'.split('_'), + weekdays : 'chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy'.split('_'), + weekdaysShort : 'CN_T2_T3_T4_T5_T6_T7'.split('_'), + weekdaysMin : 'CN_T2_T3_T4_T5_T6_T7'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM [năm] YYYY', + LLL : 'D MMMM [năm] YYYY LT', + LLLL : 'dddd, D MMMM [năm] YYYY LT', + l : 'DD/M/YYYY', + ll : 'D MMM YYYY', + lll : 'D MMM YYYY LT', + llll : 'ddd, D MMM YYYY LT' + }, + calendar : { + sameDay: '[Hôm nay lúc] LT', + nextDay: '[Ngày mai lúc] LT', + nextWeek: 'dddd [tuần tới lúc] LT', + lastDay: '[Hôm qua lúc] LT', + lastWeek: 'dddd [tuần rồi lúc] LT', + sameElse: 'L' + }, + relativeTime : { + future : '%s tới', + past : '%s trước', + s : 'vài giây', + m : 'một phút', + mm : '%d phút', + h : 'một giờ', + hh : '%d giờ', + d : 'một ngày', + dd : '%d ngày', + M : 'một tháng', + MM : '%d tháng', + y : 'một năm', + yy : '%d năm' + }, + ordinal : function (number) { + return number; + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : chinese (zh-cn) +// author : suupic : https://github.com/suupic +// author : Zeno Zeng : https://github.com/zenozeng + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('zh-cn', { + months : '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split('_'), + monthsShort : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'), + weekdays : '星期日_星期一_星期二_星期三_星期四_星期五_星期六'.split('_'), + weekdaysShort : '周日_周一_周二_周三_周四_周五_周六'.split('_'), + weekdaysMin : '日_一_二_三_四_五_六'.split('_'), + longDateFormat : { + LT : 'Ah点mm', + L : 'YYYY-MM-DD', + LL : 'YYYY年MMMD日', + LLL : 'YYYY年MMMD日LT', + LLLL : 'YYYY年MMMD日ddddLT', + l : 'YYYY-MM-DD', + ll : 'YYYY年MMMD日', + lll : 'YYYY年MMMD日LT', + llll : 'YYYY年MMMD日ddddLT' + }, + meridiem : function (hour, minute, isLower) { + var hm = hour * 100 + minute; + if (hm < 600) { + return '凌晨'; + } else if (hm < 900) { + return '早上'; + } else if (hm < 1130) { + return '上午'; + } else if (hm < 1230) { + return '中午'; + } else if (hm < 1800) { + return '下午'; + } else { + return '晚上'; + } + }, + calendar : { + sameDay : function () { + return this.minutes() === 0 ? '[今天]Ah[点整]' : '[今天]LT'; + }, + nextDay : function () { + return this.minutes() === 0 ? '[明天]Ah[点整]' : '[明天]LT'; + }, + lastDay : function () { + return this.minutes() === 0 ? '[昨天]Ah[点整]' : '[昨天]LT'; + }, + nextWeek : function () { + var startOfWeek, prefix; + startOfWeek = moment().startOf('week'); + prefix = this.unix() - startOfWeek.unix() >= 7 * 24 * 3600 ? '[下]' : '[本]'; + return this.minutes() === 0 ? prefix + 'dddAh点整' : prefix + 'dddAh点mm'; + }, + lastWeek : function () { + var startOfWeek, prefix; + startOfWeek = moment().startOf('week'); + prefix = this.unix() < startOfWeek.unix() ? '[上]' : '[本]'; + return this.minutes() === 0 ? prefix + 'dddAh点整' : prefix + 'dddAh点mm'; + }, + sameElse : 'LL' + }, + ordinal : function (number, period) { + switch (period) { + case 'd': + case 'D': + case 'DDD': + return number + '日'; + case 'M': + return number + '月'; + case 'w': + case 'W': + return number + '周'; + default: + return number; + } + }, + relativeTime : { + future : '%s内', + past : '%s前', + s : '几秒', + m : '1分钟', + mm : '%d分钟', + h : '1小时', + hh : '%d小时', + d : '1天', + dd : '%d天', + M : '1个月', + MM : '%d个月', + y : '1年', + yy : '%d年' + }, + week : { + // GB/T 7408-1994《数据元和交换格式·信息交换·日期和时间表示法》与ISO 8601:1988等效 + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : traditional chinese (zh-tw) +// author : Ben : https://github.com/ben-lin + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('zh-tw', { + months : '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split('_'), + monthsShort : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'), + weekdays : '星期日_星期一_星期二_星期三_星期四_星期五_星期六'.split('_'), + weekdaysShort : '週日_週一_週二_週三_週四_週五_週六'.split('_'), + weekdaysMin : '日_一_二_三_四_五_六'.split('_'), + longDateFormat : { + LT : 'Ah點mm', + L : 'YYYY年MMMD日', + LL : 'YYYY年MMMD日', + LLL : 'YYYY年MMMD日LT', + LLLL : 'YYYY年MMMD日ddddLT', + l : 'YYYY年MMMD日', + ll : 'YYYY年MMMD日', + lll : 'YYYY年MMMD日LT', + llll : 'YYYY年MMMD日ddddLT' + }, + meridiem : function (hour, minute, isLower) { + var hm = hour * 100 + minute; + if (hm < 900) { + return '早上'; + } else if (hm < 1130) { + return '上午'; + } else if (hm < 1230) { + return '中午'; + } else if (hm < 1800) { + return '下午'; + } else { + return '晚上'; + } + }, + calendar : { + sameDay : '[今天]LT', + nextDay : '[明天]LT', + nextWeek : '[下]ddddLT', + lastDay : '[昨天]LT', + lastWeek : '[上]ddddLT', + sameElse : 'L' + }, + ordinal : function (number, period) { + switch (period) { + case 'd' : + case 'D' : + case 'DDD' : + return number + '日'; + case 'M' : + return number + '月'; + case 'w' : + case 'W' : + return number + '週'; + default : + return number; + } + }, + relativeTime : { + future : '%s內', + past : '%s前', + s : '幾秒', + m : '一分鐘', + mm : '%d分鐘', + h : '一小時', + hh : '%d小時', + d : '一天', + dd : '%d天', + M : '一個月', + MM : '%d個月', + y : '一年', + yy : '%d年' + } + }); +})); + + moment.locale('en'); + + + /************************************ + Exposing Moment + ************************************/ + + function makeGlobal(shouldDeprecate) { + /*global ender:false */ + if (typeof ender !== 'undefined') { + return; + } + oldGlobalMoment = globalScope.moment; + if (shouldDeprecate) { + globalScope.moment = deprecate( + 'Accessing Moment through the global scope is ' + + 'deprecated, and will be removed in an upcoming ' + + 'release.', + moment); + } else { + globalScope.moment = moment; + } + } + + // CommonJS module is defined + if (hasModule) { + module.exports = moment; + } else if (typeof define === 'function' && define.amd) { + define('moment', function (require, exports, module) { + if (module.config && module.config() && module.config().noGlobal === true) { + // release the global variable + globalScope.moment = oldGlobalMoment; + } + + return moment; + }); + makeGlobal(true); + } else { + makeGlobal(); + } +}).call(this); diff --git a/lib/base.php b/lib/base.php index 499ef29f304..1c69d6f5671 100644 --- a/lib/base.php +++ b/lib/base.php @@ -344,6 +344,7 @@ class OC { OC_Util::addScript("oc-requesttoken"); OC_Util::addScript("apps"); OC_Util::addScript("snap"); + OC_Util::addScript("moment"); // avatars if (\OC_Config::getValue('enable_avatars', true) === true) { -- GitLab From 6cca20fb36abda47f6ae6d0f79a35846b866efeb Mon Sep 17 00:00:00 2001 From: Dan Callahan Date: Tue, 26 Aug 2014 11:14:30 -0500 Subject: [PATCH 13/56] Set email input field to type=email for better UX --- settings/templates/personal.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/templates/personal.php b/settings/templates/personal.php index ecdd6dad24a..661c242ea6b 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -86,7 +86,7 @@ if($_['passwordChangeSupported']) { ?>

    t('Email'));?>

    -
    -- GitLab From 7acdd018a1555c9bc5dcc1702074a10f862bb170 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Tue, 26 Aug 2014 23:58:13 +0200 Subject: [PATCH 14/56] Add support for getting the real client IP behind proxies Fixes https://github.com/owncloud/core/issues/10624 Fix copy paste fail Add unittest for comma separated headers Revert 3rdparty --- config/config.sample.php | 6 ++++++ lib/private/allconfig.php | 2 +- lib/private/request.php | 28 ++++++++++++++++++++++++++++ lib/public/config.php | 2 +- lib/public/iconfig.php | 2 +- tests/lib/request.php | 38 +++++++++++++++++++++++++++++++++++--- 6 files changed, 72 insertions(+), 6 deletions(-) diff --git a/config/config.sample.php b/config/config.sample.php index 96565556910..d232e18ab08 100755 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -62,6 +62,12 @@ $CONFIG = array( /* List of trusted domains, to prevent host header poisoning ownCloud is only using these Host headers */ 'trusted_domains' => array('demo.owncloud.org', 'otherdomain.owncloud.org:8080'), +/* List of trusted proxy servers */ +'trusted_proxies' => array('203.0.113.45', '198.51.100.128'), + +/* Headers that should be trusted as client IP address in combination with `trusted_proxies` */ +'forwarded_for_headers' => array('HTTP_X_FORWARDED', 'HTTP_FORWARDED_FOR'), + /* Theme to use for ownCloud */ "theme" => "", diff --git a/lib/private/allconfig.php b/lib/private/allconfig.php index eb114546010..ef8673af231 100644 --- a/lib/private/allconfig.php +++ b/lib/private/allconfig.php @@ -28,7 +28,7 @@ class AllConfig implements \OCP\IConfig { * * @param string $key the key of the value, under which it was saved * @param mixed $default the default value to be returned if the value isn't set - * @return string the saved value + * @return mixed the value or $default */ public function getSystemValue($key, $default = '') { return \OCP\Config::getSystemValue($key, $default); diff --git a/lib/private/request.php b/lib/private/request.php index 5fd5b3a7197..b063c1f5967 100755 --- a/lib/private/request.php +++ b/lib/private/request.php @@ -15,6 +15,34 @@ class OC_Request { const REGEX_LOCALHOST = '/^(127\.0\.0\.1|localhost)(:[0-9]+|)$/'; + /** + * Returns the remote address, if the connection came from a trusted proxy and `forwarded_for_headers` has been configured + * then the IP address specified in this header will be returned instead. + * Do always use this instead of $_SERVER['REMOTE_ADDR'] + * @return string IP address + */ + public static function getRemoteAddress() { + $remoteAddress = $_SERVER['REMOTE_ADDR']; + $trustedProxies = \OC::$server->getConfig()->getSystemValue('trusted_proxies', array()); + + if(is_array($trustedProxies) && in_array($remoteAddress, $trustedProxies)) { + $forwardedForHeaders = \OC::$server->getConfig()->getSystemValue('forwarded_for_headers', array()); + + foreach($forwardedForHeaders as $header) { + if (array_key_exists($header, $_SERVER) === true) { + foreach (explode(',', $_SERVER[$header]) as $IP) { + $IP = trim($IP); + if (filter_var($IP, FILTER_VALIDATE_IP) !== false) { + return $IP; + } + } + } + } + } + + return $remoteAddress; + } + /** * Check overwrite condition * @param string $type diff --git a/lib/public/config.php b/lib/public/config.php index ea3e0c1372a..65dde39cdce 100644 --- a/lib/public/config.php +++ b/lib/public/config.php @@ -43,7 +43,7 @@ class Config { * Gets a value from config.php * @param string $key key * @param mixed $default = null default value - * @return string the value or $default + * @return mixed the value or $default * * This function gets the value from config.php. If it does not exist, * $default will be returned. diff --git a/lib/public/iconfig.php b/lib/public/iconfig.php index d4a8cdc7381..4865f8bc85b 100644 --- a/lib/public/iconfig.php +++ b/lib/public/iconfig.php @@ -47,7 +47,7 @@ interface IConfig { * * @param string $key the key of the value, under which it was saved * @param string $default the default value to be returned if the value isn't set - * @return string the saved value + * @return mixed the value or $default */ public function getSystemValue($key, $default = ''); diff --git a/tests/lib/request.php b/tests/lib/request.php index bff84e1b03f..b89bf92ece7 100644 --- a/tests/lib/request.php +++ b/tests/lib/request.php @@ -9,21 +9,53 @@ class Test_Request extends PHPUnit_Framework_TestCase { public function setUp() { - OC_Config::setValue('overwritewebroot', '/domain.tld/ownCloud'); + OC::$server->getConfig()->setSystemValue('overwritewebroot', '/domain.tld/ownCloud'); + + OC::$server->getConfig()->setSystemValue('trusted_proxies', array()); + OC::$server->getConfig()->setSystemValue('forwarded_for_headers', array()); } public function tearDown() { - OC_Config::setValue('overwritewebroot', ''); + OC::$server->getConfig()->setSystemValue('overwritewebroot', ''); + OC::$server->getConfig()->setSystemValue('trusted_proxies', array()); + OC::$server->getConfig()->setSystemValue('forwarded_for_headers', array()); } public function testScriptNameOverWrite() { $_SERVER['REMOTE_ADDR'] = '10.0.0.1'; - $_SERVER["SCRIPT_FILENAME"] = __FILE__; + $_SERVER['SCRIPT_FILENAME'] = __FILE__; $scriptName = OC_Request::scriptName(); $this->assertEquals('/domain.tld/ownCloud/tests/lib/request.php', $scriptName); } + public function testGetRemoteAddress() { + $_SERVER['REMOTE_ADDR'] = '10.0.0.2'; + $_SERVER['HTTP_X_FORWARDED'] = '10.4.0.5, 10.4.0.4'; + $_SERVER['HTTP_X_FORWARDED_FOR'] = '192.168.0.233'; + + // Without having specified a trusted remote address + $this->assertEquals('10.0.0.2', OC_Request::getRemoteAddress()); + + // With specifying a trusted remote address but no trusted header + OC::$server->getConfig()->setSystemValue('trusted_proxies', array('10.0.0.2')); + $this->assertEquals('10.0.0.2', OC_Request::getRemoteAddress()); + + // With specifying a trusted remote address and trusted headers + OC::$server->getConfig()->setSystemValue('trusted_proxies', array('10.0.0.2')); + OC::$server->getConfig()->setSystemValue('forwarded_for_headers', array('HTTP_X_FORWARDED')); + $this->assertEquals('10.4.0.5', OC_Request::getRemoteAddress()); + OC::$server->getConfig()->setSystemValue('forwarded_for_headers', array('HTTP_CLIENT_IP', 'HTTP_X_FORWARDED_FOR', 'HTTP_X_FORWARDED')); + $this->assertEquals('192.168.0.233', OC_Request::getRemoteAddress()); + + // With specifying multiple trusted remote addresses and trusted headers + OC::$server->getConfig()->setSystemValue('trusted_proxies', array('10.3.4.2', '10.0.0.2', '127.0.3.3')); + OC::$server->getConfig()->setSystemValue('forwarded_for_headers', array('HTTP_X_FORWARDED')); + $this->assertEquals('10.4.0.5', OC_Request::getRemoteAddress()); + OC::$server->getConfig()->setSystemValue('forwarded_for_headers', array('HTTP_CLIENT_IP', 'HTTP_X_FORWARDED_FOR', 'HTTP_X_FORWARDED')); + $this->assertEquals('192.168.0.233', OC_Request::getRemoteAddress()); + } + /** * @dataProvider rawPathInfoProvider * @param $expected -- GitLab From 2740908a5b168563b60ab9cf40ae274c2ce1df25 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 27 Aug 2014 01:54:40 -0400 Subject: [PATCH 15/56] [tx-robot] updated from transifex --- apps/files_sharing/l10n/ast.php | 1 + apps/user_ldap/l10n/az.php | 1 + apps/user_ldap/l10n/hu_HU.php | 2 +- core/l10n/az.php | 1 + core/l10n/en_GB.php | 2 + l10n/ast/files_sharing.po | 15 ++--- l10n/az/core.po | 6 +- l10n/az/lib.po | 10 +-- l10n/az/user_ldap.po | 6 +- l10n/en_GB/core.po | 10 +-- l10n/en_GB/settings.po | 10 +-- l10n/hu_HU/settings.po | 98 ++++++++++++++--------------- l10n/hu_HU/user_ldap.po | 6 +- l10n/sl/settings.po | 6 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 6 +- l10n/templates/private.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- lib/l10n/az.php | 1 + settings/l10n/en_GB.php | 2 + settings/l10n/hu_HU.php | 64 ++++++++++++++----- settings/l10n/sl.php | 1 + 30 files changed, 155 insertions(+), 115 deletions(-) diff --git a/apps/files_sharing/l10n/ast.php b/apps/files_sharing/l10n/ast.php index 879f231bf92..2a5004811b8 100644 --- a/apps/files_sharing/l10n/ast.php +++ b/apps/files_sharing/l10n/ast.php @@ -1,6 +1,7 @@ "La compartición sirvidor a sirvidor nun ta habilitada nesti sirvidor", +"Invalid or untrusted SSL certificate" => "Certificáu SSL inválidu o ensín validar", "Couldn't add remote share" => "Nun pudo amestase una compartición remota", "Shared with you" => "Compartíos contigo", "Shared with others" => "Compartíos con otros", diff --git a/apps/user_ldap/l10n/az.php b/apps/user_ldap/l10n/az.php index 5e66b2e5885..6d3e01b8a8e 100644 --- a/apps/user_ldap/l10n/az.php +++ b/apps/user_ldap/l10n/az.php @@ -14,6 +14,7 @@ $TRANSLATIONS = array( "_%s group found_::_%s groups found_" => array("",""), "_%s user found_::_%s users found_" => array("",""), "Save" => "Saxlamaq", +"Help" => "Kömək", "Host" => "Şəbəkədə ünvan", "Password" => "Şifrə" ); diff --git a/apps/user_ldap/l10n/hu_HU.php b/apps/user_ldap/l10n/hu_HU.php index 240051c7dc0..af7100da1a9 100644 --- a/apps/user_ldap/l10n/hu_HU.php +++ b/apps/user_ldap/l10n/hu_HU.php @@ -71,7 +71,7 @@ $TRANSLATIONS = array( "users found" => "felhasználó van", "Back" => "Vissza", "Continue" => "Folytatás", -"Expert" => "Gyakorlott", +"Expert" => "Profi", "Advanced" => "Haladó", "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "Figyelem: a user_ldap és user_webdavauth alkalmazások nem kompatibilisek. Együttes használatuk váratlan eredményekhez vezethet. Kérje meg a rendszergazdát, hogy a kettő közül kapcsolja ki az egyiket.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Figyelmeztetés: Az LDAP PHP modul nincs telepítve, ezért ez az alrendszer nem fog működni. Kérje meg a rendszergazdát, hogy telepítse!", diff --git a/core/l10n/az.php b/core/l10n/az.php index 06c5bdad293..8f01ea97265 100644 --- a/core/l10n/az.php +++ b/core/l10n/az.php @@ -33,6 +33,7 @@ $TRANSLATIONS = array( "Reset" => "Sıfırla", "Users" => "İstifadəçilər", "Admin" => "İnzibatçı", +"Help" => "Kömək", "Password" => "Şifrə", "You are accessing the server from an untrusted domain." => "Siz serverə inamsız domain-dən girməyə çalışırsız.", "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domain\" setting in config/config.php. An example configuration is provided in config/config.sample.php." => "Xahiş olunur inzibatçı ilə əlaqə saxlayasınız. Eger siz bu xidmətin inzibatçısısınizsa, \"trusted_domain\" configini config/config.php faylinda düzgün qeyd edin. Config nüsxəsi config/config.sample.php faylında qeyd edilmişdir." diff --git a/core/l10n/en_GB.php b/core/l10n/en_GB.php index e9164deca50..6e57dd4436c 100644 --- a/core/l10n/en_GB.php +++ b/core/l10n/en_GB.php @@ -191,6 +191,8 @@ $TRANSLATIONS = array( "Thank you for your patience." => "Thank you for your patience.", "You are accessing the server from an untrusted domain." => "You are accessing the server from an untrusted domain.", "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domain\" setting in config/config.php. An example configuration is provided in config/config.sample.php." => "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domain\" setting in config/config.php. An example configuration is provided in config/config.sample.php.", +"Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." => "Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain.", +"Add \"%s\" as trusted domain" => "Add \"%s\" as a trusted domain", "%s will be updated to version %s." => "%s will be updated to version %s.", "The following apps will be disabled:" => "The following apps will be disabled:", "The theme %s has been disabled." => "The theme %s has been disabled.", diff --git a/l10n/ast/files_sharing.po b/l10n/ast/files_sharing.po index 6e6e8ff93b9..8f83df371ca 100644 --- a/l10n/ast/files_sharing.po +++ b/l10n/ast/files_sharing.po @@ -6,13 +6,14 @@ # David López Castañón , 2014 # Iñigo Varela , 2014 # Ḷḷumex03 , 2014 +# Ḷḷumex03 , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-27 01:54-0400\n" +"PO-Revision-Date: 2014-08-26 22:21+0000\n" +"Last-Translator: Ḷḷumex03 \n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,21 +27,21 @@ msgstr "La compartición sirvidor a sirvidor nun ta habilitada nesti sirvidor" #: ajax/external.php:38 msgid "Invalid or untrusted SSL certificate" -msgstr "" +msgstr "Certificáu SSL inválidu o ensín validar" #: ajax/external.php:52 msgid "Couldn't add remote share" msgstr "Nun pudo amestase una compartición remota" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Compartíos contigo" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Compartíos con otros" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Compartíos per enllaz" diff --git a/l10n/az/core.po b/l10n/az/core.po index 77c19c077f6..6b52f2481b8 100644 --- a/l10n/az/core.po +++ b/l10n/az/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-27 01:54-0400\n" +"PO-Revision-Date: 2014-08-26 15:41+0000\n" "Last-Translator: unixidzero \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -621,7 +621,7 @@ msgstr "İnzibatçı" #: strings.php:9 msgid "Help" -msgstr "" +msgstr "Kömək" #: tags/controller.php:22 msgid "Error loading tags" diff --git a/l10n/az/lib.po b/l10n/az/lib.po index 84522fa5e06..be0d55a007f 100644 --- a/l10n/az/lib.po +++ b/l10n/az/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-27 01:54-0400\n" +"PO-Revision-Date: 2014-08-26 15:41+0000\n" "Last-Translator: unixidzero \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -53,7 +53,7 @@ msgstr "" #: private/app.php:374 msgid "Help" -msgstr "" +msgstr "Kömək" #: private/app.php:387 msgid "Personal" diff --git a/l10n/az/user_ldap.po b/l10n/az/user_ldap.po index b4ab2d3cf42..0bc397162f6 100644 --- a/l10n/az/user_ldap.po +++ b/l10n/az/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-24 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 10:01+0000\n" +"POT-Creation-Date: 2014-08-27 01:54-0400\n" +"PO-Revision-Date: 2014-08-26 15:41+0000\n" "Last-Translator: unixidzero \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -191,7 +191,7 @@ msgstr "" #: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 msgid "Help" -msgstr "" +msgstr "Kömək" #: templates/part.wizard-groupfilter.php:4 #, php-format diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po index dab8210ad66..a4dc5cb3f0f 100644 --- a/l10n/en_GB/core.po +++ b/l10n/en_GB/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-27 01:54-0400\n" +"PO-Revision-Date: 2014-08-26 14:11+0000\n" +"Last-Translator: Darren Richardson \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -858,12 +858,12 @@ msgstr "Please contact your administrator. If you are an administrator of this i msgid "" "Depending on your configuration, as an administrator you might also be able " "to use the button below to trust this domain." -msgstr "" +msgstr "Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." #: templates/untrustedDomain.php:14 #, php-format msgid "Add \"%s\" as trusted domain" -msgstr "" +msgstr "Add \"%s\" as a trusted domain" #: templates/update.admin.php:3 #, php-format diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index 8fa360c5bf0..403f9f4b40b 100644 --- a/l10n/en_GB/settings.po +++ b/l10n/en_GB/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-27 01:54-0400\n" +"PO-Revision-Date: 2014-08-26 14:11+0000\n" +"Last-Translator: Darren Richardson \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -196,11 +196,11 @@ msgstr "Unable to change password" #: js/admin.js:45 msgid "Are you really sure you want add \"{domain}\" as trusted domain?" -msgstr "" +msgstr "Are you really sure you want add \"{domain}\" as a trusted domain?" #: js/admin.js:46 msgid "Add trusted domain" -msgstr "" +msgstr "Add trusted domain" #: js/admin.js:146 msgid "Sending..." diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 9ac5a21a446..57e1a6a178e 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-27 01:54-0400\n" +"PO-Revision-Date: 2014-08-26 20:51+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -24,7 +24,7 @@ msgstr "" #: admin/controller.php:66 #, php-format msgid "Invalid value supplied for %s" -msgstr "" +msgstr "Érvénytelen adatot adott meg erre: %s" #: admin/controller.php:73 msgid "Saved" @@ -32,16 +32,16 @@ msgstr "Elmentve" #: admin/controller.php:90 msgid "test email settings" -msgstr "Teszt email beállítások" +msgstr "e-mail beállítások ellenőrzése" #: admin/controller.php:91 msgid "If you received this email, the settings seem to be correct." -msgstr "Amennyiben megérkezett ez az email akkor a beállítások megfelelők" +msgstr "Amennyiben megérkezett ez az e-mail akkor a beállítások megfelelők." #: admin/controller.php:94 msgid "" "A problem occurred while sending the e-mail. Please revisit your settings." -msgstr "" +msgstr "Hiba történt az e-mail küldésekor. Kérjük ellenőrizze a beállításokat!" #: admin/controller.php:99 msgid "Email sent" @@ -49,7 +49,7 @@ msgstr "Az e-mailt elküldtük" #: admin/controller.php:101 msgid "You need to set your user email before being able to send test emails." -msgstr "" +msgstr "Előbb meg kell adnia az e-mail címét, mielőtt tesztelni tudná az e-mail küldést." #: admin/controller.php:116 templates/admin.php:368 msgid "Send mode" @@ -90,27 +90,27 @@ msgstr "A csoport nem hozható létre" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "A fájlok titkosítását sikeresen megszüntettük." #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Fájljainak titkosítását nem sikerült megszüntetni, kérjük forduljon a rendszergazdához!" #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Fájljainak titkosítását nem sikerült megszüntetni, ellenőrizze a jelszavát, és próbálja újra!" #: ajax/deletekeys.php:14 msgid "Encryption keys deleted permanently" -msgstr "" +msgstr "A titkosítási kulcsait véglegesen töröltük." #: ajax/deletekeys.php:16 msgid "" "Couldn't permanently delete your encryption keys, please check your " "owncloud.log or ask your administrator" -msgstr "" +msgstr "A titkosítási kulcsait nem sikerült véglegesen törölni, kérjük ellenőrizze az owncloud.log naplófájlt, vagy forduljon a rendszergazdához!" #: ajax/installapp.php:18 ajax/uninstallapp.php:18 msgid "Couldn't remove app." @@ -134,13 +134,13 @@ msgstr "A felhasználó nem törölhető" #: ajax/restorekeys.php:14 msgid "Backups restored successfully" -msgstr "" +msgstr "A kulcsokat sikereresen visszaállítottuk a mentésekből." #: ajax/restorekeys.php:23 msgid "" "Couldn't restore your encryption keys, please check your owncloud.log or ask" " your administrator" -msgstr "" +msgstr "A titkosítási kulcsok visszaállítása nem sikerült. Kérjük ellenőrizze az owncloud.log naplófájlt vagy forduljon a rendszergazdához!" #: ajax/setlanguage.php:15 msgid "Language changed" @@ -191,7 +191,7 @@ msgstr "Hibás admin helyreállítási jelszó. Ellenőrizze a jelszót és pró msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "A háttér-alrendszer nem támogatja a jelszómódosítást, de felhasználó titkosítási kulcsa sikeresen frissítve lett." +msgstr "A háttér-alrendszer nem támogatja a jelszómódosítást, de felhasználó titkosítási kulcsát sikeresen frissítettük." #: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" @@ -199,11 +199,11 @@ msgstr "Nem sikerült megváltoztatni a jelszót" #: js/admin.js:45 msgid "Are you really sure you want add \"{domain}\" as trusted domain?" -msgstr "" +msgstr "Biztos abban, hogy hozzá akarja adni \"{domain}\"-t a megbízható tartományokhoz?" #: js/admin.js:46 msgid "Add trusted domain" -msgstr "" +msgstr "Megbízható tartomány hozzáadása" #: js/admin.js:146 msgid "Sending..." @@ -215,7 +215,7 @@ msgstr "Felhasználói leírás" #: js/apps.js:54 msgid "Admin Documentation" -msgstr "Adminisztrátori Dokumentáció" +msgstr "Adminisztrátori leírás" #: js/apps.js:82 msgid "Update to {appversion}" @@ -223,7 +223,7 @@ msgstr "Frissítés erre a verzióra: {appversion}" #: js/apps.js:90 msgid "Uninstall App" -msgstr "" +msgstr "Az alkalmazás eltávolítása" #: js/apps.js:96 js/apps.js:158 js/apps.js:191 msgid "Disable" @@ -231,7 +231,7 @@ msgstr "Letiltás" #: js/apps.js:96 js/apps.js:167 js/apps.js:184 js/apps.js:215 msgid "Enable" -msgstr "engedélyezve" +msgstr "Engedélyezés" #: js/apps.js:147 msgid "Please wait...." @@ -239,11 +239,11 @@ msgstr "Kérem várjon..." #: js/apps.js:155 js/apps.js:156 js/apps.js:182 msgid "Error while disabling app" -msgstr "Hiba az alkalmazás kikapcsolása közben" +msgstr "Hiba az alkalmazás letiltása közben" #: js/apps.js:181 js/apps.js:210 js/apps.js:211 msgid "Error while enabling app" -msgstr "Hiba az alalmazás engedélyezése közben" +msgstr "Hiba az alkalmazás engedélyezése közben" #: js/apps.js:220 msgid "Updating...." @@ -251,7 +251,7 @@ msgstr "Frissítés folyamatban..." #: js/apps.js:223 msgid "Error while updating app" -msgstr "Hiba történt a programfrissítés közben" +msgstr "Hiba történt az alkalmazás frissítése közben" #: js/apps.js:223 js/apps.js:236 msgid "Error" @@ -267,15 +267,15 @@ msgstr "Frissítve" #: js/apps.js:233 msgid "Uninstalling ...." -msgstr "" +msgstr "Eltávolítás ..." #: js/apps.js:236 msgid "Error while uninstalling app" -msgstr "" +msgstr "Hiba történt az alkalmazás eltávolítása közben" #: js/apps.js:237 templates/apps.php:56 msgid "Uninstall" -msgstr "" +msgstr "Eltávolítás" #: js/personal.js:256 msgid "Select a profile picture" @@ -303,7 +303,7 @@ msgstr "Erős jelszó" #: js/personal.js:310 msgid "Decrypting files... Please wait, this can take some time." -msgstr "A fájlok titkosítástól történő mentesítése folyamatban. van... Kérem várjon, ez hosszabb ideig is eltarthat ..." +msgstr "A fájlok titkosításának megszüntetése folyamatban. van... Kérem várjon, ez hosszabb ideig is eltarthat ..." #: js/personal.js:324 msgid "Delete encryption keys permanently." @@ -315,19 +315,19 @@ msgstr "A titkosítási kulcsok visszaállítása." #: js/users/deleteHandler.js:166 msgid "Unable to delete {objName}" -msgstr "" +msgstr "Ezt nem sikerült törölni: {objName}" #: js/users/groups.js:94 js/users/groups.js:202 msgid "Error creating group" -msgstr "" +msgstr "Hiba történt a csoport létrehozása közben" #: js/users/groups.js:201 msgid "A valid group name must be provided" -msgstr "" +msgstr "Érvényes csoportnevet kell megadni" #: js/users/groups.js:229 msgid "deleted {groupName}" -msgstr "" +msgstr "törölve: {groupName}" #: js/users/groups.js:230 js/users/users.js:300 msgid "undo" @@ -355,7 +355,7 @@ msgstr "soha" #: js/users/users.js:299 msgid "deleted {userName}" -msgstr "" +msgstr "törölve: {userName}" #: js/users/users.js:435 msgid "add group" @@ -375,7 +375,7 @@ msgstr "Érvényes jelszót kell megadnia" #: js/users/users.js:691 msgid "Warning: Home directory for user \"{user}\" already exists" -msgstr "Figyelmeztetés: A felhasználó \"{user}\" kezdő könyvtára már létezett" +msgstr "Figyelmeztetés: A felhasználó \"{user}\" kezdő könyvtára már létezik" #: personal.php:50 personal.php:51 msgid "__language_name__" @@ -434,7 +434,7 @@ msgstr "Biztonsági figyelmeztetés" msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "Jelenlegi elérése a következőnek '%s' jelenleg HTTP-n keresztül történik. Nagyon ajánlott, hogy a kiszolgálot úgy állitsd be, hogy HTTPS-t tudjál használni." +msgstr "A %s szolgáltatás elérése jelenleg HTTP-n keresztül történik. Nagyon ajánlott, hogy a kiszolgálót úgy állítsa be, hogy az elérés HTTPS-en keresztül történjék." #: templates/admin.php:68 msgid "" @@ -464,24 +464,24 @@ msgstr "Kérjük tüzetesen tanulmányozza át a telepítési útmu msgid "" "PHP is apparently setup to strip inline doc blocks. This will make several " "core apps inaccessible." -msgstr "" +msgstr "Úgy tűnik, hogy a PHP úgy van beállítva, hogy eltávolítja programok belsejében elhelyezett szövegblokkokat. Emiatt a rendszer több alapvető fontosságú eleme működésképtelen lesz." #: templates/admin.php:98 msgid "" "This is probably caused by a cache/accelerator such as Zend OPcache or " "eAccelerator." -msgstr "" +msgstr "Ezt valószínűleg egy gyorsítótár ill. kódgyorsító, mint pl, a Zend, OPcache vagy eAccelererator okozza." #: templates/admin.php:109 msgid "Database Performance Info" -msgstr "" +msgstr "Információ az adatbázis teljesítményéről" #: templates/admin.php:112 msgid "" "SQLite is used as database. For larger installations we recommend to change " "this. To migrate to another database use the command line tool: 'occ db" ":convert-type'" -msgstr "" +msgstr "A kiválasztott adatbázis az SQLite. Nagyobb telepítések esetén ezt érdemes megváltoztatni. Másik adatbázisra való áttéréshez használja a következő parancssori eszközt: 'occ db:convert-type'" #: templates/admin.php:123 msgid "Module 'fileinfo' missing" @@ -491,7 +491,7 @@ msgstr "A 'fileinfo' modul hiányzik" msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a telepítése a MIME-típusok felismerésének eredményessé tételéhez." +msgstr "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a telepítése, mert ezzel lényegesen jobb a MIME-típusok felismerése." #: templates/admin.php:137 msgid "Your PHP version is outdated" @@ -502,18 +502,18 @@ msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "A PHP verzió túl régi. Nagyon ajánlott legalább az 5.3.8-as vagy újabb verzióra frissíteni, mert a régebbi verziónál léteznek ismert hibák. Ezért lehet a telepítésed elkézelhető, hogy nem müködik majd megfelelően." +msgstr "A PHP verzió túl régi. Nagyon ajánlott legalább az 5.3.8-as vagy újabb verzióra frissíteni, mert a régebbi verziónál léteznek ismert hibák. Ezért lehetséges, hogy ez a telepítés majd nem működik megfelelően." #: templates/admin.php:151 msgid "PHP charset is not set to UTF-8" -msgstr "" +msgstr "A PHP-karakterkészlet nem UTF-8-ra van állítva" #: templates/admin.php:154 msgid "" "PHP charset is not set to UTF-8. This can cause major issues with non-ASCII " "characters in file names. We highly recommend to change the value of " "'default_charset' php.ini to 'UTF-8'." -msgstr "" +msgstr "A PHP-karakterkészlet nem UTF-8-ra van állítva. Ez komoly problémákat okozhat, ha valaki olyan fájlnevet használ, amiben nem csupán ASCII karakterek fordulnak elő. Feltétlenül javasoljuk, hogy a php.ini-ben a 'default_charset' paramétert állítsa 'UTF-8'-ra!" #: templates/admin.php:165 msgid "Locale not working" @@ -521,20 +521,20 @@ msgstr "A nyelvi lokalizáció nem működik" #: templates/admin.php:170 msgid "System locale can not be set to a one which supports UTF-8." -msgstr "A rendszer lokálok nem lehetett olyat beállítani ami támogatja az UTF-8-at." +msgstr "A rendszer lokalizációs állományai között nem sikerült olyat beállítani, ami támogatja az UTF-8-at." #: templates/admin.php:174 msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "Ez arra utal, hogy probléma lehet néhány karakterrel a file neveiben." +msgstr "Ez azt jelenti, hogy probléma lehet bizonyos karakterekkel a fájlnevekben." #: templates/admin.php:178 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." -msgstr "Erősen ajánlott telepíteni a szükséges csomagokat a rendszeredbe amely támogat egyet a következő helyi beállítások közül: %s" +msgstr "Feltétlenül javasoljuk, hogy telepítse a szükséges csomagokat ahhoz, hogy a rendszere támogassa a következő lokalizációk valamelyikét: %s" #: templates/admin.php:190 msgid "Internet connection not working" @@ -547,11 +547,11 @@ msgid "" "installation of 3rd party apps don´t work. Accessing files from remote and " "sending of notification emails might also not work. We suggest to enable " "internet connection for this server if you want to have all features." -msgstr "A kiszolgálónak nincs müködő internet kapcsolata. Ez azt jelenti, hogy néhány képességét a kiszolgálónak mint például becsatolni egy külső tárolót, értesítések külső gyártók programjának frissítéséről nem fog müködni. A távolról való elérése a fileoknak és email értesítések küldése szintén nem fog müködni. Ha használni szeretnéd mindezeket a képességeit a szervernek, ahoz javasoljuk, hogy engedélyezzed az internet elérését a szervernek." +msgstr "A kiszolgálónak nem működik az internetkapcsolata. Ez azt jelenti, hogy bizonyos funkciók nem fognak működni, mint pl. külső tárolók becsatolása, automatikus frissítési értesítések vagy más fejlesztők /3rd party/ által írt alkalmazások telepítése. Az állományok távolról történő elérése valamint e-mail értesítések küldése szintén lehet, hogy nem fog működni. Javasoljuk, hogy engedélyezze a kiszolgáló internetelérését, ha az összes funkciót szeretné használni." #: templates/admin.php:203 msgid "URL generation in notification emails" -msgstr "" +msgstr "URL-képzés az értesítő e-mailekben" #: templates/admin.php:206 #, php-format @@ -560,7 +560,7 @@ msgid "" "system cron, there can be issues with the URL generation. To avoid these " "problems, please set the \"overwritewebroot\" option in your config.php file" " to the webroot path of your installation (Suggested: \"%s\")" -msgstr "" +msgstr "Ha a telepítése nem a webkiszolgáló gyökerében van, és a rendszer cron szolgáltatását használja, akkor problémák lehetnek az URL-ek képzésével. Ezek elkerülése érdekében állítsa be a config.php-ban az \"overwritewebroot\" paramétert a telepítés által használt webútvonalra. (Javasolt beállítás: \"%s\")" #: templates/admin.php:220 msgid "Cron" @@ -819,7 +819,7 @@ msgid "" "\t\tor\n" "\t\tspread the word!" -msgstr "" +msgstr "Ha támogatni kívánja a projektet\n csatlakozzon a fejlesztőkhöz\n vagy\n terjessze a program hírét!" #: templates/personal.php:31 msgid "Show First Run Wizard again" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 3552a13abc6..bfb8c323e7d 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-25 20:41+0000\n" +"POT-Creation-Date: 2014-08-27 01:54-0400\n" +"PO-Revision-Date: 2014-08-26 19:21+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -337,7 +337,7 @@ msgstr "Folytatás" #: templates/settings.php:7 msgid "Expert" -msgstr "Gyakorlott" +msgstr "Profi" #: templates/settings.php:8 msgid "Advanced" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 779c4f831ca..1033581a5d1 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-27 01:54-0400\n" +"PO-Revision-Date: 2014-08-26 16:41+0000\n" "Last-Translator: Matej Urbančič <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -624,7 +624,7 @@ msgstr "" #: templates/admin.php:294 msgid "days" -msgstr "" +msgstr "dni" #: templates/admin.php:297 msgid "Enforce expiration date" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index a4b8c0a7dd6..3fde0342b90 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" +"POT-Creation-Date: 2014-08-27 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index ecc1eadeea6..6779a0b77d1 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" +"POT-Creation-Date: 2014-08-27 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index ec1bc83f636..4863574d97a 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" +"POT-Creation-Date: 2014-08-27 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 0d6f7d7ef23..237419c6aee 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" +"POT-Creation-Date: 2014-08-27 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 10f7e0d8e97..e956b29e88e 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" +"POT-Creation-Date: 2014-08-27 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index a98233353d1..40ba0619902 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" +"POT-Creation-Date: 2014-08-27 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index f5710825aae..3e24e3250ff 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" +"POT-Creation-Date: 2014-08-27 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 65fd8be84e9..33adf729b50 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" +"POT-Creation-Date: 2014-08-27 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -40,11 +40,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can " "break your installation and is unsupported. Please read the documentation " diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 11ccd89830d..9805de7b9ca 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" +"POT-Creation-Date: 2014-08-27 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 479a9a43638..35e1db07dbf 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" +"POT-Creation-Date: 2014-08-27 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 2e330a691a9..216d41a670c 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" +"POT-Creation-Date: 2014-08-27 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 030c72788e7..38e8f477fac 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" +"POT-Creation-Date: 2014-08-27 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/lib/l10n/az.php b/lib/l10n/az.php index ae7bd786010..c979ddd2932 100644 --- a/lib/l10n/az.php +++ b/lib/l10n/az.php @@ -3,6 +3,7 @@ $TRANSLATIONS = array( "Cannot write into \"config\" directory!" => "\"configurasiya\" direktoriyasının daxilində yazmaq mümkün deyil", "This can usually be fixed by giving the webserver write access to the config directory" => "Adətən tez həll etmək üçün WEB serverdə yazma yetkisi verilir", "See %s" => "Bax %s", +"Help" => "Kömək", "Settings" => "Quraşdırmalar", "Users" => "İstifadəçilər", "Admin" => "İnzibatçı", diff --git a/settings/l10n/en_GB.php b/settings/l10n/en_GB.php index 96c2ce6128b..0fd5849bcd7 100644 --- a/settings/l10n/en_GB.php +++ b/settings/l10n/en_GB.php @@ -40,6 +40,8 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Incorrect admin recovery password. Please check the password and try again.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Back-end doesn't support password change, but the user's encryption key was successfully updated.", "Unable to change password" => "Unable to change password", +"Are you really sure you want add \"{domain}\" as trusted domain?" => "Are you really sure you want add \"{domain}\" as a trusted domain?", +"Add trusted domain" => "Add trusted domain", "Sending..." => "Sending...", "User Documentation" => "User Documentation", "Admin Documentation" => "Admin Documentation", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 56200e120e8..a3364a5d33d 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -1,9 +1,12 @@ "Érvénytelen adatot adott meg erre: %s", "Saved" => "Elmentve", -"test email settings" => "Teszt email beállítások", -"If you received this email, the settings seem to be correct." => "Amennyiben megérkezett ez az email akkor a beállítások megfelelők", +"test email settings" => "e-mail beállítások ellenőrzése", +"If you received this email, the settings seem to be correct." => "Amennyiben megérkezett ez az e-mail akkor a beállítások megfelelők.", +"A problem occurred while sending the e-mail. Please revisit your settings." => "Hiba történt az e-mail küldésekor. Kérjük ellenőrizze a beállításokat!", "Email sent" => "Az e-mailt elküldtük", +"You need to set your user email before being able to send test emails." => "Előbb meg kell adnia az e-mail címét, mielőtt tesztelni tudná az e-mail küldést.", "Send mode" => "Küldési mód", "Encryption" => "Titkosítás", "Authentication method" => "A felhasználóazonosítás módszere", @@ -13,11 +16,18 @@ $TRANSLATIONS = array( "Unable to change full name" => "Nem sikerült megváltoztatni a teljes nevét", "Group already exists" => "A csoport már létezik", "Unable to add group" => "A csoport nem hozható létre", +"Files decrypted successfully" => "A fájlok titkosítását sikeresen megszüntettük.", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Fájljainak titkosítását nem sikerült megszüntetni, kérjük forduljon a rendszergazdához!", +"Couldn't decrypt your files, check your password and try again" => "Fájljainak titkosítását nem sikerült megszüntetni, ellenőrizze a jelszavát, és próbálja újra!", +"Encryption keys deleted permanently" => "A titkosítási kulcsait véglegesen töröltük.", +"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "A titkosítási kulcsait nem sikerült véglegesen törölni, kérjük ellenőrizze az owncloud.log naplófájlt, vagy forduljon a rendszergazdához!", "Couldn't remove app." => "Az alkalmazást nem sikerült eltávolítani.", "Email saved" => "Elmentettük az e-mail címet", "Invalid email" => "Hibás e-mail", "Unable to delete group" => "A csoport nem törölhető", "Unable to delete user" => "A felhasználó nem törölhető", +"Backups restored successfully" => "A kulcsokat sikereresen visszaállítottuk a mentésekből.", +"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" => "A titkosítási kulcsok visszaállítása nem sikerült. Kérjük ellenőrizze az owncloud.log naplófájlt vagy forduljon a rendszergazdához!", "Language changed" => "A nyelv megváltozott", "Invalid request" => "Érvénytelen kérés", "Admins can't remove themself from the admin group" => "Adminisztrátorok nem távolíthatják el magukat az admin csoportból.", @@ -28,41 +38,52 @@ $TRANSLATIONS = array( "No user supplied" => "Nincs megadva felhasználó", "Please provide an admin recovery password, otherwise all user data will be lost" => "Adja meg az admin helyreállítási jelszót, máskülönben az összes felhasználói adat elveszik!", "Wrong admin recovery password. Please check the password and try again." => "Hibás admin helyreállítási jelszó. Ellenőrizze a jelszót és próbálja újra!", -"Back-end doesn't support password change, but the users encryption key was successfully updated." => "A háttér-alrendszer nem támogatja a jelszómódosítást, de felhasználó titkosítási kulcsa sikeresen frissítve lett.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "A háttér-alrendszer nem támogatja a jelszómódosítást, de felhasználó titkosítási kulcsát sikeresen frissítettük.", "Unable to change password" => "Nem sikerült megváltoztatni a jelszót", +"Are you really sure you want add \"{domain}\" as trusted domain?" => "Biztos abban, hogy hozzá akarja adni \"{domain}\"-t a megbízható tartományokhoz?", +"Add trusted domain" => "Megbízható tartomány hozzáadása", "Sending..." => "Küldés...", "User Documentation" => "Felhasználói leírás", -"Admin Documentation" => "Adminisztrátori Dokumentáció", +"Admin Documentation" => "Adminisztrátori leírás", "Update to {appversion}" => "Frissítés erre a verzióra: {appversion}", +"Uninstall App" => "Az alkalmazás eltávolítása", "Disable" => "Letiltás", -"Enable" => "engedélyezve", +"Enable" => "Engedélyezés", "Please wait...." => "Kérem várjon...", -"Error while disabling app" => "Hiba az alkalmazás kikapcsolása közben", -"Error while enabling app" => "Hiba az alalmazás engedélyezése közben", +"Error while disabling app" => "Hiba az alkalmazás letiltása közben", +"Error while enabling app" => "Hiba az alkalmazás engedélyezése közben", "Updating...." => "Frissítés folyamatban...", -"Error while updating app" => "Hiba történt a programfrissítés közben", +"Error while updating app" => "Hiba történt az alkalmazás frissítése közben", "Error" => "Hiba", "Update" => "Frissítés", "Updated" => "Frissítve", +"Uninstalling ...." => "Eltávolítás ...", +"Error while uninstalling app" => "Hiba történt az alkalmazás eltávolítása közben", +"Uninstall" => "Eltávolítás", "Select a profile picture" => "Válasszon profilképet!", "Very weak password" => "Nagyon gyenge jelszó", "Weak password" => "Gyenge jelszó", "So-so password" => "Nem túl jó jelszó", "Good password" => "Jó jelszó", "Strong password" => "Erős jelszó", -"Decrypting files... Please wait, this can take some time." => "A fájlok titkosítástól történő mentesítése folyamatban. van... Kérem várjon, ez hosszabb ideig is eltarthat ...", +"Decrypting files... Please wait, this can take some time." => "A fájlok titkosításának megszüntetése folyamatban. van... Kérem várjon, ez hosszabb ideig is eltarthat ...", "Delete encryption keys permanently." => "A tikosítási kulcsok végleges törlése.", "Restore encryption keys." => "A titkosítási kulcsok visszaállítása.", +"Unable to delete {objName}" => "Ezt nem sikerült törölni: {objName}", +"Error creating group" => "Hiba történt a csoport létrehozása közben", +"A valid group name must be provided" => "Érvényes csoportnevet kell megadni", +"deleted {groupName}" => "törölve: {groupName}", "undo" => "visszavonás", "Groups" => "Csoportok", "Group Admin" => "Csoportadminisztrátor", "Delete" => "Törlés", "never" => "soha", +"deleted {userName}" => "törölve: {userName}", "add group" => "csoport hozzáadása", "A valid username must be provided" => "Érvényes felhasználónevet kell megadnia", "Error creating user" => "A felhasználó nem hozható létre", "A valid password must be provided" => "Érvényes jelszót kell megadnia", -"Warning: Home directory for user \"{user}\" already exists" => "Figyelmeztetés: A felhasználó \"{user}\" kezdő könyvtára már létezett", +"Warning: Home directory for user \"{user}\" already exists" => "Figyelmeztetés: A felhasználó \"{user}\" kezdő könyvtára már létezik", "__language_name__" => "__language_name__", "Everything (fatal issues, errors, warnings, info, debug)" => "Minden (végzetes hibák, hibák, figyelmeztetések, információk, hibakeresési üzenetek)", "Info, warnings, errors and fatal issues" => "Információk, figyelmeztetések, hibák és végzetes hibák", @@ -76,21 +97,29 @@ $TRANSLATIONS = array( "SSL" => "SSL", "TLS" => "TLS", "Security Warning" => "Biztonsági figyelmeztetés", -"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Jelenlegi elérése a következőnek '%s' jelenleg HTTP-n keresztül történik. Nagyon ajánlott, hogy a kiszolgálot úgy állitsd be, hogy HTTPS-t tudjál használni.", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "A %s szolgáltatás elérése jelenleg HTTP-n keresztül történik. Nagyon ajánlott, hogy a kiszolgálót úgy állítsa be, hogy az elérés HTTPS-en keresztül történjék.", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Az adatkönytára és az itt levő fájlok valószínűleg elérhetők az internetről. Az ownCloud által beillesztett .htaccess fájl nem működik. Nagyon erősen ajánlott, hogy a webszervert úgy konfigurálja, hogy az adatkönyvtár ne legyen közvetlenül kívülről elérhető, vagy az adatkönyvtárt tegye a webszerver dokumentumfáján kívülre.", "Setup Warning" => "A beállítással kapcsolatos figyelmeztetés", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Az Ön webkiszolgálója nincs megfelelően beállítva az állományok szinkronizálásához, mert a WebDAV-elérés úgy tűnik, nem működik.", "Please double check the installation guides." => "Kérjük tüzetesen tanulmányozza át a telepítési útmutatót.", +"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." => "Úgy tűnik, hogy a PHP úgy van beállítva, hogy eltávolítja programok belsejében elhelyezett szövegblokkokat. Emiatt a rendszer több alapvető fontosságú eleme működésképtelen lesz.", +"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." => "Ezt valószínűleg egy gyorsítótár ill. kódgyorsító, mint pl, a Zend, OPcache vagy eAccelererator okozza.", +"Database Performance Info" => "Információ az adatbázis teljesítményéről", +"SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" => "A kiválasztott adatbázis az SQLite. Nagyobb telepítések esetén ezt érdemes megváltoztatni. Másik adatbázisra való áttéréshez használja a következő parancssori eszközt: 'occ db:convert-type'", "Module 'fileinfo' missing" => "A 'fileinfo' modul hiányzik", -"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a telepítése a MIME-típusok felismerésének eredményessé tételéhez.", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a telepítése, mert ezzel lényegesen jobb a MIME-típusok felismerése.", "Your PHP version is outdated" => "A PHP verzió túl régi", -"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "A PHP verzió túl régi. Nagyon ajánlott legalább az 5.3.8-as vagy újabb verzióra frissíteni, mert a régebbi verziónál léteznek ismert hibák. Ezért lehet a telepítésed elkézelhető, hogy nem müködik majd megfelelően.", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "A PHP verzió túl régi. Nagyon ajánlott legalább az 5.3.8-as vagy újabb verzióra frissíteni, mert a régebbi verziónál léteznek ismert hibák. Ezért lehetséges, hogy ez a telepítés majd nem működik megfelelően.", +"PHP charset is not set to UTF-8" => "A PHP-karakterkészlet nem UTF-8-ra van állítva", +"PHP charset is not set to UTF-8. This can cause major issues with non-ASCII characters in file names. We highly recommend to change the value of 'default_charset' php.ini to 'UTF-8'." => "A PHP-karakterkészlet nem UTF-8-ra van állítva. Ez komoly problémákat okozhat, ha valaki olyan fájlnevet használ, amiben nem csupán ASCII karakterek fordulnak elő. Feltétlenül javasoljuk, hogy a php.ini-ben a 'default_charset' paramétert állítsa 'UTF-8'-ra!", "Locale not working" => "A nyelvi lokalizáció nem működik", -"System locale can not be set to a one which supports UTF-8." => "A rendszer lokálok nem lehetett olyat beállítani ami támogatja az UTF-8-at.", -"This means that there might be problems with certain characters in file names." => "Ez arra utal, hogy probléma lehet néhány karakterrel a file neveiben.", -"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Erősen ajánlott telepíteni a szükséges csomagokat a rendszeredbe amely támogat egyet a következő helyi beállítások közül: %s", +"System locale can not be set to a one which supports UTF-8." => "A rendszer lokalizációs állományai között nem sikerült olyat beállítani, ami támogatja az UTF-8-at.", +"This means that there might be problems with certain characters in file names." => "Ez azt jelenti, hogy probléma lehet bizonyos karakterekkel a fájlnevekben.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Feltétlenül javasoljuk, hogy telepítse a szükséges csomagokat ahhoz, hogy a rendszere támogassa a következő lokalizációk valamelyikét: %s", "Internet connection not working" => "Az internet kapcsolat nem működik", -"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "A kiszolgálónak nincs müködő internet kapcsolata. Ez azt jelenti, hogy néhány képességét a kiszolgálónak mint például becsatolni egy külső tárolót, értesítések külső gyártók programjának frissítéséről nem fog müködni. A távolról való elérése a fileoknak és email értesítések küldése szintén nem fog müködni. Ha használni szeretnéd mindezeket a képességeit a szervernek, ahoz javasoljuk, hogy engedélyezzed az internet elérését a szervernek.", +"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "A kiszolgálónak nem működik az internetkapcsolata. Ez azt jelenti, hogy bizonyos funkciók nem fognak működni, mint pl. külső tárolók becsatolása, automatikus frissítési értesítések vagy más fejlesztők /3rd party/ által írt alkalmazások telepítése. Az állományok távolról történő elérése valamint e-mail értesítések küldése szintén lehet, hogy nem fog működni. Javasoljuk, hogy engedélyezze a kiszolgáló internetelérését, ha az összes funkciót szeretné használni.", +"URL generation in notification emails" => "URL-képzés az értesítő e-mailekben", +"If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" => "Ha a telepítése nem a webkiszolgáló gyökerében van, és a rendszer cron szolgáltatását használja, akkor problémák lehetnek az URL-ek képzésével. Ezek elkerülése érdekében állítsa be a config.php-ban az \"overwritewebroot\" paramétert a telepítés által használt webútvonalra. (Javasolt beállítás: \"%s\")", "Cron" => "Ütemezett feladatok", "Last cron was executed at %s." => "Az utolsó cron feladat ekkor futott le: %s.", "Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Az utolsó cron feladat ekkor futott le: %s. Ez több, mint 1 órája történt, valami nincs rendben.", @@ -149,6 +178,7 @@ $TRANSLATIONS = array( "Bugtracker" => "Hibabejelentések", "Commercial Support" => "Megvásárolható támogatás", "Get the apps to sync your files" => "Töltse le az állományok szinkronizációjához szükséges programokat!", +"If you want to support the project\n\t\tjoin development\n\t\tor\n\t\tspread the word!" => "Ha támogatni kívánja a projektet\n csatlakozzon a fejlesztőkhöz\n vagy\n terjessze a program hírét!", "Show First Run Wizard again" => "Nézzük meg újra az első bejelentkezéskori segítséget!", "You have used %s of the available %s" => "Az Ön tárterület-felhasználása jelenleg: %s. Maximálisan ennyi áll rendelkezésére: %s", "Password" => "Jelszó", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 1742deabc27..87713b76550 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -116,6 +116,7 @@ $TRANSLATIONS = array( "Enforce password protection" => "Vsili zaščito z geslom", "Allow public uploads" => "Dovoli javno pošiljanje datotek v oblak", "Set default expiration date" => "Nastavitev privzetega datuma poteka", +"days" => "dni", "Allow resharing" => "Dovoli nadaljnjo souporabo", "Allow users to send mail notification for shared files" => "Dovoli uporabnikom pošiljati obvestila o souporabi datotek po elektronski pošti.", "Security" => "Varnost", -- GitLab From 87167d314107c63b7d9129b40d333d5f8408c36e Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Wed, 27 Aug 2014 09:02:14 +0100 Subject: [PATCH 16/56] Prevent errors on broken SFTP config --- apps/files_external/lib/sftp.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/files_external/lib/sftp.php b/apps/files_external/lib/sftp.php index e0655cc8d3d..aec56d088d5 100644 --- a/apps/files_external/lib/sftp.php +++ b/apps/files_external/lib/sftp.php @@ -166,6 +166,9 @@ class SFTP extends \OC\Files\Storage\Common { public function opendir($path) { try { $list = $this->client->nlist($this->absPath($path)); + if ($list === false) { + return false; + } $id = md5('sftp:' . $path); $dirStream = array(); -- GitLab From 47a2e31c93b2c172bcc9ce84a3ebb9904b0fd612 Mon Sep 17 00:00:00 2001 From: Oliver Gasser Date: Wed, 27 Aug 2014 13:28:04 +0200 Subject: [PATCH 17/56] Make Entity properties ```protected``` as in docs Entity properties are marked as ```protected``` to correctly reflect the documentation. See also owncloud/documentation@644f2eedac8e912c3019366b29ecdfbd9a15c5d9 --- tests/lib/appframework/db/EntityTest.php | 10 +++++----- tests/lib/appframework/db/mappertest.php | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/lib/appframework/db/EntityTest.php b/tests/lib/appframework/db/EntityTest.php index 9de44b9b3ba..d98cb549422 100644 --- a/tests/lib/appframework/db/EntityTest.php +++ b/tests/lib/appframework/db/EntityTest.php @@ -37,10 +37,10 @@ namespace OCP\AppFramework\Db; * @method void setPreName(string $preName) */ class TestEntity extends Entity { - public $name; - public $email; - public $testId; - public $preName; + protected $name; + protected $email; + protected $testId; + protected $preName; public function __construct($name=null){ $this->addType('testId', 'integer'); @@ -220,4 +220,4 @@ class EntityTest extends \PHPUnit_Framework_TestCase { } -} \ No newline at end of file +} diff --git a/tests/lib/appframework/db/mappertest.php b/tests/lib/appframework/db/mappertest.php index 42aa1ade810..fd1acd0367e 100644 --- a/tests/lib/appframework/db/mappertest.php +++ b/tests/lib/appframework/db/mappertest.php @@ -36,8 +36,8 @@ use Test\AppFramework\Db\MapperTestUtility; * @method void setPreName(string $preName) */ class Example extends Entity { - public $preName; - public $email; + protected $preName; + protected $email; }; -- GitLab From 9ab62ad5b787d44238c842f633fc950918aaa796 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Wed, 27 Aug 2014 17:01:51 +0200 Subject: [PATCH 18/56] Escape error messages --- lib/private/template.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/private/template.php b/lib/private/template.php index eaa58b769d7..173345cc001 100644 --- a/lib/private/template.php +++ b/lib/private/template.php @@ -272,19 +272,19 @@ class OC_Template extends \OC\Template\Base { if (defined('DEBUG') and DEBUG) { $hint = $exception->getTraceAsString(); if (!empty($hint)) { - $hint = '
    '.$hint.'
    '; + $hint = '
    '.OC_Util::sanitizeHTML($hint).'
    '; } while (method_exists($exception, 'previous') && $exception = $exception->previous()) { $error_msg .= '
    Caused by:' . ' '; if ($exception->getCode()) { - $error_msg .= '['.$exception->getCode().'] '; + $error_msg .= '['.OC_Util::sanitizeHTML($exception->getCode()).'] '; } - $error_msg .= $exception->getMessage(); + $error_msg .= OC_Util::sanitizeHTML($exception->getMessage()); }; } else { $hint = ''; if ($exception instanceof \OC\HintException) { - $hint = $exception->getHint(); + $hint = OC_Util::sanitizeHTML($exception->getHint()); } } self::printErrorPage($error_msg, $hint); -- GitLab From 1b342a70d69d45a2dc656bb2ffa8a9b5484e4aef Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 28 Aug 2014 01:56:36 -0400 Subject: [PATCH 19/56] [tx-robot] updated from transifex --- apps/files/l10n/bn_BD.php | 1 + apps/files/l10n/he.php | 1 + apps/files/l10n/hu_HU.php | 12 +- apps/files/l10n/nn_NO.php | 1 + apps/files/l10n/pt_PT.php | 2 + apps/files/l10n/zh_TW.php | 1 + apps/files_encryption/l10n/bn_BD.php | 3 +- apps/files_encryption/l10n/da.php | 2 + apps/files_external/l10n/bn_BD.php | 2 +- apps/files_sharing/l10n/bn_BD.php | 5 +- apps/files_trashbin/l10n/bn_BD.php | 1 + apps/files_versions/l10n/bn_BD.php | 3 +- apps/user_ldap/l10n/bn_BD.php | 1 + apps/user_webdavauth/l10n/bn_BD.php | 1 + core/l10n/bn_BD.php | 5 +- core/l10n/da.php | 5 + core/l10n/he.php | 1 + core/l10n/nn_NO.php | 6 + core/l10n/pt_PT.php | 2 + core/l10n/zh_TW.php | 35 ++++++ l10n/af_ZA/core.po | 4 +- l10n/af_ZA/lib.po | 32 +++--- l10n/ar/core.po | 4 +- l10n/ar/files.po | 4 +- l10n/ar/files_external.po | 4 +- l10n/ar/files_trashbin.po | 4 +- l10n/ar/lib.po | 32 +++--- l10n/ar/settings.po | 4 +- l10n/ast/core.po | 4 +- l10n/ast/files.po | 4 +- l10n/ast/files_external.po | 4 +- l10n/ast/files_trashbin.po | 4 +- l10n/ast/lib.po | 32 +++--- l10n/ast/settings.po | 4 +- l10n/az/core.po | 4 +- l10n/az/files.po | 4 +- l10n/az/files_external.po | 4 +- l10n/az/files_trashbin.po | 4 +- l10n/az/lib.po | 28 ++--- l10n/az/settings.po | 4 +- l10n/be/core.po | 4 +- l10n/be/lib.po | 32 +++--- l10n/bg_BG/core.po | 4 +- l10n/bg_BG/files.po | 4 +- l10n/bg_BG/files_external.po | 4 +- l10n/bg_BG/files_trashbin.po | 4 +- l10n/bg_BG/lib.po | 32 +++--- l10n/bg_BG/settings.po | 4 +- l10n/bn_BD/core.po | 14 +-- l10n/bn_BD/files.po | 9 +- l10n/bn_BD/files_encryption.po | 15 +-- l10n/bn_BD/files_external.po | 9 +- l10n/bn_BD/files_sharing.po | 13 ++- l10n/bn_BD/files_trashbin.po | 9 +- l10n/bn_BD/files_versions.po | 20 ++-- l10n/bn_BD/lib.po | 32 +++--- l10n/bn_BD/settings.po | 4 +- l10n/bn_BD/user_ldap.po | 6 +- l10n/bn_BD/user_webdavauth.po | 9 +- l10n/bn_IN/core.po | 4 +- l10n/bn_IN/files.po | 4 +- l10n/bn_IN/files_external.po | 4 +- l10n/bn_IN/files_trashbin.po | 4 +- l10n/bn_IN/lib.po | 32 +++--- l10n/bn_IN/settings.po | 4 +- l10n/ca/core.po | 4 +- l10n/ca/files.po | 4 +- l10n/ca/files_external.po | 4 +- l10n/ca/files_trashbin.po | 4 +- l10n/ca/lib.po | 32 +++--- l10n/ca/settings.po | 4 +- l10n/cs_CZ/core.po | 4 +- l10n/cs_CZ/files.po | 4 +- l10n/cs_CZ/files_external.po | 4 +- l10n/cs_CZ/files_trashbin.po | 4 +- l10n/cs_CZ/lib.po | 32 +++--- l10n/cs_CZ/settings.po | 4 +- l10n/cy_GB/core.po | 4 +- l10n/cy_GB/files.po | 4 +- l10n/cy_GB/files_external.po | 4 +- l10n/cy_GB/files_trashbin.po | 4 +- l10n/cy_GB/lib.po | 32 +++--- l10n/cy_GB/settings.po | 4 +- l10n/da/core.po | 16 +-- l10n/da/files.po | 4 +- l10n/da/files_encryption.po | 16 +-- l10n/da/files_external.po | 4 +- l10n/da/files_trashbin.po | 4 +- l10n/da/lib.po | 46 ++++---- l10n/da/settings.po | 4 +- l10n/de/core.po | 4 +- l10n/de/files.po | 4 +- l10n/de/files_external.po | 4 +- l10n/de/files_trashbin.po | 4 +- l10n/de/lib.po | 32 +++--- l10n/de/settings.po | 4 +- l10n/de_AT/core.po | 4 +- l10n/de_AT/files.po | 4 +- l10n/de_AT/files_external.po | 4 +- l10n/de_AT/files_trashbin.po | 4 +- l10n/de_AT/lib.po | 32 +++--- l10n/de_AT/settings.po | 4 +- l10n/de_CH/core.po | 4 +- l10n/de_CH/files.po | 4 +- l10n/de_CH/files_external.po | 4 +- l10n/de_CH/files_trashbin.po | 4 +- l10n/de_CH/lib.po | 32 +++--- l10n/de_CH/settings.po | 4 +- l10n/de_DE/core.po | 4 +- l10n/de_DE/files.po | 4 +- l10n/de_DE/files_external.po | 4 +- l10n/de_DE/files_trashbin.po | 4 +- l10n/de_DE/lib.po | 32 +++--- l10n/de_DE/settings.po | 4 +- l10n/el/core.po | 4 +- l10n/el/files.po | 4 +- l10n/el/files_external.po | 4 +- l10n/el/files_trashbin.po | 4 +- l10n/el/lib.po | 32 +++--- l10n/el/settings.po | 4 +- l10n/en_GB/core.po | 4 +- l10n/en_GB/files.po | 4 +- l10n/en_GB/files_external.po | 4 +- l10n/en_GB/files_trashbin.po | 4 +- l10n/en_GB/lib.po | 32 +++--- l10n/en_GB/settings.po | 4 +- l10n/eo/core.po | 4 +- l10n/eo/files.po | 4 +- l10n/eo/files_external.po | 4 +- l10n/eo/files_trashbin.po | 4 +- l10n/eo/lib.po | 32 +++--- l10n/eo/settings.po | 4 +- l10n/es/core.po | 4 +- l10n/es/files.po | 4 +- l10n/es/files_external.po | 4 +- l10n/es/files_trashbin.po | 4 +- l10n/es/lib.po | 32 +++--- l10n/es/settings.po | 4 +- l10n/es_AR/core.po | 4 +- l10n/es_AR/files.po | 4 +- l10n/es_AR/files_external.po | 4 +- l10n/es_AR/files_trashbin.po | 4 +- l10n/es_AR/lib.po | 32 +++--- l10n/es_AR/settings.po | 4 +- l10n/es_CL/core.po | 4 +- l10n/es_CL/lib.po | 32 +++--- l10n/es_MX/core.po | 4 +- l10n/es_MX/files.po | 4 +- l10n/es_MX/files_external.po | 4 +- l10n/es_MX/files_trashbin.po | 4 +- l10n/es_MX/lib.po | 32 +++--- l10n/es_MX/settings.po | 4 +- l10n/et_EE/core.po | 4 +- l10n/et_EE/files.po | 4 +- l10n/et_EE/files_external.po | 4 +- l10n/et_EE/files_trashbin.po | 4 +- l10n/et_EE/lib.po | 32 +++--- l10n/et_EE/settings.po | 4 +- l10n/eu/core.po | 4 +- l10n/eu/files.po | 4 +- l10n/eu/files_external.po | 4 +- l10n/eu/files_trashbin.po | 4 +- l10n/eu/lib.po | 32 +++--- l10n/eu/settings.po | 4 +- l10n/eu_ES/core.po | 4 +- l10n/eu_ES/files.po | 4 +- l10n/eu_ES/files_external.po | 4 +- l10n/eu_ES/files_trashbin.po | 4 +- l10n/eu_ES/settings.po | 4 +- l10n/fa/core.po | 4 +- l10n/fa/files.po | 4 +- l10n/fa/files_external.po | 4 +- l10n/fa/files_trashbin.po | 4 +- l10n/fa/lib.po | 32 +++--- l10n/fa/settings.po | 4 +- l10n/fi_FI/core.po | 4 +- l10n/fi_FI/files.po | 4 +- l10n/fi_FI/files_external.po | 4 +- l10n/fi_FI/files_trashbin.po | 4 +- l10n/fi_FI/lib.po | 32 +++--- l10n/fi_FI/settings.po | 4 +- l10n/fr/core.po | 4 +- l10n/fr/files.po | 4 +- l10n/fr/files_external.po | 4 +- l10n/fr/files_trashbin.po | 4 +- l10n/fr/lib.po | 32 +++--- l10n/fr/settings.po | 4 +- l10n/gl/core.po | 4 +- l10n/gl/files.po | 4 +- l10n/gl/files_external.po | 4 +- l10n/gl/files_trashbin.po | 4 +- l10n/gl/lib.po | 32 +++--- l10n/gl/settings.po | 4 +- l10n/he/core.po | 6 +- l10n/he/files.po | 6 +- l10n/he/files_external.po | 4 +- l10n/he/files_trashbin.po | 4 +- l10n/he/lib.po | 32 +++--- l10n/he/settings.po | 4 +- l10n/hi/core.po | 4 +- l10n/hi/lib.po | 32 +++--- l10n/hi/settings.po | 4 +- l10n/hr/core.po | 4 +- l10n/hr/files.po | 4 +- l10n/hr/files_external.po | 4 +- l10n/hr/files_trashbin.po | 4 +- l10n/hr/lib.po | 32 +++--- l10n/hr/settings.po | 4 +- l10n/hu_HU/core.po | 4 +- l10n/hu_HU/files.po | 18 +-- l10n/hu_HU/files_external.po | 4 +- l10n/hu_HU/files_trashbin.po | 4 +- l10n/hu_HU/lib.po | 164 +++++++++++++-------------- l10n/hu_HU/settings.po | 4 +- l10n/hy/core.po | 4 +- l10n/hy/files.po | 4 +- l10n/hy/files_external.po | 4 +- l10n/hy/files_trashbin.po | 4 +- l10n/hy/settings.po | 4 +- l10n/ia/core.po | 4 +- l10n/ia/files.po | 4 +- l10n/ia/files_external.po | 4 +- l10n/ia/files_trashbin.po | 4 +- l10n/ia/lib.po | 32 +++--- l10n/ia/settings.po | 4 +- l10n/id/core.po | 4 +- l10n/id/files.po | 4 +- l10n/id/files_external.po | 4 +- l10n/id/files_trashbin.po | 4 +- l10n/id/lib.po | 32 +++--- l10n/id/settings.po | 4 +- l10n/is/core.po | 4 +- l10n/is/files.po | 4 +- l10n/is/files_external.po | 4 +- l10n/is/files_trashbin.po | 4 +- l10n/is/lib.po | 32 +++--- l10n/is/settings.po | 4 +- l10n/it/core.po | 4 +- l10n/it/files.po | 4 +- l10n/it/files_external.po | 4 +- l10n/it/files_trashbin.po | 4 +- l10n/it/lib.po | 32 +++--- l10n/it/settings.po | 4 +- l10n/ja/core.po | 4 +- l10n/ja/files.po | 4 +- l10n/ja/files_external.po | 4 +- l10n/ja/files_trashbin.po | 4 +- l10n/ja/lib.po | 32 +++--- l10n/ja/settings.po | 4 +- l10n/jv/files_external.po | 4 +- l10n/ka_GE/core.po | 4 +- l10n/ka_GE/files.po | 4 +- l10n/ka_GE/files_external.po | 4 +- l10n/ka_GE/files_trashbin.po | 4 +- l10n/ka_GE/lib.po | 32 +++--- l10n/ka_GE/settings.po | 4 +- l10n/km/core.po | 4 +- l10n/km/files.po | 4 +- l10n/km/files_external.po | 4 +- l10n/km/files_trashbin.po | 4 +- l10n/km/lib.po | 32 +++--- l10n/km/settings.po | 4 +- l10n/ko/core.po | 4 +- l10n/ko/files.po | 4 +- l10n/ko/files_external.po | 4 +- l10n/ko/files_trashbin.po | 4 +- l10n/ko/lib.po | 32 +++--- l10n/ko/settings.po | 4 +- l10n/ku_IQ/core.po | 4 +- l10n/ku_IQ/files_external.po | 4 +- l10n/ku_IQ/lib.po | 32 +++--- l10n/lb/core.po | 4 +- l10n/lb/files.po | 4 +- l10n/lb/files_external.po | 4 +- l10n/lb/files_trashbin.po | 4 +- l10n/lb/lib.po | 32 +++--- l10n/lb/settings.po | 4 +- l10n/lt_LT/core.po | 4 +- l10n/lt_LT/files.po | 4 +- l10n/lt_LT/files_external.po | 4 +- l10n/lt_LT/files_trashbin.po | 4 +- l10n/lt_LT/lib.po | 32 +++--- l10n/lt_LT/settings.po | 4 +- l10n/lv/core.po | 4 +- l10n/lv/files.po | 4 +- l10n/lv/files_external.po | 4 +- l10n/lv/files_trashbin.po | 4 +- l10n/lv/lib.po | 32 +++--- l10n/lv/settings.po | 4 +- l10n/mk/core.po | 4 +- l10n/mk/files.po | 4 +- l10n/mk/files_external.po | 4 +- l10n/mk/files_trashbin.po | 4 +- l10n/mk/lib.po | 32 +++--- l10n/mk/settings.po | 4 +- l10n/ms_MY/core.po | 4 +- l10n/ms_MY/files.po | 4 +- l10n/ms_MY/files_external.po | 4 +- l10n/ms_MY/files_trashbin.po | 4 +- l10n/ms_MY/lib.po | 32 +++--- l10n/ms_MY/settings.po | 4 +- l10n/my_MM/files_external.po | 4 +- l10n/nb_NO/core.po | 4 +- l10n/nb_NO/files.po | 4 +- l10n/nb_NO/files_external.po | 4 +- l10n/nb_NO/files_trashbin.po | 4 +- l10n/nb_NO/lib.po | 32 +++--- l10n/nb_NO/settings.po | 4 +- l10n/nl/core.po | 4 +- l10n/nl/files.po | 4 +- l10n/nl/files_external.po | 4 +- l10n/nl/files_trashbin.po | 4 +- l10n/nl/lib.po | 32 +++--- l10n/nl/settings.po | 4 +- l10n/nn_NO/core.po | 20 ++-- l10n/nn_NO/files.po | 6 +- l10n/nn_NO/files_external.po | 4 +- l10n/nn_NO/files_trashbin.po | 4 +- l10n/nn_NO/lib.po | 32 +++--- l10n/nn_NO/settings.po | 8 +- l10n/oc/core.po | 4 +- l10n/oc/files.po | 4 +- l10n/oc/files_external.po | 4 +- l10n/oc/files_trashbin.po | 4 +- l10n/oc/lib.po | 32 +++--- l10n/oc/settings.po | 4 +- l10n/pa/core.po | 4 +- l10n/pa/files.po | 4 +- l10n/pa/files_external.po | 4 +- l10n/pa/files_trashbin.po | 4 +- l10n/pa/lib.po | 32 +++--- l10n/pa/settings.po | 4 +- l10n/pl/core.po | 4 +- l10n/pl/files.po | 4 +- l10n/pl/files_external.po | 4 +- l10n/pl/files_trashbin.po | 4 +- l10n/pl/lib.po | 32 +++--- l10n/pl/settings.po | 4 +- l10n/pt_BR/core.po | 4 +- l10n/pt_BR/files.po | 4 +- l10n/pt_BR/files_external.po | 4 +- l10n/pt_BR/files_trashbin.po | 4 +- l10n/pt_BR/lib.po | 32 +++--- l10n/pt_BR/settings.po | 4 +- l10n/pt_PT/core.po | 10 +- l10n/pt_PT/files.po | 10 +- l10n/pt_PT/files_external.po | 4 +- l10n/pt_PT/files_trashbin.po | 4 +- l10n/pt_PT/lib.po | 32 +++--- l10n/pt_PT/settings.po | 4 +- l10n/ro/core.po | 4 +- l10n/ro/files.po | 4 +- l10n/ro/files_external.po | 4 +- l10n/ro/files_trashbin.po | 4 +- l10n/ro/lib.po | 32 +++--- l10n/ro/settings.po | 4 +- l10n/ru/core.po | 4 +- l10n/ru/files.po | 4 +- l10n/ru/files_external.po | 4 +- l10n/ru/files_trashbin.po | 4 +- l10n/ru/lib.po | 32 +++--- l10n/ru/settings.po | 4 +- l10n/si_LK/core.po | 4 +- l10n/si_LK/files.po | 4 +- l10n/si_LK/files_external.po | 4 +- l10n/si_LK/files_trashbin.po | 4 +- l10n/si_LK/lib.po | 32 +++--- l10n/si_LK/settings.po | 4 +- l10n/sk/core.po | 4 +- l10n/sk/files.po | 4 +- l10n/sk/files_external.po | 4 +- l10n/sk/files_trashbin.po | 4 +- l10n/sk/lib.po | 32 +++--- l10n/sk/settings.po | 4 +- l10n/sk_SK/core.po | 4 +- l10n/sk_SK/files.po | 4 +- l10n/sk_SK/files_external.po | 4 +- l10n/sk_SK/files_trashbin.po | 4 +- l10n/sk_SK/lib.po | 32 +++--- l10n/sk_SK/settings.po | 4 +- l10n/sl/core.po | 4 +- l10n/sl/files.po | 4 +- l10n/sl/files_external.po | 4 +- l10n/sl/files_trashbin.po | 4 +- l10n/sl/lib.po | 32 +++--- l10n/sl/settings.po | 4 +- l10n/sq/core.po | 4 +- l10n/sq/files.po | 4 +- l10n/sq/files_external.po | 4 +- l10n/sq/files_trashbin.po | 4 +- l10n/sq/lib.po | 32 +++--- l10n/sq/settings.po | 4 +- l10n/sr/core.po | 4 +- l10n/sr/files.po | 4 +- l10n/sr/files_external.po | 4 +- l10n/sr/files_trashbin.po | 4 +- l10n/sr/lib.po | 32 +++--- l10n/sr/settings.po | 4 +- l10n/sr@latin/core.po | 4 +- l10n/sr@latin/files.po | 4 +- l10n/sr@latin/files_external.po | 4 +- l10n/sr@latin/files_trashbin.po | 4 +- l10n/sr@latin/lib.po | 32 +++--- l10n/sr@latin/settings.po | 4 +- l10n/sv/core.po | 4 +- l10n/sv/files.po | 4 +- l10n/sv/files_external.po | 4 +- l10n/sv/files_trashbin.po | 4 +- l10n/sv/lib.po | 32 +++--- l10n/sv/settings.po | 4 +- l10n/ta_IN/core.po | 4 +- l10n/ta_IN/lib.po | 32 +++--- l10n/ta_IN/settings.po | 4 +- l10n/ta_LK/core.po | 4 +- l10n/ta_LK/files.po | 4 +- l10n/ta_LK/files_external.po | 4 +- l10n/ta_LK/files_trashbin.po | 4 +- l10n/ta_LK/lib.po | 32 +++--- l10n/ta_LK/settings.po | 4 +- l10n/te/core.po | 4 +- l10n/te/files.po | 4 +- l10n/te/files_external.po | 4 +- l10n/te/files_trashbin.po | 4 +- l10n/te/lib.po | 32 +++--- l10n/te/settings.po | 4 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 26 ++--- l10n/templates/private.pot | 26 ++--- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 4 +- l10n/th_TH/files.po | 4 +- l10n/th_TH/files_external.po | 4 +- l10n/th_TH/files_trashbin.po | 4 +- l10n/th_TH/lib.po | 32 +++--- l10n/th_TH/settings.po | 4 +- l10n/tr/core.po | 4 +- l10n/tr/files.po | 4 +- l10n/tr/files_external.po | 4 +- l10n/tr/files_trashbin.po | 4 +- l10n/tr/lib.po | 32 +++--- l10n/tr/settings.po | 4 +- l10n/ug/core.po | 4 +- l10n/ug/files.po | 4 +- l10n/ug/files_external.po | 4 +- l10n/ug/files_trashbin.po | 4 +- l10n/ug/lib.po | 32 +++--- l10n/ug/settings.po | 4 +- l10n/uk/core.po | 4 +- l10n/uk/files.po | 4 +- l10n/uk/files_external.po | 4 +- l10n/uk/files_trashbin.po | 4 +- l10n/uk/lib.po | 32 +++--- l10n/uk/settings.po | 4 +- l10n/ur_PK/core.po | 4 +- l10n/ur_PK/files.po | 4 +- l10n/ur_PK/files_external.po | 4 +- l10n/ur_PK/files_trashbin.po | 4 +- l10n/ur_PK/lib.po | 32 +++--- l10n/ur_PK/settings.po | 4 +- l10n/vi/core.po | 4 +- l10n/vi/files.po | 4 +- l10n/vi/files_external.po | 4 +- l10n/vi/files_trashbin.po | 4 +- l10n/vi/lib.po | 32 +++--- l10n/vi/settings.po | 4 +- l10n/zh_CN/core.po | 4 +- l10n/zh_CN/files.po | 4 +- l10n/zh_CN/files_external.po | 4 +- l10n/zh_CN/files_trashbin.po | 4 +- l10n/zh_CN/lib.po | 32 +++--- l10n/zh_CN/settings.po | 4 +- l10n/zh_HK/core.po | 4 +- l10n/zh_HK/files.po | 4 +- l10n/zh_HK/files_external.po | 4 +- l10n/zh_HK/files_trashbin.po | 4 +- l10n/zh_HK/lib.po | 32 +++--- l10n/zh_HK/settings.po | 4 +- l10n/zh_TW/core.po | 76 ++++++------- l10n/zh_TW/files.po | 8 +- l10n/zh_TW/files_external.po | 4 +- l10n/zh_TW/files_trashbin.po | 4 +- l10n/zh_TW/lib.po | 38 +++---- l10n/zh_TW/settings.po | 4 +- lib/l10n/da.php | 6 + lib/l10n/hu_HU.php | 69 ++++++++++- lib/l10n/zh_TW.php | 1 + settings/l10n/nn_NO.php | 2 + 495 files changed, 2370 insertions(+), 2230 deletions(-) diff --git a/apps/files/l10n/bn_BD.php b/apps/files/l10n/bn_BD.php index b2eec2a830c..7e7b8461720 100644 --- a/apps/files/l10n/bn_BD.php +++ b/apps/files/l10n/bn_BD.php @@ -15,6 +15,7 @@ $TRANSLATIONS = array( "Failed to write to disk" => "ডিস্কে লিখতে ব্যর্থ", "Invalid directory." => "ভুল ডিরেক্টরি", "Files" => "ফাইল", +"All files" => "সব ফাইল", "Upload cancelled." => "আপলোড বাতিল করা হয়েছে।", "File upload is in progress. Leaving the page now will cancel the upload." => "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।", "{new_name} already exists" => "{new_name} টি বিদ্যমান", diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index 77dd4516199..5eae5e46f27 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -43,6 +43,7 @@ $TRANSLATIONS = array( "WebDAV" => "WebDAV", "New" => "חדש", "Text file" => "קובץ טקסט", +"New folder" => "תיקייה חדשה", "Folder" => "תיקייה", "From link" => "מקישור", "Nothing in here. Upload something!" => "אין כאן שום דבר. אולי ברצונך להעלות משהו?", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index b44cd02a8af..85c439ecab1 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -11,14 +11,14 @@ $TRANSLATIONS = array( "The target folder has been moved or deleted." => "A célmappa törlődött, vagy áthelyezésre került.", "The name %s is already used in the folder %s. Please choose a different name." => "A %s név már létezik a %s mappában. Kérem válasszon másik nevet!", "Not a valid source" => "A kiinduló állomány érvénytelen", -"Server is not allowed to open URLs, please check the server configuration" => "A kiszolgálón nincs engedélyezve URL-ek megnyitása, kérem ellenőrizze a beállításokat", -"The file exceeds your quota by %s" => "A fájl meghaladja kvótádat %s-kal", +"Server is not allowed to open URLs, please check the server configuration" => "A kiszolgálón nincs engedélyezve URL-ek megnyitása, kérem ellenőrizze a beállításokat!", +"The file exceeds your quota by %s" => "A fájl ennyivel meghaladja a kvótáját: %s", "Error while downloading %s to %s" => "Hiba történt miközben %s-t letöltöttük %s-be", "Error when creating the file" => "Hiba történt az állomány létrehozásakor", "Folder name cannot be empty." => "A mappa neve nem maradhat kitöltetlenül", "Error when creating the folder" => "Hiba történt a mappa létrehozásakor", "Unable to set upload directory." => "Nem található a mappa, ahova feltölteni szeretne.", -"Invalid Token" => "Hibás mappacím", +"Invalid Token" => "Hibás token", "No file was uploaded. Unknown error" => "Nem történt feltöltés. Ismeretlen hiba", "There is no error, the file uploaded with success" => "A fájlt sikerült feltölteni", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "A feltöltött fájl mérete meghaladja a php.ini állományban megadott upload_max_filesize paraméter értékét.", @@ -31,13 +31,13 @@ $TRANSLATIONS = array( "Upload failed. Could not find uploaded file" => "A feltöltés nem sikerült. Nem található a feltöltendő állomány.", "Upload failed. Could not get file info." => "A feltöltés nem sikerült. Az állományt leíró információk nem érhetők el.", "Invalid directory." => "Érvénytelen mappa.", -"Files" => "Fájlok", +"Files" => "Fájlkezelő", "All files" => "Az összes állomány", "Unable to upload {filename} as it is a directory or has 0 bytes" => "A(z) {filename} állomány nem tölthető fel, mert ez vagy egy mappa, vagy pedig 0 bájtból áll.", "Total file size {size1} exceeds upload limit {size2}" => "A teljes fájlméret: {size1} meghaladja a feltöltési limitet: {size2}", "Not enough free space, you are uploading {size1} but only {size2} is left" => "Nincs elég szabad hely. A feltöltés mérete {size1}, de csak ennyi hely van: {size2}.", "Upload cancelled." => "A feltöltést megszakítottuk.", -"Could not get result from server." => "A kiszolgálótól nem kapható meg az eredmény.", +"Could not get result from server." => "A kiszolgálótól nem kapható meg a művelet eredménye.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést.", "URL cannot be empty" => "Az URL-cím nem maradhat kitöltetlenül", "{new_name} already exists" => "{new_name} már létezik", @@ -79,7 +79,7 @@ $TRANSLATIONS = array( "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Ezt a címet használja, ha WebDAV-on keresztül szeretné elérni a fájljait", "New" => "Új", -"New text file" => "Új szöveges file", +"New text file" => "Új szövegfájl", "Text file" => "Szövegfájl", "New folder" => "Új mappa", "Folder" => "Mappa", diff --git a/apps/files/l10n/nn_NO.php b/apps/files/l10n/nn_NO.php index f610ee902d5..502c313aa06 100644 --- a/apps/files/l10n/nn_NO.php +++ b/apps/files/l10n/nn_NO.php @@ -1,5 +1,6 @@ "Ukjend feil", "Could not move %s - File with this name already exists" => "Klarte ikkje flytta %s – det finst allereie ei fil med dette namnet", "Could not move %s" => "Klarte ikkje flytta %s", "File name cannot be empty." => "Filnamnet kan ikkje vera tomt.", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 1fcf85fc856..dfa599e10ac 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -12,6 +12,7 @@ $TRANSLATIONS = array( "The name %s is already used in the folder %s. Please choose a different name." => "O nome %s já está em uso na pasta %s. Por favor escolha um nome diferente.", "Not a valid source" => "Não é uma fonte válida", "Server is not allowed to open URLs, please check the server configuration" => "O servidor não consegue abrir URLs, por favor verifique a configuração do servidor", +"The file exceeds your quota by %s" => "O ficheiro excede a sua quota por %s", "Error while downloading %s to %s" => "Erro ao transferir %s para %s", "Error when creating the file" => "Erro ao criar o ficheiro", "Folder name cannot be empty." => "O nome da pasta não pode estar vazio.", @@ -68,6 +69,7 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Chave privada inválida da Aplicação de Encriptação. Por favor atualize a sua senha de chave privada nas definições pessoais, para recuperar o acesso aos seus ficheiros encriptados.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "A encriptação foi desactivada mas os seus ficheiros continuam encriptados. Por favor consulte as suas definições pessoais para desencriptar os ficheiros.", "{dirs} and {files}" => "{dirs} e {files}", +"%s could not be renamed as it has been deleted" => "Não foi possível renomear %s devido a ter sido eliminado", "%s could not be renamed" => "%s não pode ser renomeada", "Upload (max. %s)" => "Enviar (max. %s)", "File handling" => "Manuseamento do ficheiro", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 39ec148fba0..e269cca3168 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -12,6 +12,7 @@ $TRANSLATIONS = array( "The name %s is already used in the folder %s. Please choose a different name." => "%s 已經被使用於資料夾 %s ,請換一個名字", "Not a valid source" => "不是有效的來源", "Server is not allowed to open URLs, please check the server configuration" => "伺服器上不允許開啓 URL ,請檢查伺服器設定", +"The file exceeds your quota by %s" => "這個檔案大小超出配額 %s", "Error while downloading %s to %s" => "下載 %s 到 %s 失敗", "Error when creating the file" => "建立檔案失敗", "Folder name cannot be empty." => "資料夾名稱不能留空", diff --git a/apps/files_encryption/l10n/bn_BD.php b/apps/files_encryption/l10n/bn_BD.php index 63e335bd2b9..43699906e4d 100644 --- a/apps/files_encryption/l10n/bn_BD.php +++ b/apps/files_encryption/l10n/bn_BD.php @@ -1,5 +1,6 @@ "সংকেতায়ন" +"Encryption" => "সংকেতায়ন", +"Change Password" => "কূটশব্দ পরিবর্তন করুন" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/da.php b/apps/files_encryption/l10n/da.php index b455bf09bc4..dc2cf9e2475 100644 --- a/apps/files_encryption/l10n/da.php +++ b/apps/files_encryption/l10n/da.php @@ -30,6 +30,8 @@ $TRANSLATIONS = array( "New Recovery key password" => "Ny Gendannelsesnøgle kodeord", "Repeat New Recovery key password" => "Gentag dannelse af ny gendannaleses nøglekode", "Change Password" => "Skift Kodeord", +"Your private key password no longer matches your log-in password." => "Dit private nøglekodeord stemmer ikke længere overens med dit login-kodeord.", +"Set your old private key password to your current log-in password:" => "Sæt dit gamle, private nøglekodeord til at være dit nuværende login-kodeord. ", " If you don't remember your old password you can ask your administrator to recover your files." => "Hvis du ikke kan huske dit gamle kodeord kan du bede din administrator om at gendanne dine filer.", "Old log-in password" => "Gammelt login kodeord", "Current log-in password" => "Nuvrende login kodeord", diff --git a/apps/files_external/l10n/bn_BD.php b/apps/files_external/l10n/bn_BD.php index f878eafba83..34b7dc35dd3 100644 --- a/apps/files_external/l10n/bn_BD.php +++ b/apps/files_external/l10n/bn_BD.php @@ -1,7 +1,7 @@ "দয়া করে সঠিক এবং বৈধ Dropbox app key and secret প্রদান করুন।", -"Location" => "াবস্থান", +"Location" => "অবস্থান", "Host" => "হোস্ট", "Username" => "ব্যবহারকারী", "Password" => "কূটশব্দ", diff --git a/apps/files_sharing/l10n/bn_BD.php b/apps/files_sharing/l10n/bn_BD.php index 2545c4760ec..50cc21e43dd 100644 --- a/apps/files_sharing/l10n/bn_BD.php +++ b/apps/files_sharing/l10n/bn_BD.php @@ -1,8 +1,9 @@ "বাতির", +"Cancel" => "বাতিল", +"Shared by" => "যাদের মাঝে ভাগাভাগি করা হয়েছে", "Password" => "কূটশব্দ", -"Name" => "রাম", +"Name" => "নাম", "Download" => "ডাউনলোড" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/bn_BD.php b/apps/files_trashbin/l10n/bn_BD.php index d3a9f23b377..c5b46c2fcee 100644 --- a/apps/files_trashbin/l10n/bn_BD.php +++ b/apps/files_trashbin/l10n/bn_BD.php @@ -1,5 +1,6 @@ "ফিরিয়ে দাও", "Error" => "সমস্যা", "Name" => "রাম", "Delete" => "মুছে" diff --git a/apps/files_versions/l10n/bn_BD.php b/apps/files_versions/l10n/bn_BD.php index ce7f81b0095..c612223af3d 100644 --- a/apps/files_versions/l10n/bn_BD.php +++ b/apps/files_versions/l10n/bn_BD.php @@ -1,5 +1,6 @@ "ভার্সন" +"Versions" => "ভার্সন", +"Restore" => "ফিরিয়ে দাও" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/bn_BD.php b/apps/user_ldap/l10n/bn_BD.php index 63f1df3e054..220d02e4cc5 100644 --- a/apps/user_ldap/l10n/bn_BD.php +++ b/apps/user_ldap/l10n/bn_BD.php @@ -15,6 +15,7 @@ $TRANSLATIONS = array( "Password" => "কূটশব্দ", "For anonymous access, leave DN and Password empty." => "অজ্ঞাতকুলশীল অধিগমনের জন্য DN এবং কূটশব্দটি ফাঁকা রাখুন।", "You can specify Base DN for users and groups in the Advanced tab" => "সুচারু ট্যঅবে গিয়ে আপনি ব্যবহারকারি এবং গোষ্ঠীসমূহের জন্য ভিত্তি DN নির্ধারণ করতে পারেন।", +"Continue" => "চালিয়ে যাও", "Advanced" => "সুচারু", "Turn off SSL certificate validation." => "SSL সনদপত্র যাচাইকরণ বন্ধ রাক।", "in seconds. A change empties the cache." => "সেকেন্ডে। কোন পরিবর্তন ক্যাসে খালি করবে।", diff --git a/apps/user_webdavauth/l10n/bn_BD.php b/apps/user_webdavauth/l10n/bn_BD.php index 354df7c32d9..30ca2cdfa06 100644 --- a/apps/user_webdavauth/l10n/bn_BD.php +++ b/apps/user_webdavauth/l10n/bn_BD.php @@ -1,5 +1,6 @@ "ঠিকানা", "Save" => "সংরক্ষণ" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php index dafaa784238..c17dcfb4823 100644 --- a/core/l10n/bn_BD.php +++ b/core/l10n/bn_BD.php @@ -41,7 +41,10 @@ $TRANSLATIONS = array( "Choose" => "বেছে নিন", "Ok" => "তথাস্তু", "_{count} file conflict_::_{count} file conflicts_" => array("",""), -"Cancel" => "বাতির", +"New Files" => "নতুন ফাইল", +"Already existing files" => "বিদ্যমান ফাইল", +"Cancel" => "বাতিল", +"Continue" => "চালিয়ে যাও", "Shared" => "ভাগাভাগিকৃত", "Share" => "ভাগাভাগি কর", "Error" => "সমস্যা", diff --git a/core/l10n/da.php b/core/l10n/da.php index 7bb882cdabf..2d7baa6b29d 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -5,6 +5,8 @@ $TRANSLATIONS = array( "Turned off maintenance mode" => "standsede vedligeholdelsestilstand", "Updated database" => "Opdaterede database", "Checked database schema update" => "Tjekket database schema opdatering", +"Checked database schema update for apps" => "Tjekkede databaseskemaets opdatering for apps", +"Updated \"%s\" to %s" => "Opdaterede \"%s\" til %s", "Disabled incompatible apps: %s" => "Deaktiverer inkombatible apps: %s", "No image or file provided" => "Ingen fil eller billede givet", "Unknown filetype" => "Ukendt filtype", @@ -189,11 +191,14 @@ $TRANSLATIONS = array( "Thank you for your patience." => "Tak for din tålmodighed.", "You are accessing the server from an untrusted domain." => "Du tilgår serveren fra et utroværdigt domæne", "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domain\" setting in config/config.php. An example configuration is provided in config/config.sample.php." => "Kontakt venligst din administrator. Hvis du er administrator, konfigurer \"trusted_domain\" indstillingen i config/config.php. Et eksempel kan ses i config/config.sample.php.", +"Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." => "Afhænger af din konfiguration, da du som administrator eventuelt også er i stand til at gøre brug af knappen nedenfor til at tildele tillid til dette domæne.", +"Add \"%s\" as trusted domain" => "Tilføj \"%s\" som et troværdigt domæne", "%s will be updated to version %s." => "%s vil blive opdateret til version %s.", "The following apps will be disabled:" => "Følgende apps bliver deaktiveret:", "The theme %s has been disabled." => "Temaet, %s, er blevet deaktiveret.", "Please make sure that the database, the config folder and the data folder have been backed up before proceeding." => "Venligst sikrer dig en backup af databasen, config-mappen og data-mappen inden vi fortsætter.", "Start update" => "Begynd opdatering", +"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" => "For at undgå tidsudløb med større installationer, så kan du i stedet køre følgende kommando fra din installationsmappe:", "This ownCloud instance is currently being updated, which may take a while." => "Opdatere Owncloud, dette kan tage et stykke tid.", "Please reload this page after a short time to continue using ownCloud." => "Genindlæs denne side efter kort tid til at fortsætte med at bruge ownCloud." ); diff --git a/core/l10n/he.php b/core/l10n/he.php index ef3161fb29a..8faa691ef9f 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -48,6 +48,7 @@ $TRANSLATIONS = array( "Error while changing permissions" => "שגיאה במהלך שינוי ההגדרות", "Shared with you and the group {group} by {owner}" => "שותף אתך ועם הקבוצה {group} שבבעלות {owner}", "Shared with you by {owner}" => "שותף אתך על ידי {owner}", +"Share link" => "קישור לשיתוף", "Password protect" => "הגנה בססמה", "Email link to person" => "שליחת קישור בדוא״ל למשתמש", "Send" => "שליחה", diff --git a/core/l10n/nn_NO.php b/core/l10n/nn_NO.php index 2820bd356c0..1996299d615 100644 --- a/core/l10n/nn_NO.php +++ b/core/l10n/nn_NO.php @@ -41,6 +41,7 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("%n månad sidan","%n månadar sidan"), "last year" => "i fjor", "years ago" => "år sidan", +"I know what I'm doing" => "Eg veit kva eg gjer", "Reset password" => "Nullstill passord", "No" => "Nei", "Yes" => "Ja", @@ -57,6 +58,8 @@ $TRANSLATIONS = array( "(all selected)" => "(alle valte)", "({count} selected)" => "({count} valte)", "Error loading file exists template" => "Klarte ikkje å lasta fil-finst-mal", +"Very weak password" => "Veldig svakt passord", +"Weak password" => "Svakt passord", "Shared" => "Delt", "Share" => "Del", "Error" => "Feil", @@ -65,7 +68,9 @@ $TRANSLATIONS = array( "Error while changing permissions" => "Feil ved endring av tillatingar", "Shared with you and the group {group} by {owner}" => "Delt med deg og gruppa {group} av {owner}", "Shared with you by {owner}" => "Delt med deg av {owner}", +"Share link" => "Del lenkje", "Password protect" => "Passordvern", +"Choose a password for the public link" => "Vel eit passord for den offentlege lenkja", "Allow Public Upload" => "Tillat offentleg opplasting", "Email link to person" => "Send lenkja over e-post", "Send" => "Send", @@ -75,6 +80,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Vidaredeling er ikkje tillate", "Shared in {item} with {user}" => "Delt i {item} med {brukar}", "Unshare" => "Udel", +"can share" => "kan dela", "can edit" => "kan endra", "access control" => "tilgangskontroll", "create" => "lag", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index 687dfce41ce..8fde831af8e 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "Turned off maintenance mode" => "Desactivado o modo de manutenção", "Updated database" => "Base de dados actualizada", "Checked database schema update" => "Atualização do esquema da base de dados verificada.", +"Updated \"%s\" to %s" => "Actualizado \"%s\" para %s", "Disabled incompatible apps: %s" => "Apps incompatíveis desativadas: %s", "No image or file provided" => "Não foi selecionado nenhum ficheiro para importar", "Unknown filetype" => "Ficheiro desconhecido", @@ -189,6 +190,7 @@ $TRANSLATIONS = array( "Thank you for your patience." => "Obrigado pela sua paciência.", "You are accessing the server from an untrusted domain." => "Está a aceder ao servidor a partir de um domínio que não é de confiança.", "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domain\" setting in config/config.php. An example configuration is provided in config/config.sample.php." => "Por favor contacte o seu administrador. Se é um administrador desta instância, configure as definições \"trusted_domain\" em config/config.php. Um exemplo de configuração é fornecido em config/config.sample.php.", +"Add \"%s\" as trusted domain" => "Adicionar \"%s\" como um domínio de confiança", "%s will be updated to version %s." => "O %s irá ser atualizado para a versão %s.", "The following apps will be disabled:" => "As seguintes apps irão ser desativadas:", "The theme %s has been disabled." => "O tema %s foi desativado.", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index c3e34a0ad4d..e099fbb7bd8 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -5,6 +5,8 @@ $TRANSLATIONS = array( "Turned off maintenance mode" => "已停用維護模式", "Updated database" => "已更新資料庫", "Checked database schema update" => "已檢查資料庫格式更新", +"Checked database schema update for apps" => "已檢查應用程式的資料庫格式更新", +"Updated \"%s\" to %s" => "已更新 %s 到 %s", "Disabled incompatible apps: %s" => "停用不相容的應用程式:%s", "No image or file provided" => "未提供圖片或檔案", "Unknown filetype" => "未知的檔案類型", @@ -51,6 +53,7 @@ $TRANSLATIONS = array( "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "您的檔案是加密的,如果您沒有啟用救援金鑰,當您重設密碼之後將無法存取您的資料。
    如果不確定該怎麼做,請聯絡您的系統管理員。
    您確定要繼續嗎?", "I know what I'm doing" => "我知道我在幹嘛", "Reset password" => "重設密碼", +"Password can not be changed. Please contact your administrator." => "無法變更密碼,請聯絡您的系統管理員", "No" => "否", "Yes" => "是", "Choose" => "選擇", @@ -60,6 +63,7 @@ $TRANSLATIONS = array( "_{count} file conflict_::_{count} file conflicts_" => array("{count} 個檔案衝突"), "One file conflict" => "一個檔案衝突", "New Files" => "新檔案", +"Already existing files" => "已經存在的檔案", "Which files do you want to keep?" => "您要保留哪一個檔案?", "If you select both versions, the copied file will have a number added to its name." => "如果您同時選擇兩個版本,被複製的那個檔案名稱後面會加上編號", "Cancel" => "取消", @@ -73,6 +77,7 @@ $TRANSLATIONS = array( "Good password" => "好的密碼", "Strong password" => "很強的密碼", "Shared" => "已分享", +"Shared with {recipients}" => "與 {recipients} 分享", "Share" => "分享", "Error" => "錯誤", "Error while sharing" => "分享時發生錯誤", @@ -83,6 +88,7 @@ $TRANSLATIONS = array( "Share with user or group …" => "與用戶或群組分享", "Share link" => "分享連結", "Password protect" => "密碼保護", +"Choose a password for the public link" => "為公開連結選一個密碼", "Allow Public Upload" => "允許任何人上傳", "Email link to person" => "將連結 email 給別人", "Send" => "寄出", @@ -112,7 +118,13 @@ $TRANSLATIONS = array( "Edit tags" => "編輯標籤", "Error loading dialog template: {error}" => "載入對話樣板出錯:{error}", "No tags selected for deletion." => "沒有選擇要刪除的標籤", +"Updating {productName} to version {version}, this may take a while." => "正在更新 {productName} 到版本 {version} ,請稍候", +"Please reload the page." => "請重新整理頁面", +"The update was unsuccessful." => "更新失敗", "The update was successful. Redirecting you to ownCloud now." => "升級成功,正將您重新導向至 ownCloud 。", +"Couldn't reset password because the token is invalid" => "無法重設密碼因為 token 無效", +"Couldn't send reset email. Please make sure your username is correct." => "無法寄送重設 email ,請確認您的帳號輸入正確", +"Couldn't send reset email because there is no email address for this username. Please contact your administrator." => "無法寄送重設 email ,因為這個帳號沒有設定 email 地址,請聯絡您的系統管理員", "%s password reset" => "%s 密碼重設", "Use the following link to reset your password: {link}" => "請至以下連結重設您的密碼: {link}", "You will receive a link to reset your password via Email." => "重設密碼的連結將會寄到您的電子郵件信箱。", @@ -121,6 +133,9 @@ $TRANSLATIONS = array( "Yes, I really want to reset my password now" => "對,我現在想要重設我的密碼。", "Reset" => "重設", "New password" => "新密碼", +"New Password" => "新密碼", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "不支援 Mac OS X 而且 %s 在這個平台上面無法正常運作,請自行衡量風險!", +"For the best results, please consider using a GNU/Linux server instead." => "請考慮使用 GNU/Linux 伺服器以取得最好的效果", "Personal" => "個人", "Users" => "使用者", "Apps" => "應用程式", @@ -129,12 +144,14 @@ $TRANSLATIONS = array( "Error loading tags" => "載入標籤出錯", "Tag already exists" => "標籤已經存在", "Error deleting tag(s)" => "刪除標籤出錯", +"Error tagging" => "貼標籤發生錯誤", "Error untagging" => "移除標籤失敗", "Error favoriting" => "加入最愛時出錯", "Error unfavoriting" => "從最愛移除出錯", "Access forbidden" => "存取被拒", "Cloud not found" => "找不到網頁", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "嗨,\n\n%s 和你分享了 %s ,到這裡看它:%s\n", +"The share will expire on %s." => "這個分享將會於 %s 過期", "Cheers!" => "太棒了!", "Security Warning" => "安全性警告", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "您的 PHP 版本無法抵抗 NULL Byte 攻擊 (CVE-2006-7243)", @@ -145,24 +162,42 @@ $TRANSLATIONS = array( "For information how to properly configure your server, please see the documentation." => "請參考說明文件以瞭解如何正確設定您的伺服器。", "Create an admin account" => "建立一個管理者帳號", "Password" => "密碼", +"Storage & database" => "儲存空間和資料庫", "Data folder" => "資料儲存位置", "Configure the database" => "設定資料庫", +"Only %s is available." => "剩下 %s 可使用", "Database user" => "資料庫使用者", "Database password" => "資料庫密碼", "Database name" => "資料庫名稱", "Database tablespace" => "資料庫 tablespace", "Database host" => "資料庫主機", +"SQLite will be used as database. For larger installations we recommend to change this." => "將會使用 SQLite 作為資料庫,在大型安裝中建議使用其他種資料庫", "Finish setup" => "完成設定", "Finishing …" => "即將完成…", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "這個應用程式需要啟用 Javascript 才能正常運作,請啟用 Javascript 然後重新載入頁面", "%s is available. Get more information on how to update." => "%s 已經釋出,瞭解更多資訊以進行更新。", "Log out" => "登出", "Server side authentication failed!" => "伺服器端認證失敗!", "Please contact your administrator." => "請聯絡系統管理員。", +"Forgot your password? Reset it!" => "忘了密碼?重設它!", "remember" => "記住", "Log in" => "登入", "Alternative Logins" => "其他登入方法", +"Hey there,

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

    " => "嗨,

    %s 與你分享了%s
    檢視

    ", +"This ownCloud instance is currently in single user mode." => "這個 ownCloud 伺服器目前運作於單一使用者模式", +"This means only administrators can use the instance." => "這表示只有系統管理員能夠使用", "Contact your system administrator if this message persists or appeared unexpectedly." => "若這個訊息持續出現,請聯絡系統管理員", "Thank you for your patience." => "感謝您的耐心", +"You are accessing the server from an untrusted domain." => "你正在從一個未信任的網域存取伺服器", +"Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domain\" setting in config/config.php. An example configuration is provided in config/config.sample.php." => "請聯絡您的系統管理員,如果您就是系統管理員,請設定 config/config.php 中的 \"trusted_domain\" 選項。範例設定提供於 config/config.sample.php", +"Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." => "依照設定而定,您身為系統管理員可能也可以使用底下的按鈕來信任這個網域", +"Add \"%s\" as trusted domain" => "將 %s 加入到信任的網域", +"%s will be updated to version %s." => "%s 將會被升級到版本 %s", +"The following apps will be disabled:" => "這些應用程式會被停用:", +"The theme %s has been disabled." => "主題 %s 已經被停用", +"Please make sure that the database, the config folder and the data folder have been backed up before proceeding." => "在繼續之前,請備份資料庫、config 目錄及資料目錄", +"Start update" => "開始升級", +"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" => "在大型安裝上,為了避免升級請求逾時,你也可以在安裝目錄執行下列指令:", "This ownCloud instance is currently being updated, which may take a while." => "ownCloud 正在升級,請稍待一會。", "Please reload this page after a short time to continue using ownCloud." => "請稍後重新載入這個頁面就可以繼續使用 ownCloud" ); diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index b7e4253f167..9829ad304b3 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index a94c88034f4..92d8e588b4a 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 52d5c2b5850..346524310a4 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index a748e97c7df..92febba175b 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index af84995d48e..b4125c05159 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index 9f41f1b7144..83a3ec19534 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 37711763de2..5f1ba373b73 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -41,11 +41,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -338,68 +338,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 2fd56e7bd4e..6a8dedbd301 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ast/core.po b/l10n/ast/core.po index e20d29d43a0..7c25ec82ce2 100644 --- a/l10n/ast/core.po +++ b/l10n/ast/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ast/files.po b/l10n/ast/files.po index 5626c9b477f..28fc149e0e6 100644 --- a/l10n/ast/files.po +++ b/l10n/ast/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ast/files_external.po b/l10n/ast/files_external.po index d3f253ebbc9..01e4b876f18 100644 --- a/l10n/ast/files_external.po +++ b/l10n/ast/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: Iñigo Varela \n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ast/files_trashbin.po b/l10n/ast/files_trashbin.po index 51816052c5e..45453c83918 100644 --- a/l10n/ast/files_trashbin.po +++ b/l10n/ast/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ast/lib.po b/l10n/ast/lib.po index 29cd41a0a5f..f713eda2cdb 100644 --- a/l10n/ast/lib.po +++ b/l10n/ast/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -42,11 +42,11 @@ msgid "" "config directory%s." msgstr "Davezu esto pue iguase %sdándo-y al sirvidor web accesu d'escritura al direutoriu de configuración%s." -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -339,68 +339,68 @@ msgstr "Compartir %s falló, porque nun se permite compartir con enllaces" msgid "Share type %s is not valid for %s" msgstr "La triba de compartición %s nun ye válida pa %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Falló dar permisos a %s, porque los permisos son mayores que los otorgaos a %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Falló dar permisos a %s, porque l'elementu nun s'atopó" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Nun pue afitase la data de caducidá. Ficheros compartíos nun puen caducar dempués de %s de compartise" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Nun pue afitase la data d'espiración. La data d'espiración ta nel pasáu" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "El motor compartíu %s tien d'implementar la interfaz OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Nun s'alcontró'l botón de compartición %s" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Nun s'alcontró'l botón de partición pa %s" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Compartir %s falló, yá que l'usuariu %s ye'l compartidor orixinal" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Compartir %s falló, porque los permisos perpasen los otorgaos a %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Compartir %s falló, porque nun se permite la re-compartición" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Compartir %s falló porque'l motor compartíu pa %s podría nun atopar el so orixe" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ast/settings.po b/l10n/ast/settings.po index 6cbc6647e94..092d3065bf5 100644 --- a/l10n/ast/settings.po +++ b/l10n/ast/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/az/core.po b/l10n/az/core.po index 6b52f2481b8..8ab912754f7 100644 --- a/l10n/az/core.po +++ b/l10n/az/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-27 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 15:41+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: unixidzero \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/az/files.po b/l10n/az/files.po index 4536156f147..67aeaecb6cc 100644 --- a/l10n/az/files.po +++ b/l10n/az/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: unixidzero \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/az/files_external.po b/l10n/az/files_external.po index dec4ba57c48..e599dba6856 100644 --- a/l10n/az/files_external.po +++ b/l10n/az/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: unixidzero \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/az/files_trashbin.po b/l10n/az/files_trashbin.po index b2f18e3550a..7496e84408f 100644 --- a/l10n/az/files_trashbin.po +++ b/l10n/az/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: unixidzero \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/az/lib.po b/l10n/az/lib.po index be0d55a007f..7b377af59f9 100644 --- a/l10n/az/lib.po +++ b/l10n/az/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-27 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 15:41+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: unixidzero \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -337,68 +337,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/az/settings.po b/l10n/az/settings.po index 91a1408b978..1b81e5c83b8 100644 --- a/l10n/az/settings.po +++ b/l10n/az/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: unixidzero \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/core.po b/l10n/be/core.po index 86a04642b4b..a14c72d4a4c 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index e101456dbb0..9c342b23817 100644 --- a/l10n/be/lib.po +++ b/l10n/be/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index e680af33656..441cc6ff68e 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: Ivo\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 1e3b9f71fec..7bf9db48b6c 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index d38f8f29ae2..0ee49441732 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: Ivo\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 1204311e6cf..7e9df0c467d 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: Ivo\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 9a9ea2758d7..73cd90ee374 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -41,11 +41,11 @@ msgid "" "config directory%s." msgstr "Това обикновено може да бъде оправено като %s даде разрешение на уеб сървъра да записва в config папката %s." -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "Открита е примерна конфигурация" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -338,68 +338,68 @@ msgstr "Неуспешно споделяне на %s, защото сподел msgid "Share type %s is not valid for %s" msgstr "Споделянето на тип %s не валидно за %s." -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Неуспешна промяна на правата за достъп за %s, защото промените надвишават правата на достъп дадени на %s." -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Неуспешна промяна на правата за достъп за %s, защото съдържанието не е открито." -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Неуспешно задаване на дата на изтичане. Споделни папки или файлове не могат да изтичат по-късно от %s след като са били споделени" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Неуспешно задаване на дата на изтичане. Датата на изтичане е в миналото" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Споделянето на сървърния %s трябва да поддържа OCP\\Share_Backend интерфейс." -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Споделянето на сървърния %s не е открито." -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Споделянето на сървъра за %s не е открито." -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Споделяне на %s е неуспешно, защото потребител %s е оригиналния собственик." -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Неуспешно споделяне на %s, защото промените надвишават правата на достъп дадени на %s." -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Неуспешно споделяне на %s, защото повторно споделяне не е разрешено." -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Неуспешно споделяне на %s, защото не е открит първоизточникът на %s, за да бъде споделяне по сървъра." -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 6efff02daa3..295c30fcdbc 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: Ivo\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 0aa4c392f2d..4065d248a52 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"Last-Translator: azizul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -288,11 +288,11 @@ msgstr "" #: js/oc-dialogs.js:450 msgid "New Files" -msgstr "" +msgstr "নতুন ফাইল" #: js/oc-dialogs.js:451 msgid "Already existing files" -msgstr "" +msgstr "বিদ্যমান ফাইল" #: js/oc-dialogs.js:453 msgid "Which files do you want to keep?" @@ -306,11 +306,11 @@ msgstr "" #: js/oc-dialogs.js:462 msgid "Cancel" -msgstr "বাতির" +msgstr "বাতিল" #: js/oc-dialogs.js:472 msgid "Continue" -msgstr "" +msgstr "চালিয়ে যাও" #: js/oc-dialogs.js:519 js/oc-dialogs.js:532 msgid "(all selected)" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 13cb57f9f5f..aaaa76c3c00 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# azizul , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"Last-Translator: azizul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -162,7 +163,7 @@ msgstr "ফাইল" #: appinfo/app.php:27 msgid "All files" -msgstr "" +msgstr "সব ফাইল" #: js/file-upload.js:269 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" diff --git a/l10n/bn_BD/files_encryption.po b/l10n/bn_BD/files_encryption.po index 31a5dea6552..50f03e71d7e 100644 --- a/l10n/bn_BD/files_encryption.po +++ b/l10n/bn_BD/files_encryption.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# azizul , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-12 01:54-0400\n" -"PO-Revision-Date: 2014-08-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-27 19:00+0000\n" +"Last-Translator: azizul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,11 +36,11 @@ msgid "" "Could not disable recovery key. Please check your recovery key password!" msgstr "" -#: ajax/changeRecoveryPassword.php:49 +#: ajax/changeRecoveryPassword.php:50 msgid "Password successfully changed." msgstr "" -#: ajax/changeRecoveryPassword.php:51 +#: ajax/changeRecoveryPassword.php:52 msgid "Could not change the password. Maybe the old password was not correct." msgstr "" @@ -91,7 +92,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:293 +#: hooks/hooks.php:298 msgid "Following users are not set up for encryption:" msgstr "" @@ -157,7 +158,7 @@ msgstr "" #: templates/settings-admin.php:59 msgid "Change Password" -msgstr "" +msgstr "কূটশব্দ পরিবর্তন করুন" #: templates/settings-personal.php:12 msgid "Your private key password no longer matches your log-in password." diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 15802b5ea50..76e285b5479 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# azizul , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"Last-Translator: azizul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -53,7 +54,7 @@ msgstr "" #: appinfo/app.php:47 msgid "Location" -msgstr "াবস্থান" +msgstr "অবস্থান" #: appinfo/app.php:50 msgid "Amazon S3" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index ad4c1691615..d41391335d6 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# azizul , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-21 01:54-0400\n" -"PO-Revision-Date: 2014-08-20 18:20+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-27 19:00+0000\n" +"Last-Translator: azizul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -67,7 +68,7 @@ msgstr "" #: js/external.js:76 msgid "Cancel" -msgstr "বাতির" +msgstr "বাতিল" #: js/external.js:77 msgid "Add remote share" @@ -83,7 +84,7 @@ msgstr "" #: js/sharedfilelist.js:128 msgid "Shared by" -msgstr "" +msgstr "যাদের মাঝে ভাগাভাগি করা হয়েছে" #: templates/authenticate.php:4 msgid "This share is password-protected" @@ -99,7 +100,7 @@ msgstr "কূটশব্দ" #: templates/list.php:16 msgid "Name" -msgstr "রাম" +msgstr "নাম" #: templates/list.php:20 msgid "Share time" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index deba9bb22a6..fbd8c833baf 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# azizul , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"Last-Translator: azizul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,7 +34,7 @@ msgstr "" #: js/app.js:52 templates/index.php:21 templates/index.php:23 msgid "Restore" -msgstr "" +msgstr "ফিরিয়ে দাও" #: js/filelist.js:119 js/filelist.js:164 js/filelist.js:214 msgid "Error" diff --git a/l10n/bn_BD/files_versions.po b/l10n/bn_BD/files_versions.po index 2910e627278..359b49550bc 100644 --- a/l10n/bn_BD/files_versions.po +++ b/l10n/bn_BD/files_versions.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-27 19:21+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,22 +22,22 @@ msgstr "" msgid "Could not revert: %s" msgstr "" -#: js/versions.js:7 +#: js/versions.js:48 msgid "Versions" msgstr "ভার্সন" -#: js/versions.js:53 +#: js/versions.js:70 msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: js/versions.js:79 +#: js/versions.js:97 msgid "More versions..." msgstr "" -#: js/versions.js:116 +#: js/versions.js:135 msgid "No other versions available" msgstr "" -#: js/versions.js:149 +#: js/versions.js:165 msgid "Restore" -msgstr "" +msgstr "ফিরিয়ে দাও" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 227d606ca38..459f09f0028 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 3b93fda47ec..1bfb31ba718 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 4e8df328c2c..a18358286ee 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-19 01:54-0400\n" -"PO-Revision-Date: 2014-08-18 18:50+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-27 18:51+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -330,7 +330,7 @@ msgstr "" #: templates/part.wizardcontrols.php:8 msgid "Continue" -msgstr "" +msgstr "চালিয়ে যাও" #: templates/settings.php:7 msgid "Expert" diff --git a/l10n/bn_BD/user_webdavauth.po b/l10n/bn_BD/user_webdavauth.po index e0a586f7019..42dbb2393cd 100644 --- a/l10n/bn_BD/user_webdavauth.po +++ b/l10n/bn_BD/user_webdavauth.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# azizul , 2014 # shubhra , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-27 19:11+0000\n" +"Last-Translator: azizul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,7 +25,7 @@ msgstr "" #: templates/settings.php:3 msgid "Address:" -msgstr "" +msgstr "ঠিকানা" #: templates/settings.php:5 msgid "Save" diff --git a/l10n/bn_IN/core.po b/l10n/bn_IN/core.po index d05019d6b67..1a85e8a84ed 100644 --- a/l10n/bn_IN/core.po +++ b/l10n/bn_IN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_IN/files.po b/l10n/bn_IN/files.po index 4433197f040..1ee37f3a0e5 100644 --- a/l10n/bn_IN/files.po +++ b/l10n/bn_IN/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_IN/files_external.po b/l10n/bn_IN/files_external.po index 559cd742b89..24a254377c3 100644 --- a/l10n/bn_IN/files_external.po +++ b/l10n/bn_IN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_IN/files_trashbin.po b/l10n/bn_IN/files_trashbin.po index 7ea1ee2a788..943f87f2bfa 100644 --- a/l10n/bn_IN/files_trashbin.po +++ b/l10n/bn_IN/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: ishita mukherjee \n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_IN/lib.po b/l10n/bn_IN/lib.po index 67b327f6dc0..67bec7a7fb7 100644 --- a/l10n/bn_IN/lib.po +++ b/l10n/bn_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/bn_IN/settings.po b/l10n/bn_IN/settings.po index ecb4e98dfab..7601cf1cc36 100644 --- a/l10n/bn_IN/settings.po +++ b/l10n/bn_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 03ea646c396..2246806d7fe 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index b2c54ef98df..926f67b7ee5 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 13fcbb94bdc..f3474ccbaac 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 7ab01b0f69a..e7ab832db88 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index af366f88d72..1cff9f5b0c5 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -40,11 +40,11 @@ msgid "" "config directory%s." msgstr "Això normalment es pot solucionar donant a %s permís d'escriptura a la carpeta de configuració %s" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -337,68 +337,68 @@ msgstr "Ha fallat en compartir %s, perquè no es permet compartir amb enllaços" msgid "Share type %s is not valid for %s" msgstr "La compartició tipus %s no és vàlida per %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Ha fallat en establir els permisos per %s perquè aquests excedeixen els permesos per a %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Ha fallat en establir els permisos per %s, perquè no s'ha trobat l'element" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "El rerefons de compartició %s ha d'implementar la interfície OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "El rerefons de compartició %s no s'ha trobat" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "El rerefons de compartició per a %s no s'ha trobat" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Ha fallat en compartir %s perquè l'usuari %s és qui comparteix inicialment" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Ha fallat en compartir %s perquè els permisos excedeixen els permesos per a %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Ha fallat en compartir %s, perquè no es permet compartir de nou" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Ha fallat en compartir %s, perquè el rerefons de compartir per %s no pot trobar la seva font" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 3c5435a7b3b..0f2653b7a99 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 70327c56987..b8f5e48bc27 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 04fe6bc879f..82089485e6e 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: Petr Šťastný \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index dcee26b41a8..5ddaf6317d6 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: Petr Šťastný \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index be9386d460a..50e2a9fd3d0 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 768022deb99..bf0d13d0d79 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -46,11 +46,11 @@ msgid "" "config directory%s." msgstr "To bývá obyčeně vyřešeno, když %s povolí webovému serveru zápis do konfiguračního adresáře %s." -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "Byla detekována vzorová konfigurace" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -343,68 +343,68 @@ msgstr "Sdílení položky %s selhalo, protože sdílení pomocí linků není p msgid "Share type %s is not valid for %s" msgstr "Sdílení typu %s není korektní pro %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Nastavení oprávnění pro %s selhalo, protože jsou k tomu nutná vyšší oprávnění, než jaká byla povolena pro %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Nastavení práv pro %s selhalo, protože položka nebyla nalezena" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Nelze nastavit datum vypršení platnosti. Sdílení nemůže vypršet později než za %s po zveřejnění." -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Nelze nastavit datum vypršení platnosti. Datum vypršení je v minulosti." -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Podpůrná vrstva pro sdílení %s musí obsahovat rozhraní OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Podpůrná vrstva sdílení %s nenalezena" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Podpůrná vrstva sdílení pro %s nenalezena" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Sdílení položky %s selhalo, protože byla sdílena uživatelem %s jako první." -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Sdílení položky %s selhalo, protože jsou k tomu nutná vyšší oprávnění, než jaká byla %s povolena." -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Sdílení položky %s selhalo, protože sdílení dále není povoleno" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Sdílení položky %s selhalo, protože podpůrná vrstva sdílení nenalezla zdrojový %s" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index c50b1e2b2c3..ef1d470d78c 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 7ead4f2e907..b951cfc2be1 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 983d41497d4..ff92d0b9d1b 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index 3e618c88f22..2127096d623 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index da84474f059..46ecc9e3e0a 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 91ec5d49208..592d2bb080f 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 339f738c1cb..6dc2400df81 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/core.po b/l10n/da/core.po index f75a7f1809e..2c7aee8f36c 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"Last-Translator: Aputsiaĸ Niels Janussen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,12 +52,12 @@ msgstr "Tjekket database schema opdatering" #: ajax/update.php:22 msgid "Checked database schema update for apps" -msgstr "" +msgstr "Tjekkede databaseskemaets opdatering for apps" #: ajax/update.php:25 #, php-format msgid "Updated \"%s\" to %s" -msgstr "" +msgstr "Opdaterede \"%s\" til %s" #: ajax/update.php:33 #, php-format @@ -869,12 +869,12 @@ msgstr "Kontakt venligst din administrator. Hvis du er administrator, konfigurer msgid "" "Depending on your configuration, as an administrator you might also be able " "to use the button below to trust this domain." -msgstr "" +msgstr "Afhænger af din konfiguration, da du som administrator eventuelt også er i stand til at gøre brug af knappen nedenfor til at tildele tillid til dette domæne." #: templates/untrustedDomain.php:14 #, php-format msgid "Add \"%s\" as trusted domain" -msgstr "" +msgstr "Tilføj \"%s\" som et troværdigt domæne" #: templates/update.admin.php:3 #, php-format @@ -904,7 +904,7 @@ msgstr "Begynd opdatering" msgid "" "To avoid timeouts with larger installations, you can instead run the " "following command from your installation directory:" -msgstr "" +msgstr "For at undgå tidsudløb med større installationer, så kan du i stedet køre følgende kommando fra din installationsmappe:" #: templates/update.user.php:3 msgid "" diff --git a/l10n/da/files.po b/l10n/da/files.po index 55f37ccf719..52d29318694 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: Aputsiaĸ Niels Janussen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_encryption.po b/l10n/da/files_encryption.po index 366b7265b76..32c3a56b7b9 100644 --- a/l10n/da/files_encryption.po +++ b/l10n/da/files_encryption.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-12 01:54-0400\n" -"PO-Revision-Date: 2014-08-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-27 11:56+0000\n" +"Last-Translator: Aputsiaĸ Niels Janussen \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" @@ -40,11 +40,11 @@ msgid "" "Could not disable recovery key. Please check your recovery key password!" msgstr "Kunne ikke deaktivere gendannelsesnøgle. Kontroller din gendannelsesnøgle kodeord!" -#: ajax/changeRecoveryPassword.php:49 +#: ajax/changeRecoveryPassword.php:50 msgid "Password successfully changed." msgstr "Kodeordet blev ændret succesfuldt" -#: ajax/changeRecoveryPassword.php:51 +#: ajax/changeRecoveryPassword.php:52 msgid "Could not change the password. Maybe the old password was not correct." msgstr "Kunne ikke ændre kodeordet. Måske var det gamle kodeord ikke korrekt." @@ -96,7 +96,7 @@ msgid "" " the encryption app has been disabled." msgstr "Sørg for at PHP 5.3.3 eller nyere er installeret og at OpenSSL sammen med PHP-udvidelsen er aktiveret og korrekt konfigureret. Indtil videre er krypteringsprogrammet deaktiveret." -#: hooks/hooks.php:293 +#: hooks/hooks.php:298 msgid "Following users are not set up for encryption:" msgstr "Følgende brugere er ikke sat op til kryptering:" @@ -166,11 +166,11 @@ msgstr "Skift Kodeord" #: templates/settings-personal.php:12 msgid "Your private key password no longer matches your log-in password." -msgstr "" +msgstr "Dit private nøglekodeord stemmer ikke længere overens med dit login-kodeord." #: templates/settings-personal.php:15 msgid "Set your old private key password to your current log-in password:" -msgstr "" +msgstr "Sæt dit gamle, private nøglekodeord til at være dit nuværende login-kodeord. " #: templates/settings-personal.php:17 msgid "" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index 1ae0afdc6e1..31a2ece4871 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 02bb18bfc99..8de535b81f2 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 0f5cfaa29f1..15113fedeff 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"Last-Translator: Aputsiaĸ Niels Janussen \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" @@ -47,16 +47,16 @@ msgid "" "config directory%s." msgstr "Dette kan som regel rettes ved at %sgive webserveren skriveadgang til config-mappen%s." -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" -msgstr "" +msgstr "Eksempel for konfiguration registreret" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " "before performing changes on config.php" -msgstr "" +msgstr "Der er registreret at eksempel for konfiguration er blevet kopieret. Dette kan ødelægge din installation og understøttes ikke. Læs venligst dokumentationen før der foretages ændringer i config.php" #: private/app.php:374 msgid "Help" @@ -344,68 +344,68 @@ msgstr "Der skete en fejl ved deling af %s, det er ikke tilladt at dele links" msgid "Share type %s is not valid for %s" msgstr "Delingstypen %s er ikke gyldig for %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Angivelse af tilladelser for %s mislykkedes, fordi tilladelserne overskred de som var tildelt %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Angivelse af tilladelser for %s mislykkedes, fordi artiklen ikke blev fundet" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" -msgstr "" +msgstr "Kan ikke angive udløbsdato. Delinger kan ikke udløbe senere end %s efter at de er blevet delt" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" -msgstr "" +msgstr "Kan ikke angive udløbsdato. Udløbsdato er allerede passeret" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Delingsbackend'en %s skal implementere grænsefladen OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Delingsbackend'en %s blev ikke fundet" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Delingsbackend'en for %s blev ikke fundet" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Deling af %s mislykkedes, fordi brugeren %s er den som delte oprindeligt" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Deling af %s mislykkedes, fordi tilladelserne overskred de tillaldelser som %s var tildelt" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Deling af %s mislykkedes, fordi videredeling ikke er tilladt" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Deling af %s mislykkedes, fordi back-enden ikke kunne finde kilden til %s" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" @@ -506,7 +506,7 @@ msgstr "Kan ikke skrive til mappen \"apps\"" msgid "" "This can usually be fixed by %sgiving the webserver write access to the apps" " directory%s or disabling the appstore in the config file." -msgstr "" +msgstr "Dette kan som regel rettes ved at %sgive webserveren skriveadgang til apps-mappen%s eller slå appstore fra i config-filen." #: private/util.php:470 #, php-format @@ -529,7 +529,7 @@ msgstr "Angivelse af %s for lokalitet mislykkedes" msgid "" "Please install one of these locales on your system and restart your " "webserver." -msgstr "" +msgstr "Installér venligst én af disse lokaliteter på dit system, og genstart din webserver." #: private/util.php:494 msgid "Please ask your server administrator to install the module." diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 478c0d450f5..261f98dfe31 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: Aputsiaĸ Niels Janussen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/core.po b/l10n/de/core.po index 11f5b55490d..6c8d1da1741 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files.po b/l10n/de/files.po index 265170693f3..2ce75acfdcd 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+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" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index 5767e8cc2f8..04bf295e3c1 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+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" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index acbb2ab29e5..8fc166477a9 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+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" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index bbf332e05e6..8cdd817befb 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -45,11 +45,11 @@ msgid "" "config directory%s." msgstr "Dies kann normalerweise repariert werden, indem dem Webserver %s Schreibzugriff auf das config-Verzeichnis %s gegeben wird." -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "Beispielkonfiguration gefunden" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -342,68 +342,68 @@ msgstr "Freigabe von %s fehlgeschlagen, da das Teilen von Verknüpfungen nicht e msgid "Share type %s is not valid for %s" msgstr "Freigabetyp %s ist nicht gültig für %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da die Berechtigungen, die erteilten Berechtigungen %s überschreiten" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da das Objekt nicht gefunden wurde" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Ablaufdatum kann nicht gesetzt werden. Freigaben können nach dem Teilen, nicht länger als %s gültig sein." -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Ablaufdatum kann nicht gesetzt werden. Ablaufdatum liegt in der Vergangenheit." -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Freigabe-Backend %s nicht gefunden" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Freigabe-Backend für %s nicht gefunden" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Freigabe von %s fehlgeschlagen, da der Nutzer %s der offizielle Freigeber ist" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Freigabe von %s fehlgeschlagen, da die Berechtigungen die erteilten Berechtigungen %s überschreiten" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Freigabe von %s fehlgeschlagen, da das nochmalige Freigeben einer Freigabe nicht erlaubt ist" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Freigabe von %s fehlgeschlagen, da das Freigabe-Backend für %s nicht in dieser Quelle gefunden werden konnte" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 4afdda7fed2..6c6bab14529 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_AT/core.po b/l10n/de_AT/core.po index 70138c07e1b..a70f45952bb 100644 --- a/l10n/de_AT/core.po +++ b/l10n/de_AT/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_AT/files.po b/l10n/de_AT/files.po index b94533507c4..ad4b0c8e35b 100644 --- a/l10n/de_AT/files.po +++ b/l10n/de_AT/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_AT/files_external.po b/l10n/de_AT/files_external.po index 352e1de6fc4..ba724cd1f5d 100644 --- a/l10n/de_AT/files_external.po +++ b/l10n/de_AT/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_AT/files_trashbin.po b/l10n/de_AT/files_trashbin.po index 595d82ab27a..3514ed4a992 100644 --- a/l10n/de_AT/files_trashbin.po +++ b/l10n/de_AT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_AT/lib.po b/l10n/de_AT/lib.po index 3354e29d7f0..785be59c5f8 100644 --- a/l10n/de_AT/lib.po +++ b/l10n/de_AT/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/de_AT/settings.po b/l10n/de_AT/settings.po index 05a2cc02c26..43cb47f7300 100644 --- a/l10n/de_AT/settings.po +++ b/l10n/de_AT/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index 67d89ea8a33..cd9fda5c330 100644 --- a/l10n/de_CH/core.po +++ b/l10n/de_CH/core.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po index 7c1fc8ea04b..a72e265a80f 100644 --- a/l10n/de_CH/files.po +++ b/l10n/de_CH/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_CH/files_external.po b/l10n/de_CH/files_external.po index 847d3b81e85..29a3462aecb 100644 --- a/l10n/de_CH/files_external.po +++ b/l10n/de_CH/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_CH/files_trashbin.po b/l10n/de_CH/files_trashbin.po index 3baaea27a66..a87d0964bfc 100644 --- a/l10n/de_CH/files_trashbin.po +++ b/l10n/de_CH/files_trashbin.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_CH/lib.po b/l10n/de_CH/lib.po index d8eee0994cf..ecfa663eff4 100644 --- a/l10n/de_CH/lib.po +++ b/l10n/de_CH/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -43,11 +43,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -340,68 +340,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/de_CH/settings.po b/l10n/de_CH/settings.po index ad17a5a284e..5d6f2857813 100644 --- a/l10n/de_CH/settings.po +++ b/l10n/de_CH/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 11e992ce218..03a926ea658 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index a63223ccd36..3f26b3800bd 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 919c1050b4a..9a10d4eea67 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 2a1324dd605..c42477f5471 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 583df78415c..26437a9ffe9 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -45,11 +45,11 @@ msgid "" "config directory%s." msgstr "Dies kann normalerweise repariert werden, indem dem Webserver %s Schreibzugriff auf das config-Verzeichnis %s gegeben wird." -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "Beispielkonfiguration gefunden" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -342,68 +342,68 @@ msgstr "Freigabe von %s fehlgeschlagen, da das Teilen von Verknüpfungen nicht e msgid "Share type %s is not valid for %s" msgstr "Freigabetyp %s ist nicht gültig für %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da die Berechtigungen, die erteilten Berechtigungen %s überschreiten" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da das Objekt nicht gefunden wurde" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Ablaufdatum kann nicht gesetzt werden. Freigaben können nach dem Teilen, nicht länger als %s gültig sein." -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Ablaufdatum kann nicht gesetzt werden. Ablaufdatum liegt in der Vergangenheit." -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Freigabe-Backend %s nicht gefunden" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Freigabe-Backend für %s nicht gefunden" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Freigabe von %s fehlgeschlagen, da der Nutzer %s der offizielle Freigeber ist" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Freigabe von %s fehlgeschlagen, da die Berechtigungen die erteilten Berechtigungen %s überschreiten" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Freigabe von %s fehlgeschlagen, da das nochmalige Freigeben einer Freigabe nicht erlaubt ist" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Freigabe von %s fehlgeschlagen, da das Freigabe-Backend für %s nicht in dieser Quelle gefunden werden konnte" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 9bafd3f68bc..2105b8fa96e 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 6185c4b561a..05fee4a172b 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: evigiannakou \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files.po b/l10n/el/files.po index a17980550ba..d99b61d43d6 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: evigiannakou \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index 8eefe71e485..23e113e4152 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index ab687db6065..e194855f47c 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: Vassilis Kehayas \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index bd4bc752f50..765af3eb879 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: evigiannakou \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -47,11 +47,11 @@ msgid "" "config directory%s." msgstr "Αυτό μπορεί συνήθως να διορθωθεί %sπαρέχοντας δικαιώματα εγγραφής για το φάκελο config στο διακομιστή δικτύου%s." -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "Ανιχνεύθηκε δείγμα εγκατάστασης" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -344,68 +344,68 @@ msgstr "Ο διαμοιρασμός του %s απέτυχε, γιατί δεν msgid "Share type %s is not valid for %s" msgstr "Ο τύπος διαμοιρασμού %s δεν είναι έγκυρος για το %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Ο ορισμός δικαιωμάτων για το %s απέτυχε, γιατί τα δικαιώματα υπερτερούν αυτά που είναι ορισμένα για το %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Ο ορισμός δικαιωμάτων για το %s απέτυχε, γιατί το αντικείμενο δεν βρέθηκε" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Δεν μπορεί να οριστεί ημερομηνία λήξης. Οι κοινοποιήσεις δεν μπορεί να λήγουν αργότερα από %s αφού έχουν διαμοιραστεί." -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Δεν μπορεί να οριστεί ημερομηνία λήξης. Η ημερομηνία λήξης είναι στο παρελθόν" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Το σύστημα διαμοιρασμού %s πρέπει να υλοποιεί την διεπαφή OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Το σύστημα διαμοιρασμού %s δεν βρέθηκε" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Το σύστημα διαμοιρασμού για το %s δεν βρέθηκε" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Ο διαμοιρασμός του %s απέτυχε, γιατί το αντικείμενο είναι διαμοιρασμένο αρχικά από τον χρήστη %s" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Ο διαμοιρασμός του %s απέτυχε, γιατί τα δικαιώματα υπερτερούν αυτά που είναι ορισμένα για το %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Ο διαμοιρασμός του %s απέτυχε, γιατί δεν επιτρέπεται ο επαναδιαμοιρασμός" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Ο διαμοιρασμός του %s απέτυχε, γιατί δεν ήταν δυνατό να εντοπίσει την πηγή το σύστημα διαμοιρασμού για το %s " -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index d5622fe93a9..666e3e37960 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: evigiannakou \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po index a4dc5cb3f0f..e12e22a3e4c 100644 --- a/l10n/en_GB/core.po +++ b/l10n/en_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-27 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 14:11+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: Darren Richardson \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index 916468c09c7..0bdd86adf9d 100644 --- a/l10n/en_GB/files.po +++ b/l10n/en_GB/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en_GB/files_external.po b/l10n/en_GB/files_external.po index 476ee140e2e..df3019b87ea 100644 --- a/l10n/en_GB/files_external.po +++ b/l10n/en_GB/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en_GB/files_trashbin.po b/l10n/en_GB/files_trashbin.po index 0f9e3d680b1..64d275d9e5e 100644 --- a/l10n/en_GB/files_trashbin.po +++ b/l10n/en_GB/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en_GB/lib.po b/l10n/en_GB/lib.po index 80508121d3f..ae4a6e5d2a1 100644 --- a/l10n/en_GB/lib.po +++ b/l10n/en_GB/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgid "" "config directory%s." msgstr "This can usually be fixed by %sgiving the webserver write access to the config directory%s." -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "Sample configuration detected" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -337,68 +337,68 @@ msgstr "Sharing %s failed, because sharing with links is not allowed" msgid "Share type %s is not valid for %s" msgstr "Share type %s is not valid for %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Setting permissions for %s failed, because the item was not found" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Cannot set expiry date. Shares cannot expire later than %s after they have been shared" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Cannot set expiry date. Expiry date is in the past" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Sharing backend %s must implement the interface OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Sharing backend %s not found" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Sharing backend for %s not found" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Sharing %s failed, because the user %s is the original sharer" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Sharing %s failed, because the permissions exceed permissions granted to %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Sharing %s failed, because resharing is not allowed" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Sharing %s failed, because the sharing backend for %s could not find its source" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index 403f9f4b40b..4da459f2715 100644 --- a/l10n/en_GB/settings.po +++ b/l10n/en_GB/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-27 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 14:11+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: Darren Richardson \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 9364e6d5938..8a7e167a1db 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 81893ef1040..e3ac0ebec23 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index e88586093f3..e24c2e14ae9 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index 9ba340f10ef..e13ba9ef4c7 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index c7679455ae8..d9ca3108e21 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -40,11 +40,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -337,68 +337,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index b5c0b7aae08..537048a3766 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/core.po b/l10n/es/core.po index cef9baccfce..11d99c25239 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -33,8 +33,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: Artopal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files.po b/l10n/es/files.po index 3eae55d7682..34d50e568aa 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index d666bdb13d5..7b688b0ab51 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: victormce \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 493cbc6a62c..19a4a157ff2 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index fc3b5eb52a1..a0863ee19d8 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -53,11 +53,11 @@ msgid "" "config directory%s." msgstr "Esto puede ser facilmente solucionado, %sdando permisos de escritura al directorio de configuración en el servidor Web%s." -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "Ejemplo de configuración detectado" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -350,68 +350,68 @@ msgstr "Compartiendo %s ha fallado, ya que compartir con enlaces no está permit msgid "Share type %s is not valid for %s" msgstr "Compartir tipo %s no es válido para %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Configuración de permisos para %s ha fallado, ya que los permisos superan los permisos dados a %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Configuración de permisos para %s ha fallado, ya que el elemento no fue encontrado" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "No se puede fijar fecha de caducidad. Archivos compartidos no pueden caducar luego de %s de ser compartidos" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "No se puede fijar la fecha de caducidad. La fecha de caducidad está en el pasado." -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "El motor compartido %s debe implementar la interfaz OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "El motor compartido %s no se ha encontrado" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Motor compartido para %s no encontrado" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Compartiendo %s ha fallado, ya que el usuario %s es el compartidor original" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Compartiendo %s ha fallado, ya que los permisos superan los permisos otorgados a %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Compartiendo %s ha fallado, ya que volver a compartir no está permitido" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Compartir %s falló porque el motor compartido para %s podría no encontrar su origen" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index f4388bc1e10..6b412afb5c1 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -25,8 +25,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: Artopal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index f82a3368569..2f48cfb3e26 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 9afcab0c723..2a5573de6c8 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index e6e93fdb807..5f4c007cb0e 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 06bd3a68e5a..6dc165bcb50 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index ce9dc28282d..32bbf594e10 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -41,11 +41,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -338,68 +338,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 20c7ff0360f..2ad7df69b00 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_CL/core.po b/l10n/es_CL/core.po index 91d9dce5966..e9f154c98ca 100644 --- a/l10n/es_CL/core.po +++ b/l10n/es_CL/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_CL/lib.po b/l10n/es_CL/lib.po index 9bd3b1de8cc..d6d8e375a5e 100644 --- a/l10n/es_CL/lib.po +++ b/l10n/es_CL/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgid "" "config directory%s." msgstr "Generalmente esto se puede resolver %s otorgando permisos de escritura al servidor web en la carpeta configurada %s" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -337,68 +337,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/es_MX/core.po b/l10n/es_MX/core.po index 4cc11e0c999..8c7400a0abb 100644 --- a/l10n/es_MX/core.po +++ b/l10n/es_MX/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_MX/files.po b/l10n/es_MX/files.po index 3bc43ae113c..a74989e5770 100644 --- a/l10n/es_MX/files.po +++ b/l10n/es_MX/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_MX/files_external.po b/l10n/es_MX/files_external.po index b42fd410876..b45935f11a3 100644 --- a/l10n/es_MX/files_external.po +++ b/l10n/es_MX/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_MX/files_trashbin.po b/l10n/es_MX/files_trashbin.po index 9e66945120d..b541f5f6068 100644 --- a/l10n/es_MX/files_trashbin.po +++ b/l10n/es_MX/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_MX/lib.po b/l10n/es_MX/lib.po index d98f69731f4..51b783d7494 100644 --- a/l10n/es_MX/lib.po +++ b/l10n/es_MX/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/es_MX/settings.po b/l10n/es_MX/settings.po index 148a7af414a..e100e8e8810 100644 --- a/l10n/es_MX/settings.po +++ b/l10n/es_MX/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 9055d0f1499..a9e83e16b03 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 5c86e1e980e..5e98dd3aefd 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 8365986b82c..e096a9a4295 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 125e954dce8..e19799f531d 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 162d1f1b1d0..0537e045f2a 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -41,11 +41,11 @@ msgid "" "config directory%s." msgstr "Tavaliselt saab selle lahendada %s andes veebiserverile seadete kataloogile \"config\" kirjutusõigused %s" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -338,68 +338,68 @@ msgstr "%s jagamine ebaõnnestus, kuna linkidega jagamine pole lubatud" msgid "Share type %s is not valid for %s" msgstr "Jagamise tüüp %s ei ole õige %s jaoks" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Lubade seadistus %s jaoks ebaõnnestus, kuna antud õigused ületavad %s jaoks määratud õigusi" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Lubade seadistus %s jaoks ebaõnnestus, kuna üksust ei leitud" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Jagamise tagarakend %s peab kasutusele võtma OCP\\Share_Backend liidese" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Jagamise tagarakendit %s ei leitud" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Jagamise tagarakendit %s jaoks ei leitud" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "%s jagamine ebaõnnestus, kuna kasutaja %s on algne jagaja" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "%s jagamine ebaõnnestus, kuna antud õigused ületavad %s jaoks määratud õigusi" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "%s jagamine ebaõnnestus, kuna edasijagamine pole lubatud" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "%s jagamine ebaõnnestus, kuna jagamise tagarakend ei suutnud leida %s jaoks lähteallikat" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 409c435c27a..b14c1a59c07 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index e111fa2e0fe..eae61170a2d 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: Alexander Gabilondo \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index db98adcd384..bc379c250e5 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index b75324283c5..480f75f28b2 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 94c4ac37364..629328b9866 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index d4f36f87e42..47c1b4b06b0 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -43,11 +43,11 @@ msgid "" "config directory%s." msgstr "Hau normalean konpondu daiteke %sweb zerbitzarira config karpetan idazteko baimenak emanez%s." -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "Adibide-ezarpena detektatua" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -340,68 +340,68 @@ msgstr "%s elkarbanatzeak huts egin du, lotura bidezko elkarbanatzea baimendua e msgid "Share type %s is not valid for %s" msgstr "%s elkarbanaketa mota ez da %srentzako egokia" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "%srentzako baimenak ezartzea huts egin du, baimenak %sri emandakoak baino gehiago direlako" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "%srentzako baimenak ezartzea huts egin du, aurkitu ez delako" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Ezin izan da jarri iraungitze data. Konpartitzea ezin da iraungi konpartitu eta %s ondoren." -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Ezin da jarri iraungitze data. Iraungitze data iragan da." -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "%s elkarbanaketa motorra OCP\\Share_Backend interfazea inplementatu behar du " -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Ez da %s elkarbanaketa motorra aurkitu" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Ez da %srako elkarbanaketa motorrik aurkitu" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "%s elkarbanatzeak huts egin du, %s erabiltzailea jatorrizko elkarbanatzailea delako" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "%s elkarbanatzeak huts egin du, baimenak %sri emandakoak baino gehiago direlako" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "%s elkarbanatzeak huts egin du, ber-elkarbanatzea baimenduta ez dagoelako" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "%s elkarbanatzeak huts egin du, %sren elkarbanaketa motorrak bere iturria aurkitu ezin duelako" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index c4881c7ae05..c6f64820b61 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: Alexander Gabilondo \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu_ES/core.po b/l10n/eu_ES/core.po index e519f22d6c3..84f46882fab 100644 --- a/l10n/eu_ES/core.po +++ b/l10n/eu_ES/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05: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" diff --git a/l10n/eu_ES/files.po b/l10n/eu_ES/files.po index de4575d300f..4624a43ed92 100644 --- a/l10n/eu_ES/files.po +++ b/l10n/eu_ES/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05: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" diff --git a/l10n/eu_ES/files_external.po b/l10n/eu_ES/files_external.po index 7f664ba6eb4..97c8dc39d10 100644 --- a/l10n/eu_ES/files_external.po +++ b/l10n/eu_ES/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05: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" diff --git a/l10n/eu_ES/files_trashbin.po b/l10n/eu_ES/files_trashbin.po index 818729e19d1..92254ba75e2 100644 --- a/l10n/eu_ES/files_trashbin.po +++ b/l10n/eu_ES/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05: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" diff --git a/l10n/eu_ES/settings.po b/l10n/eu_ES/settings.po index c477acaaf77..05131b6805f 100644 --- a/l10n/eu_ES/settings.po +++ b/l10n/eu_ES/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05: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" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 86f4fd0e97e..b9fd6566723 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 8fba1e279a3..e39bb28d237 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index 5883aafc325..a77bd02d834 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 13a46e9d4f0..7d9a3734bc2 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: Mohammad \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index fa766108666..92b66aac18d 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -40,11 +40,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -337,68 +337,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index dce70d0b1a1..16dd9833401 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index e59047eb705..c30d70af04f 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: ioxo \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index b888f23acab..3e3a996403e 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index eaed682d910..07112194f88 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index c4628a9da2e..8816fa1f042 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 5d986184b19..41695272777 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -40,11 +40,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -337,68 +337,68 @@ msgstr "Kohteen %s jakaminen epäonnistui, koska jakaminen linkkejä käyttäen msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Kohteen %s oikeuksien asettaminen epäonnistui, koska kohdetta ei löytynyt" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Vanhentumispäivää ei voi asettaa. Vanhentumispäivä on jo mennyt" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Jakamisen taustaosaa %s ei löytynyt" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Jakamisen taustaosaa kohteelle %s ei löytynyt" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Kohteen %s jakaminen epäonnistui, koska käyttäjä %s on alkuperäinen jakaja" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Kohteen %s jakaminen epäonnistui, koska jakaminen uudelleen ei ole sallittu" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index c2c8ea3d218..2fc45c679bf 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 981e0daaa9d..71049ddbc26 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index ca15d9b75cd..2b2b6d031b9 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index bce8367a1d5..f981717e94c 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index 1b79f570f91..bbec2be92fe 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index c1a2bc78954..ebc3008515a 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -49,11 +49,11 @@ msgid "" "config directory%s." msgstr "Ce problème est généralement résolu %sen donnant au serveur web un accès en écriture au répertoire de configuration%s." -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -346,68 +346,68 @@ msgstr "Le partage de %s a échoué car un partage de lien n'est pas permis" msgid "Share type %s is not valid for %s" msgstr "Le type de partage %s n'est pas valide pour %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Le réglage des permissions pour %s a échoué car les permissions dépassent celle accordée à %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Le réglage des permissions pour %s a échoué car l'objet n'a pas été trouvé" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Impossible de configurer la date d'expiration. Un partage ne peut expirer plus de %s après sa date de début." -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Impossible de configurer la date d'expiration. La date d'expiration est dans le passé." -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "L'emplacement du partage %s doit implémenter l'interface OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Emplacement de partage %s introuvable" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "L'emplacement du partage %s est introuvable" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Le partage de %s a échoué car l'utilisateur %s est déjà l'utilisateur à l'origine du partage." -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Le partage de %s a échoué car les permissions dépassent les permissions accordées à %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Le partage de %s a échoué car le repartage n'est pas autorisé" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Le partage %s a échoué parce que la source n'a été trouvée pour le partage %s." -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index d12e561a5da..7155fb5646d 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -23,8 +23,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 61de74774f4..42734c447ee 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 9e2637a567c..5f3dbf0f4ce 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index cfb1822e3d4..cc56824e5b6 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: Miguel Anxo Bouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index b837ffaf535..0210cefb710 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: Miguel Anxo Bouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index e8343e1aa15..9c67c5c70b4 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -41,11 +41,11 @@ msgid "" "config directory%s." msgstr "Polo xeral, isto pode ser fixado para %spermitirlle ao servidor web acceso de escritura ao directorio «config»%s." -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -338,68 +338,68 @@ msgstr "Fallou a compartición de %s, non está permitido compartir con ligazón msgid "Share type %s is not valid for %s" msgstr "Non se admite a compartición do tipo %s para %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Non é posíbel estabelecer permisos para %s, os permisos superan os permisos concedidos a %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Non é posíbel estabelecer permisos para %s, non se atopa o elemento" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Non é posíbel estabelecer a data de caducidade. As comparticións non poden caducar máis aló de %s após de seren compartidas" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Non é posíbel estabelecer a data de caducidade. A data de caducidade está no pasado." -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "A infraestrutura de compartición %s ten que implementar a interface OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Non se atopou a infraestrutura de compartición %s" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Non se atopou a infraestrutura de compartición para %s" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Fallou a compartición de %s, a compartición orixinal é do usuario %s" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Fallou a compartición de %s, os permisos superan os permisos concedidos a %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Fallou a compartición de %s, non está permitido repetir a compartción" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Fallou a compartición de %s, a infraestrutura de compartición para %s non foi quen de atopar a orixe" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index faf9d64bd43..f106d8528a2 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index 38a852909c6..6cba56e60ee 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -388,7 +388,7 @@ msgstr "" #: js/share.js:389 msgid "Share link" -msgstr "" +msgstr "קישור לשיתוף" #: js/share.js:394 msgid "" diff --git a/l10n/he/files.po b/l10n/he/files.po index 99cd7af9288..47685c6b92f 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -381,7 +381,7 @@ msgstr "קובץ טקסט" #: templates/list.php:12 msgid "New folder" -msgstr "" +msgstr "תיקייה חדשה" #: templates/list.php:13 msgid "Folder" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index ab067d22ac9..3667c795159 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index c9223a048c2..5e4ca536253 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 45c91ae47c7..78688230bc6 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index a0ebb9d257d..dd916f1b7fc 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 403d9074eb3..d4f42e73e6c 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 90cd5dfefb4..ddbf03f99d0 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index c22b471e948..466995a1083 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index f97ca7798b2..9ccb8b78f19 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 466a7a766c7..43e046e0568 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index 221ff40f15f..2f900913b89 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: Dubravko Penezic \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 252ce6d1463..5d806fda3f8 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 777e5738f70..36c2b650168 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 17c04d6b144..c26f812c8b9 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 78bbe5c83a8..9e78931a09a 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 16df0c81030..1d198e814ee 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -77,12 +77,12 @@ msgstr "A kiinduló állomány érvénytelen" #: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" -msgstr "A kiszolgálón nincs engedélyezve URL-ek megnyitása, kérem ellenőrizze a beállításokat" +msgstr "A kiszolgálón nincs engedélyezve URL-ek megnyitása, kérem ellenőrizze a beállításokat!" #: ajax/newfile.php:126 #, php-format msgid "The file exceeds your quota by %s" -msgstr "A fájl meghaladja kvótádat %s-kal" +msgstr "A fájl ennyivel meghaladja a kvótáját: %s" #: ajax/newfile.php:141 #, php-format @@ -107,7 +107,7 @@ msgstr "Nem található a mappa, ahova feltölteni szeretne." #: ajax/upload.php:35 msgid "Invalid Token" -msgstr "Hibás mappacím" +msgstr "Hibás token" #: ajax/upload.php:79 msgid "No file was uploaded. Unknown error" @@ -162,7 +162,7 @@ msgstr "Érvénytelen mappa." #: appinfo/app.php:11 js/filelist.js:25 msgid "Files" -msgstr "Fájlok" +msgstr "Fájlkezelő" #: appinfo/app.php:27 msgid "All files" @@ -187,7 +187,7 @@ msgstr "A feltöltést megszakítottuk." #: js/file-upload.js:418 msgid "Could not get result from server." -msgstr "A kiszolgálótól nem kapható meg az eredmény." +msgstr "A kiszolgálótól nem kapható meg a művelet eredménye." #: js/file-upload.js:502 msgid "" @@ -375,7 +375,7 @@ msgstr "Új" #: templates/list.php:8 msgid "New text file" -msgstr "Új szöveges file" +msgstr "Új szövegfájl" #: templates/list.php:9 msgid "Text file" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index f1635fe0acd..0ccbe49e8d1 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index a119ac0eb4c..80375c4533c 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index fa7e9df7635..c60b33a8e65 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -6,14 +6,14 @@ # beni1999 , 2014 # David Szilagyi , 2013 # ebela , 2013 -# Laszlo Tornoci , 2013 +# Laszlo Tornoci , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,30 +29,30 @@ msgstr "Nem írható a \"config\" könyvtár!" msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" -msgstr "" +msgstr "Ez rendszerint úgy oldható meg, hogy írási jogot adunk a webszervernek a config könyvtárra." #: base.php:203 #, php-format msgid "See %s" -msgstr "" +msgstr "Lásd %s" #: base.php:208 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." -msgstr "" +msgstr "Ez rendszerint úgy oldható meg, hogy %sírási jogot adunk a webszervernek a config könyvtárra%s." -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" -msgstr "" +msgstr "A példabeállítások vannak beállítva" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " "before performing changes on config.php" -msgstr "" +msgstr "Úgy tűnik a példakonfigurációt próbálja ténylegesen használni. Ez nem támogatott, és működésképtelenné teheti a telepítést. Kérjük olvassa el a dokumentációt és azt követően változtasson a config.php-n!" #: private/app.php:374 msgid "Help" @@ -79,7 +79,7 @@ msgstr "Adminsztráció" msgid "" "App \\\"%s\\\" can't be installed because it is not compatible with this " "version of ownCloud." -msgstr "" +msgstr " \\\"%s\\\" alkalmazás nem telepíthető, mert nem kompatibilis az ownCloud jelen változatával." #: private/app.php:1130 msgid "No app name specified" @@ -104,7 +104,7 @@ msgstr "Az alkalmazás mappája már létezik" #: private/installer.php:90 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "Nem lehetett létrehozni az alkalmzás mappáját. Kérlek ellenőrizd a jogosultásgokat. %s" +msgstr "Nem lehetett létrehozni az alkalmazás mappáját. Kérem ellenőrizze a jogosultságokat. %s" #: private/installer.php:235 msgid "No source specified when installing app" @@ -139,7 +139,7 @@ msgstr "Az alkalmazást nem lehet telepíteni, mert abban nem engedélyezett pro msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" -msgstr "Az alalmazás nem telepíthető, mert nem kompatibilis az ownClod ezzel a verziójával." +msgstr "Az alkalmazás nem telepíthető, mert nem kompatibilis az ownCloud jelen verziójával." #: private/installer.php:326 msgid "" @@ -151,7 +151,7 @@ msgstr "Az alkalmazást nem lehet telepíteni, mert tartalmazza a \n\nt msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" -msgstr "Az alkalmazást nem lehet telepíteni, mert az info.xml/version-ben megadott verzió nem egyezik az alkalmazás-áruházban feltüntetett verzióval." +msgstr "Az alkalmazást nem lehet telepíteni, mert az info.xml/version-ben megadott verzió nem egyezik az alkalmazás-kiszolgálón feltüntetett verzióval." #: private/json.php:29 msgid "Application is not enabled" @@ -197,7 +197,7 @@ msgstr "Vagy egy létező felhasználó vagy az adminisztrátor bejelentkezési #: private/setup/mysql.php:12 msgid "MySQL/MariaDB username and/or password not valid" -msgstr "" +msgstr "A MySQL/MariaDB felhasználónév és/vagy jelszó nem megfelelő" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -225,20 +225,20 @@ msgstr "A hibát ez a parancs okozta: \"%s\"" #: private/setup/mysql.php:85 #, php-format msgid "MySQL/MariaDB user '%s'@'localhost' exists already." -msgstr "" +msgstr "A MySQL/MariaDB felhasználó '%s'@'localhost' már létezik." #: private/setup/mysql.php:86 msgid "Drop this user from MySQL/MariaDB" -msgstr "" +msgstr "Töröljük ez a felhasználót a MySQL/MariaDB-rendszerből" #: private/setup/mysql.php:91 #, php-format msgid "MySQL/MariaDB user '%s'@'%%' already exists" -msgstr "" +msgstr "A MySQL/MariaDB felhasználó '%s'@'%%' már létezik." #: private/setup/mysql.php:92 msgid "Drop this user from MySQL/MariaDB." -msgstr "" +msgstr "Töröljük ez a felhasználót a MySQL/MariaDB-rendszerből." #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -290,122 +290,122 @@ msgstr "%s megosztása sikertelen, mert a fájl nem létezik" #: private/share/share.php:501 #, php-format msgid "You are not allowed to share %s" -msgstr "" +msgstr "Önnek nincs jogosultsága %s megosztására" #: private/share/share.php:531 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" -msgstr "" +msgstr "%s megosztása nem sikerült, mert %s felhasználó az állomány tulajdonosa" #: private/share/share.php:537 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "%s megosztása nem sikerült, mert %s felhasználó nem létezik" #: private/share/share.php:546 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "%s megosztása nem sikerült, mert %s felhasználó nem tagja egyik olyan csoportnak sem, aminek %s tagja" #: private/share/share.php:559 private/share/share.php:587 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "%s megosztása nem sikerült, mert ez már meg van osztva %s-vel" #: private/share/share.php:567 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "%s megosztása nem sikerült, mert %s csoport nem létezik" #: private/share/share.php:574 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "%s megosztása nem sikerült, mert %s felhasználó nem tagja a %s csoportnak" #: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" -msgstr "" +msgstr "Meg kell adnia egy jelszót is, mert a nyilvános linkek csak jelszóval védetten használhatók" #: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "%s megosztása nem sikerült, mert a linkekkel történő megosztás nincs engedélyezve" #: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "A %s megosztási típus nem érvényes %s-re" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" -msgstr "" +msgstr "Nem sikerült %s-re beállítani az elérési jogosultságokat, mert a megadottak túllépik a %s-re érvényes jogosultságokat" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" -msgstr "" +msgstr "Nem sikerült %s-re beállítani az elérési jogosultságokat, mert a kérdéses állomány nem található" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" -msgstr "" +msgstr "Nem lehet beállítani a lejárati időt. A megosztások legfeljebb ennyi idővel járhatnak le a létrehozásukat követően: %s" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" -msgstr "Nem lehet beállítani a lejárati időt mivel már elmúlt." +msgstr "Nem lehet beállítani a lejárati időt, mivel a megadott lejárati időpont már elmúlt." -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" -msgstr "" +msgstr "Az %s megosztási alrendszernek támogatnia kell az OCP\\Share_Backend interface-t" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" -msgstr "" +msgstr "A %s megosztási alrendszer nem található" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" -msgstr "" +msgstr "%s megosztási alrendszere nem található" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "" +msgstr "%s megosztása nem sikerült, mert %s felhasználó az eredeti megosztó" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "" +msgstr "%s megosztása nem sikerült, mert a jogosultságok túllépik azt, ami %s rendelkezésére áll" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "" +msgstr "%s megosztása nem sikerült, mert a megosztás továbbadása nincs engedélyezve" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" -msgstr "" +msgstr "%s megosztása nem sikerült, mert %s megosztási alrendszere nem találja" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "%s megosztása nem sikerült, mert a fájl nem található a gyorsítótárban" #: private/tags.php:183 #, php-format @@ -464,7 +464,7 @@ msgstr "több éve" msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" -msgstr "" +msgstr "A felhasználónévben csak a következő karakterek fordulhatnak elő: \"a-z\", \"A-Z\", \"0-9\", és \"_.@-\"" #: private/user/manager.php:249 msgid "A valid username must be provided" @@ -480,14 +480,14 @@ msgstr "Ez a bejelentkezési név már foglalt" #: private/util.php:427 msgid "No database drivers (sqlite, mysql, or postgresql) installed." -msgstr "" +msgstr "Nincs telepítve adatbázis-meghajtóprogram (sqlite, mysql vagy postgresql)." #: private/util.php:434 #, php-format msgid "" "Permissions can usually be fixed by %sgiving the webserver write access to " "the root directory%s." -msgstr "" +msgstr "Az elérési problémák rendszerint megoldhatók azzal, ha a %swebszervernek írásjogot adunk a gyökérkönyvtárra%s." #: private/util.php:441 msgid "Cannot write into \"config\" directory" @@ -495,41 +495,41 @@ msgstr "Nem írható a \"config\" könyvtár" #: private/util.php:455 msgid "Cannot write into \"apps\" directory" -msgstr "" +msgstr "Nem írható az \"apps\" könyvtár" #: private/util.php:456 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the apps" " directory%s or disabling the appstore in the config file." -msgstr "" +msgstr "Ez rendszerint úgy oldható meg, hogy %sírási jogot adunk a webszervernek az app könyvtárra%s, vagy letiltjuk a config fájlban az appstore használatát." #: private/util.php:470 #, php-format msgid "Cannot create \"data\" directory (%s)" -msgstr "" +msgstr "Nem sikerült létrehozni a \"data\" könyvtárt (%s)" #: private/util.php:471 #, php-format msgid "" "This can usually be fixed by giving the " "webserver write access to the root directory." -msgstr "" +msgstr "Ez rendszerint úgy oldható meg, hogy írásjogot adunk a webszervernek a gyökérkönyvtárra." #: private/util.php:487 #, php-format msgid "Setting locale to %s failed" -msgstr "" +msgstr "A lokalizáció %s-re való állítása nem sikerült" #: private/util.php:490 msgid "" "Please install one of these locales on your system and restart your " "webserver." -msgstr "" +msgstr "Kérjük állítsa be a következő lokalizációk valamelyikét a rendszeren és indítsa újra a webszervert!" #: private/util.php:494 msgid "Please ask your server administrator to install the module." -msgstr "" +msgstr "Kérje meg a rendszergazdát, hogy telepítse a modult!" #: private/util.php:498 private/util.php:505 private/util.php:512 #: private/util.php:526 private/util.php:533 private/util.php:540 @@ -537,94 +537,94 @@ msgstr "" #: private/util.php:576 #, php-format msgid "PHP module %s not installed." -msgstr "" +msgstr "A %s PHP modul nincs telepítve." #: private/util.php:568 #, php-format msgid "PHP %s or higher is required." -msgstr "" +msgstr "PHP %s vagy ennél újabb szükséges." #: private/util.php:569 msgid "" "Please ask your server administrator to update PHP to the latest version. " "Your PHP version is no longer supported by ownCloud and the PHP community." -msgstr "" +msgstr "Kérje meg a rendszergazdát, hogy frissítse a PHP-t újabb változatra! Ezt a PHP változatot már nem támogatja az ownCloud és a PHP fejlesztői közösség." #: private/util.php:587 msgid "" "PHP Safe Mode is enabled. ownCloud requires that it is disabled to work " "properly." -msgstr "" +msgstr "Be van állítva a PHP Safe Mode. Az ownCloud megfelelő működéséhez szükséges, hogy ez ki legyen kapcsolva." #: private/util.php:588 msgid "" "PHP Safe Mode is a deprecated and mostly useless setting that should be " "disabled. Please ask your server administrator to disable it in php.ini or " "in your webserver config." -msgstr "" +msgstr "A PHP Safe Mode egy régi, már nem támogatott és haszontalan üzemmód, amit érdemes letiltani. Kérje meg a rendszergazdát, hogy tiltsa le vagy a php.ini-ben, vagy a webszerver beállításokban!" #: private/util.php:595 msgid "" "Magic Quotes is enabled. ownCloud requires that it is disabled to work " "properly." -msgstr "" +msgstr "Be van álltva a Magic Quotes. Az ownCloud megfelelő működéséhez szükséges, hogy ez le legyen tiltva." #: private/util.php:596 msgid "" "Magic Quotes is a deprecated and mostly useless setting that should be " "disabled. Please ask your server administrator to disable it in php.ini or " "in your webserver config." -msgstr "" +msgstr "A Magic Quotes egy régi, már nem támogatott és haszontalan üzemmód, amit érdemes letiltani. Kérje meg a rendszergazdát, hogy tiltsa le vagy a php.ini-ben, vagy a webszerver beállításokban!" #: private/util.php:610 msgid "PHP modules have been installed, but they are still listed as missing?" -msgstr "" +msgstr "A PHP modulok telepítve vannak, de a listában mégsincsenek felsorolva?" #: private/util.php:611 msgid "Please ask your server administrator to restart the web server." -msgstr "" +msgstr "Kérje meg a rendszergazdát, hogy indítsa újra a webszervert!" #: private/util.php:641 msgid "PostgreSQL >= 9 required" -msgstr "" +msgstr "PostgreSQL >= 9 szükséges" #: private/util.php:642 msgid "Please upgrade your database version" -msgstr "Kérlek frissítsd az adatbázisodat" +msgstr "Kérem frissítse az adatbázis-szoftvert!" #: private/util.php:649 msgid "Error occurred while checking PostgreSQL version" -msgstr "" +msgstr "Hiba történt a PostgreSQL verziójának ellenőrzése közben" #: private/util.php:650 msgid "" "Please make sure you have PostgreSQL >= 9 or check the logs for more " "information about the error" -msgstr "" +msgstr "Kérjük gondoskodjon róla, hogy a PostgreSQL legalább 9-es verziójú legyen, vagy ellenőrizze a naplófájlokat, hogy mi okozta a hibát!" #: private/util.php:715 msgid "" "Please change the permissions to 0770 so that the directory cannot be listed" " by other users." -msgstr "" +msgstr "Kérjük módosítsa a könyvtár elérhetőségi engedélybeállítását 0770-re, hogy a tartalmát más felhasználó ne listázhassa!" #: private/util.php:724 #, php-format msgid "Data directory (%s) is readable by other users" -msgstr "" +msgstr "Az adatkönyvtár (%s) más felhasználók számára is olvasható " #: private/util.php:745 #, php-format msgid "Data directory (%s) is invalid" -msgstr "" +msgstr "Érvénytelen a megadott adatkönyvtár (%s) " #: private/util.php:746 msgid "" "Please check that the data directory contains a file \".ocdata\" in its " "root." -msgstr "" +msgstr "Kérjük ellenőrizze, hogy az adatkönyvtár tartalmaz a gyökerében egy \".ocdata\" nevű állományt!" #: public/files/locknotacquiredexception.php:39 #, php-format msgid "Could not obtain lock type %d on \"%s\"." -msgstr "" +msgstr "Nem sikerült %d típusú zárolást elérni itt: \"%s\"." diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 57e1a6a178e..cb7a4fee378 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-27 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 20:51+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index 45a83849b2d..10ccb127d7b 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 5cef6313b61..8cb3ddc381a 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index 6e104fdb6bc..dd07b910a8d 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index 62020400669..2e672ab7655 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 8e01f3d3d6e..8f2bf991f0f 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index f4442a4bb08..f3df3b967b6 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 473aeaa7eba..bdc1b97c88b 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index 11e736d95aa..728b5294863 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index fdf22361db8..8986987a49f 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 3057c78f49c..2d30dd16f43 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index d4b46db7d79..a1f76a583b2 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/core.po b/l10n/id/core.po index 15df8ec9202..e6292c9517a 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files.po b/l10n/id/files.po index 0c9d436a977..15d4524ca69 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 777e4ec6341..f501c3774d8 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index a49e09abda1..4166b14eb97 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 84ba835d2ae..69ba9795808 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 27abd7d33b0..8d7621f9f7f 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/core.po b/l10n/is/core.po index 0cb045898dd..4846bcd613a 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files.po b/l10n/is/files.po index fa9da711ffa..d171a895a71 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index 46edfbde3d5..782af581b3d 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index c5c502ebc46..3f7468bf8ad 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 634162f1be2..f42b25833ef 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 4675ecdd0e1..b79fc8d4eab 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index a64ecd3913f..3358a80ea4d 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files.po b/l10n/it/files.po index ca290206212..01a25daf0ed 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 45a080b6315..54f8d1093aa 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 56befb5bc88..38cce881cd4 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 4f66bb37417..78d72c80501 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -43,11 +43,11 @@ msgid "" "config directory%s." msgstr "Ciò può essere normalmente corretto %sfornendo al server web accesso in scrittura alla cartella \"config\"%s" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "Configurazione di esempio rilevata" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -340,68 +340,68 @@ msgstr "Condivisione di %s non riuscita, poiché i collegamenti non sono consent msgid "Share type %s is not valid for %s" msgstr "Il tipo di condivisione %s non è valido per %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Impostazione permessi per %s non riuscita, poiché i permessi superano i permessi accordati a %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Impostazione permessi per %s non riuscita, poiché l'elemento non è stato trovato" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Impossibile impostare la data di scadenza. Le condivisioni non possono scadere più tardi di %s dalla loro attivazione" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Impossibile impostare la data di scadenza. La data di scadenza è nel passato." -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Il motore di condivisione %s deve implementare l'interfaccia OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Motore di condivisione %s non trovato" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Motore di condivisione di %s non trovato" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Condivisione di %s non riuscita, poiché l'utente %s l'ha condiviso precedentemente" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Condivisione di %s non riuscita, poiché i permessi superano quelli accordati a %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Condivisione di %s non riuscita, poiché la ri-condivisione non è consentita" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Condivisione di %s non riuscita, poiché il motore di condivisione per %s non riesce a trovare la sua fonte" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 9e4558e51dc..1e976a19877 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja/core.po b/l10n/ja/core.po index 219b2e6ec5b..9a11431b2ff 100644 --- a/l10n/ja/core.po +++ b/l10n/ja/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja/files.po b/l10n/ja/files.po index 9b5cfab8bab..38d2ca7894b 100644 --- a/l10n/ja/files.po +++ b/l10n/ja/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja/files_external.po b/l10n/ja/files_external.po index ae45262df88..54e06d8f743 100644 --- a/l10n/ja/files_external.po +++ b/l10n/ja/files_external.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: kuromabo \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja/files_trashbin.po b/l10n/ja/files_trashbin.po index 11246a2fa73..5e6ef7271ba 100644 --- a/l10n/ja/files_trashbin.po +++ b/l10n/ja/files_trashbin.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja/lib.po b/l10n/ja/lib.po index 8aa5235981a..bca97c43025 100644 --- a/l10n/ja/lib.po +++ b/l10n/ja/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -45,11 +45,11 @@ msgid "" "config directory%s." msgstr "多くの場合、これは %s Webサーバーにconfigディレクトリ %s への書き込み権限を与えることで解決できます。" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -342,68 +342,68 @@ msgstr "%s の共有に失敗しました。リンクでの共有は許可され msgid "Share type %s is not valid for %s" msgstr "%s の共有方法は、%s には適用できません。" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "%s の権限設定に失敗しました。%s に許可されている権限を越えています。" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "%s の権限設定に失敗しました。アイテムが存在しません。" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "有効期限を設定できません。共有開始から %s 以降に有効期限を設定することはできません。" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "有効期限を設定できません。有効期限が過去を示しています。" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "%s のバックエンドの共有には、OCP\\Share_Backend インターフェースを実装しなければなりません。" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "共有バックエンド %s が見つかりません" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "%s のための共有バックエンドが見つかりません" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "%s の共有に失敗しました。ユーザー %s が元々の共有者であるからです。" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "%s の共有に失敗しました。%s に付与されている許可を超えているからです。" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "%s の共有に失敗しました。再共有が許されていないからです。" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "%s の共有に失敗しました。%s のバックエンド共有に必要なソースが見つかりませんでした。" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ja/settings.po b/l10n/ja/settings.po index dbf24d3254d..8be2fe114bf 100644 --- a/l10n/ja/settings.po +++ b/l10n/ja/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/jv/files_external.po b/l10n/jv/files_external.po index fa0178903ee..1aede815ad2 100644 --- a/l10n/jv/files_external.po +++ b/l10n/jv/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 4232c8384c2..9bc16ce9b5a 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 4b5512f19c0..ba5a5f6a021 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index fcf042667d4..1aad3c51eea 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 40eff2593bb..ce5675d7a2a 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index a4b15d541b5..fc24469139f 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 5f1768ad995..b8f98a91807 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/km/core.po b/l10n/km/core.po index f57745eec25..ea9321e821a 100644 --- a/l10n/km/core.po +++ b/l10n/km/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/km/files.po b/l10n/km/files.po index b76e9c45c2e..fd00f609e5f 100644 --- a/l10n/km/files.po +++ b/l10n/km/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/km/files_external.po b/l10n/km/files_external.po index e53903bc894..edc98218ee6 100644 --- a/l10n/km/files_external.po +++ b/l10n/km/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/km/files_trashbin.po b/l10n/km/files_trashbin.po index 9e805f34d1c..3d61f74fcae 100644 --- a/l10n/km/files_trashbin.po +++ b/l10n/km/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/km/lib.po b/l10n/km/lib.po index ff908e9b5ca..a02700083d1 100644 --- a/l10n/km/lib.po +++ b/l10n/km/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -41,11 +41,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -338,68 +338,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/km/settings.po b/l10n/km/settings.po index a812321ebaf..1abe64a6438 100644 --- a/l10n/km/settings.po +++ b/l10n/km/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index bebbb4e1144..63e5b142496 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 34fddbcf069..52989994412 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index 33618655be7..13391579288 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 656016e1a78..1e9bafe1871 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index db72d00d478..28fcc3a6a34 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -44,11 +44,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -341,68 +341,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index d5ea2606135..bb66ab9ff6e 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 5501152acc5..89f9bf88e58 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_external.po b/l10n/ku_IQ/files_external.po index 194d83cf735..86c05106493 100644 --- a/l10n/ku_IQ/files_external.po +++ b/l10n/ku_IQ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 1f6bd44c8b5..7f6fd80fbae 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index aa764e54571..9279220122f 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index d7231c5abc2..1efab607942 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index df96eafc1da..334ace31513 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 3154a6af092..d3f4801b3bf 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 0c2d4a009e6..dc6e3fb83d2 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -40,11 +40,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -337,68 +337,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 2d1d08eb351..a96168590dc 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index d248676768a..85b93a10fa2 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 0ee1a994c39..f41bfc346b3 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index 4241b020a14..f48144d2d3c 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 542910084ab..2bf47f184bf 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 067dfac383a..c27cc81e0a7 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -43,11 +43,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -340,68 +340,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 90716c526d9..4890b38624f 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 901ec8a0035..26701c1c867 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index e783738cae6..609243ef151 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index a0f31fe572a..989718a2f12 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 2b94bd713b7..1934c45d750 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 322af2bc534..e963fd111ea 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -40,11 +40,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -337,68 +337,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index b5c32e1dd17..e578391a9c3 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 33a5b0e3451..5179dbeabd9 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 9a8acecd660..d5c7f6106bc 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 4ea5591ecc9..c01f5e6f4ad 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index 17163030875..b707d80a246 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index e10e910d190..9a0bfbe4aed 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -40,11 +40,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -337,68 +337,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 405333207ba..0f31782c373 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index d208cac6e54..7a0b377fe67 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index b8d22c255a7..087628b1728 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index a3dea20f9e8..8fbd6f9a0ca 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index da9fa19798a..35006db6dad 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: ervinnnchai \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index a6ed996a5f6..ccf1cd07e35 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index eada000fe18..a1ea2a6db52 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_external.po b/l10n/my_MM/files_external.po index 2008e49c1c0..27be55cdc57 100644 --- a/l10n/my_MM/files_external.po +++ b/l10n/my_MM/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 33a059ef5cf..6308d36b7fb 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: vidaren \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index cebc0123afb..7b347574006 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: vidaren \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index c15ae419923..ebde36f2881 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index b4d49d1022e..795beaa69dd 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 295ad090bcc..c29b108da4c 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: vidaren \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -41,11 +41,11 @@ msgid "" "config directory%s." msgstr "Dette kan vanligvis ordnes ved %så gi web-serveren skrivetilgang til config-mappen%s." -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "Eksempelkonfigurasjon oppdaget" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -338,68 +338,68 @@ msgstr "Deling av %s feilet, fordi deling med lenker ikke er tillatt" msgid "Share type %s is not valid for %s" msgstr "Delingstype %s er ikke gyldig for %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Setting av tillatelser for %s feilet, fordi tillatelsene gikk ut over tillatelsene som er gitt til %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Setting av tillatelser for %s feilet, fordi elementet ikke ble funnet" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Kan ikke sette utøpsdato. Delinger kan ikke utløpe senere enn %s etter at de har blitt delt" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Kan ikke sette utløpsdato. Utløpsdato er tilbake i tid" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Delings-server %s må implementere grensesnittet OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Delings-server %s ikke funnet" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Delings-server for %s ikke funnet" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Deling av %s feilet, fordi brukeren %s er den opprinnelige eieren" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Deling av %s feilet, fordi tillatelsene går utover tillatelsene som er gitt til %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Deling av %s feilet, fordi videre-deling ikke er tillatt" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Deling av %s feilet, fordi delings-serveren for %s ikke kunne finne kilden" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 118e147396a..9841c28a798 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: vidaren \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 30d8f1ae0f9..481b8402793 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: Koen Willems \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index f7131621f4a..f2fd285a320 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 4d832d85276..15ce6a304d2 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 3f82478a9b8..5e9f66f7ffa 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 6be18730429..9056b655ab3 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -42,11 +42,11 @@ msgid "" "config directory%s." msgstr "Dit kan hersteld worden door de webserver schrijfrechten te %sgeven op de de config directory%s" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "Voorbeeldconfiguratie gevonden" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -339,68 +339,68 @@ msgstr "Delen van %s is mislukt, omdat het delen met links niet is toegestaan" msgid "Share type %s is not valid for %s" msgstr "Delen van type %s is niet geldig voor %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Instellen van de permissies voor %s is mislukt, omdat de permissies hoger zijn dan de aan %s toegekende permissies" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Instellen van de permissies voor %s is mislukt, omdat het object niet is gevonden" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Kon vervaldatum niet instellen. Shares kunnen niet langer dan %s vervallen na het moment van delen" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Kon vervaldatum niet instellen. De vervaldatum ligt in het verleden" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Het share-backend %s moet de OCP\\Share_Backend interface implementeren" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Het share-backend %s is niet gevonden" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Het share-backend voor %s is niet gevonden" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Delen van %s is mislukt, omdat gebruiker %s de originele deler is" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Delen van %s is mislukt, omdat de rechten de aan %s toegekende autorisaties overschrijden" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Delen van %s is mislukt, omdat her-delen niet is toegestaan" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Delen van %s is mislukt, omdat de share-backend voor %s de bron niet kon vinden" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 7f12df179ff..083b7d1adf2 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: Koen Willems \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 4791f63f47f..f2c40f31f3e 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Kevin Brubeck Unhammer , 2013 +# Kevin Brubeck Unhammer , 2013-2014 # brekkjen , 2014 # Kevin Brubeck Unhammer , 2013 # Kevin Brubeck Unhammer , 2013 @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"Last-Translator: Kevin Brubeck Unhammer \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" @@ -245,7 +245,7 @@ msgstr "" #: js/lostpassword.js:10 msgid "I know what I'm doing" -msgstr "" +msgstr "Eg veit kva eg gjer" #: js/lostpassword.js:13 lostpassword/templates/resetpassword.php:9 msgid "Reset password" @@ -329,11 +329,11 @@ msgstr "Klarte ikkje å lasta fil-finst-mal" #: js/setup.js:96 msgid "Very weak password" -msgstr "" +msgstr "Veldig svakt passord" #: js/setup.js:97 msgid "Weak password" -msgstr "" +msgstr "Svakt passord" #: js/setup.js:98 msgid "So-so password" @@ -390,7 +390,7 @@ msgstr "" #: js/share.js:389 msgid "Share link" -msgstr "" +msgstr "Del lenkje" #: js/share.js:394 msgid "" @@ -403,7 +403,7 @@ msgstr "Passordvern" #: js/share.js:400 msgid "Choose a password for the public link" -msgstr "" +msgstr "Vel eit passord for den offentlege lenkja" #: js/share.js:406 msgid "Allow Public Upload" @@ -447,7 +447,7 @@ msgstr "" #: js/share.js:613 msgid "can share" -msgstr "" +msgstr "kan dela" #: js/share.js:616 msgid "can edit" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 1660e0185a2..e2e5a911415 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "" #: ajax/list.php:52 msgid "Unknown error" -msgstr "" +msgstr "Ukjend feil" #: ajax/move.php:15 #, php-format diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index 293ebbe2d57..f715a77d310 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 1883fb6f5bb..ad8cdc45934 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index a3a82153465..4ce735bfcac 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -41,11 +41,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -338,68 +338,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index c9f45165237..9d56f93a2da 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -282,11 +282,11 @@ msgstr "Vel eit profilbilete" #: js/personal.js:287 msgid "Very weak password" -msgstr "" +msgstr "Veldig svakt passord" #: js/personal.js:288 msgid "Weak password" -msgstr "" +msgstr "Svakt passord" #: js/personal.js:289 msgid "So-so password" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 304f807d9ec..20b1c1ddc16 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 299f4c41b42..984c3da5531 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index 6a6a706e6da..c542799b0ad 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 03927ac7e2c..1b6fc20e59c 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index f73b2b0acb9..9efe06d9bfe 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 9c5aeac07ac..ca72fb98518 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pa/core.po b/l10n/pa/core.po index 2d71ea96269..86ddef639b8 100644 --- a/l10n/pa/core.po +++ b/l10n/pa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pa/files.po b/l10n/pa/files.po index c70970293be..421b3c21cec 100644 --- a/l10n/pa/files.po +++ b/l10n/pa/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pa/files_external.po b/l10n/pa/files_external.po index 6e0a828f8fa..65ee2aaf5bf 100644 --- a/l10n/pa/files_external.po +++ b/l10n/pa/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pa/files_trashbin.po b/l10n/pa/files_trashbin.po index c8d65a145f6..3ac5c7f9263 100644 --- a/l10n/pa/files_trashbin.po +++ b/l10n/pa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pa/lib.po b/l10n/pa/lib.po index b1b00e25879..0c7c6a77909 100644 --- a/l10n/pa/lib.po +++ b/l10n/pa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/pa/settings.po b/l10n/pa/settings.po index 723e278275f..65207763e85 100644 --- a/l10n/pa/settings.po +++ b/l10n/pa/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 8a638b08001..d0a62734e1d 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: Maciej Przybecki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index aa1743abcae..888b731ccf5 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: Maciej Przybecki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 912819401e8..17f758cffdc 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: Krzysztof Łojowski \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 2d9c1f41683..967abb4c2d4 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: Maciej Przybecki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index bcef1dcd19f..7132204a8dd 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -46,11 +46,11 @@ msgid "" "config directory%s." msgstr "Można to zwykle rozwiązać przez %sdodanie serwerowi www uprawnień zapisu do katalogu config%s." -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "Wykryto przykładową konfigurację" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -343,68 +343,68 @@ msgstr "Współdzielenie %s nie powiodło się, ponieważ współdzielenie z lin msgid "Share type %s is not valid for %s" msgstr "Typ udziału %s nie jest właściwy dla %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Ustawienie uprawnień dla %s nie powiodło się, ponieważ uprawnienia wykraczają poza przydzielone %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Ustawienie uprawnień dla %s nie powiodło się, ponieważ element nie został znaleziony" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Nie można ustawić daty wygaśnięcia. Udziały nie mogą wygasać później niż %s od momentu udostępnienia" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Nie można ustawić daty wygaśnięcia. Data wygaśnięcia jest w przeszłości." -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Zaplecze do współdzielenia %s musi implementować interfejs OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Zaplecze %s do współdzielenia nie zostało znalezione" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Zaplecze do współdzielenia %s nie zostało znalezione" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Współdzielenie %s nie powiodło się, ponieważ użytkownik %s jest udostępniającym" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Współdzielenie %s nie powiodło się, ponieważ uprawnienia przekraczają te udzielone %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Współdzielenie %s nie powiodło się, ponieważ ponowne współdzielenie nie jest dozwolone" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Współdzielenie %s nie powiodło się, ponieważ zaplecze współdzielenia dla %s nie mogło znaleźć jego źródła" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index d3260c6dd83..270614b3fa2 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: Maciej Przybecki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 5bcb2054b5a..df22b78a56e 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 92506afbad0..baa5648788e 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: dudanogueira \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 758c99aace1..b84c740f4da 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 1f24f771625..690dcaadd5a 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index b9c36c96918..6f5cde2845c 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -41,11 +41,11 @@ msgid "" "config directory%s." msgstr "Isso geralmente pode ser corrigido dando permissão de gravação %sgiving ao webserver para o directory%s de configuração." -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "Exemplo de configuração detectada" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -338,68 +338,68 @@ msgstr "Compartilhamento %s falhou, porque compartilhamento com links não é pe msgid "Share type %s is not valid for %s" msgstr "Tipo de compartilhamento %s não é válido para %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Definir permissões para %s falhou, porque as permissões excedem as permissões concedidas a %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Definir permissões para %s falhou, porque o item não foi encontrado" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Não é possível definir a data de expiração. Compartilhamentos não podem expirar mais tarde que %s depois de terem sido compartilhados" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Não é possível definir a data de validade. Data de expiração está no passado" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Compartilhando backend %s deve implementar a interface OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Compartilhamento backend %s não encontrado" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Compartilhamento backend para %s não encontrado" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Compartilhando %s falhou, porque o usuário %s é o compartilhador original" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Compartilhamento %s falhou, porque as permissões excedem as permissões concedidas a %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Compartilhamento %s falhou, porque recompartilhamentos não são permitidos" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Compartilhamento %s falhou, porque a infra-estrutura de compartilhamento para %s não conseguiu encontrar a sua fonte" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index f815ae7aef0..3ba5dbc254d 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 7ebe4a930e1..9cd63ec6805 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -57,7 +57,7 @@ msgstr "" #: ajax/update.php:25 #, php-format msgid "Updated \"%s\" to %s" -msgstr "" +msgstr "Actualizado \"%s\" para %s" #: ajax/update.php:33 #, php-format @@ -874,7 +874,7 @@ msgstr "" #: templates/untrustedDomain.php:14 #, php-format msgid "Add \"%s\" as trusted domain" -msgstr "" +msgstr "Adicionar \"%s\" como um domínio de confiança" #: templates/update.admin.php:3 #, php-format diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index f1d75177906..b69ad3a73bb 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,7 +86,7 @@ msgstr "O servidor não consegue abrir URLs, por favor verifique a configuraçã #: ajax/newfile.php:126 #, php-format msgid "The file exceeds your quota by %s" -msgstr "" +msgstr "O ficheiro excede a sua quota por %s" #: ajax/newfile.php:141 #, php-format @@ -334,7 +334,7 @@ msgstr "{dirs} e {files}" #: lib/app.php:80 #, php-format msgid "%s could not be renamed as it has been deleted" -msgstr "" +msgstr "Não foi possível renomear %s devido a ter sido eliminado" #: lib/app.php:113 #, php-format diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index e554c7d29aa..cde59315e42 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 8c2b18328b9..77db1615b89 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index e057c71d1d0..e24064eb7e9 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -47,11 +47,11 @@ msgid "" "config directory%s." msgstr "Isto pode ser resolvido normalmente %sdando ao servidor web direitos de escrita no directório de configuração%s." -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -344,68 +344,68 @@ msgstr "A partilha de %s falhou, porque partilhar com links não é permitido" msgid "Share type %s is not valid for %s" msgstr "O tipo de partilha %s não é válido para %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Definir permissões para %s falhou, porque as permissões excedem as permissões concedidas a %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Definir permissões para %s falhou, porque o item não foi encontrado" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Não é possível definir data de expiração. As partilhas não podem expirar mais de %s depois de terem sido partilhadas" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Não é possivel definir data de expiração. A data de expiração está no passado" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Partilhar backend %s tem de implementar o interface OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Partilha backend %s não foi encontrado" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Partilha backend para %s não foi encontrado" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "A partilha %s falhou, porque o utilizador %s é o proprietário original" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Definir permissões para %s falhou, porque as permissões excedem as permissões concedidas a %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "A partilha %s falhou, porque repartilhar não é permitido" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "A partilha %s falhou, devido a partilha em segundo plano para %s não conseguir encontrar a sua fonte" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 9f0ba14c8fd..0ef3bd11ce9 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 52cd198cc12..a80a849ef70 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index a133b1a9722..48cbb8e80ad 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index f1b26b9515d..a0146241569 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 395dc499651..8f469462855 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index fa76128aa8f..c60433645ca 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -41,11 +41,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -338,68 +338,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 019bad74184..ede63dbc006 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 756e06949fc..85f4c1209b0 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -33,8 +33,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: sad2shade \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index d29c837e9d7..4d1e18b21cb 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -25,8 +25,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: sad2shade \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 9fc818527ca..ddb58e90fee 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: wiracle\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 2e7bf488447..f2ab953ae52 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 95195dde933..db4b0a31f09 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: sad2shade \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -52,11 +52,11 @@ msgid "" "config directory%s." msgstr "Обычно это можно исправить, %sпредоставив веб-серверу права на запись в папке конфигурации%s." -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "Обнаружена конфигурация из примера" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -349,68 +349,68 @@ msgstr "Не удалось установить общий доступ для msgid "Share type %s is not valid for %s" msgstr "Такой тип общего доступа как %s не допустим для %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Настройка прав доступа для %s невозможна, поскольку права доступа превышают предоставленные права доступа %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Не удалось произвести настройку прав доступа для %s , элемент не был найден." -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Невозможно установить дату окончания. Дата окончания в прошлом." -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Бэкенд для опубликования %s должен реализовывать интерфейс OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Бэкэнд для общего доступа %s не найден" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Бэкэнд для общего доступа к %s не найден" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Публикация %s неудачна, т.к. пользователь %s - публикатор оригинала файла" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Не удалось опубликовать %s, т.к. права %s превышают предоставленные права доступа " -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Публикация %s неудачна, т.к републикация запрещена" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Не удалось опубликовать %s, т.к. опубликованный бэкенд для %s не смог найти свой источник" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 1bfb87ce01a..822021204dd 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -32,8 +32,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: sad2shade \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 9dd5ab39b1f..aa645222f3e 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 16f8f6728bf..93e23d86a1a 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index 497a4603f28..7e0f08b2f0d 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index 2991451fa86..563eac8afe1 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index eb5fc0d0b73..97b06129f3a 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 545e42ec517..d273705e3f2 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/core.po b/l10n/sk/core.po index 2ea03b6e851..46377407232 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/files.po b/l10n/sk/files.po index 9dd60f05193..5b7bd0ee557 100644 --- a/l10n/sk/files.po +++ b/l10n/sk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/files_external.po b/l10n/sk/files_external.po index 8b78b627686..9fd1be7c12d 100644 --- a/l10n/sk/files_external.po +++ b/l10n/sk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/files_trashbin.po b/l10n/sk/files_trashbin.po index e2ea51951f9..0788de3233d 100644 --- a/l10n/sk/files_trashbin.po +++ b/l10n/sk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index c6fa7215ccb..a01af22fa90 100644 --- a/l10n/sk/lib.po +++ b/l10n/sk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po index 26638726321..15603fa8073 100644 --- a/l10n/sk/settings.po +++ b/l10n/sk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index e36e94b37d9..eaeda539caa 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index c5de0b98467..324f0ca1135 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index fb332bf5b3e..03eb1a465cb 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: helix84 \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index fde7d2a6975..3581df01fa4 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: Marián Hvolka \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index f34c8d75dac..88cc2035cec 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -43,11 +43,11 @@ msgid "" "config directory%s." msgstr "To je zvyčajne možné opraviť tým, že %sudelíte webovému serveru oprávnenie na zápis k adresáru s konfiguráciou%s." -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -340,68 +340,68 @@ msgstr "Zdieľanie %s zlyhalo, pretože zdieľanie odkazom nie je povolené" msgid "Share type %s is not valid for %s" msgstr "Typ zdieľania %s nie je platný pre %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Nastavenie povolení pre %s zlyhalo, pretože povolenia prekračujú povolenia udelené %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Nastavenie povolení pre %s zlyhalo, pretože položka sa nenašla" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Nie je možné nastaviť dátum konca platnosti. Zdieľania nemôžu skončiť neskôr ako %s po zdieľaní." -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Nie je možné nastaviť dátum konca platnosti. Dátum konca platnosti je v minulosti." -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Backend zdieľania %s musí implementovať rozhranie OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Backend zdieľania %s nebol nájdený" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Backend zdieľania pre %s nebol nájdený" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Zdieľanie %s zlyhalo, pretože používateľ %s je pôvodcom zdieľania" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Zdieľanie %s zlyhalo, pretože povolenia prekračujú povolenia udelené %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Zdieľanie %s zlyhalo, pretože zdieľanie ďalším nie je povolené" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Zdieľanie %s zlyhalo, backend zdieľania nenašiel zdrojový %s" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 1329ec6a12f..ad063292c06 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 4373f4e41f5..7498084455e 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: Matej Urbančič <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index eb2f62eaf60..fc098325a3e 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index d9dfca945e6..47ea9eb3d29 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: Matej Urbančič <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 34f3a5492f4..aea3c5e81d5 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 593227495d9..3fd3ad8b220 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -41,11 +41,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -338,68 +338,68 @@ msgstr "Nastavljanje souporabe %s je spodletelo, ker souporaba preko povezave ni msgid "Share type %s is not valid for %s" msgstr "Vrsta souporabe %s za %s ni veljavna." -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Ozadnjega programa %s za souporabo ni mogoče najti" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Ozadnjega programa za souporabo za %s ni mogoče najti" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 1033581a5d1..f29a976c938 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-27 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 16:41+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: Matej Urbančič <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 1e0fa3ac9dc..633cbd9c28a 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index a741ec341d9..5c0f60770c7 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index dd7f385da7a..4d66331c879 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index f079ecc7a31..f8a8063a55d 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index fa9e99e8b24..302448b0f47 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index c99511e1c1e..591d0af50ba 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 9e88516079d..7b22779db3d 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 934f4574f63..ee8abbe0ec6 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index f3e1a730fa0..ac445f770a0 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 78ee1af62fe..edc3c3f80f3 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index b921f6cb103..2b818758f85 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 9bcd7f53735..4179e352aa8 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 5cfd01c54e7..c6ca6ee55f9 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index d8ed8a52bb5..a86c6dc4c8b 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index 1c19b6f8c11..55b11511770 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 99c825583d4..9e82d6de6ea 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 9b753d74794..2d24b60a598 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 06adc5e0237..5628d042039 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 1d56c7816d4..595db157eb5 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index b83675d516d..22001817bae 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 546ba9f46c2..f58b4655c50 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 2dd5422e35b..2ca283bda67 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 4abf1218ae9..ec31781ed6e 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -48,11 +48,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -345,68 +345,68 @@ msgstr "Delning %s misslyckades därför att delning utav länkar inte är till msgid "Share type %s is not valid for %s" msgstr "Delningstyp %s är inte giltig för %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Misslyckades att sätta rättigheter för %s därför att rättigheterna överskrider de som är tillåtna för %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Att sätta rättigheterna för %s misslyckades därför att objektet inte hittades" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Delningsgränssnittet %s måste implementera gränssnittet OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Delningsgränssnittet %s hittades inte" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Delningsgränssnittet för %s hittades inte" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Delning %s misslyckades därför att användaren %s är den som delade objektet först" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Delning %s misslyckades därför att rättigheterna överskrider de rättigheter som är tillåtna för %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Delning %s misslyckades därför att vidaredelning inte är tillåten" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Delning %s misslyckades därför att delningsgränsnittet för %s inte kunde hitta sin källa" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 2b9c82d3147..5088ba3b35b 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_IN/core.po b/l10n/ta_IN/core.po index d8d2fe410ff..5953db9f078 100644 --- a/l10n/ta_IN/core.po +++ b/l10n/ta_IN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (India) (http://www.transifex.com/projects/p/owncloud/language/ta_IN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_IN/lib.po b/l10n/ta_IN/lib.po index 6e92608830c..752175ffb86 100644 --- a/l10n/ta_IN/lib.po +++ b/l10n/ta_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (India) (http://www.transifex.com/projects/p/owncloud/language/ta_IN/)\n" "MIME-Version: 1.0\n" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ta_IN/settings.po b/l10n/ta_IN/settings.po index 38f5263f95b..a5157ca1efb 100644 --- a/l10n/ta_IN/settings.po +++ b/l10n/ta_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (India) (http://www.transifex.com/projects/p/owncloud/language/ta_IN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 3330cbb1c0b..dab80dba8df 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 44056370365..57f9aa46e57 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index a818de998b1..380efde1e9c 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index a8a51d499c7..218f4a9996e 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 1fd5b14b109..eafb80dab18 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 87039598280..3578cf25279 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/core.po b/l10n/te/core.po index 096f0c02743..ffd0cd5ca5c 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files.po b/l10n/te/files.po index 1f6305aad78..ed9ec178760 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index 39fc8c8b54a..4a956b90f16 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index 1360dd18a0c..2c99e6dd04d 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 0a6f4082c72..712a9d82737 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index a883f0b33eb..e2764853886 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 3fde0342b90..2cd08f4dca5 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-27 01:54-0400\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 6779a0b77d1..b40fc226ab6 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-27 01:54-0400\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 4863574d97a..e0d654c3884 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-27 01:54-0400\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 237419c6aee..95e6be99331 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-27 01:54-0400\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index e956b29e88e..1e40951edd5 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-27 01:54-0400\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 40ba0619902..c17d3740114 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-27 01:54-0400\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 3e24e3250ff..16e4b59f401 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-27 01:54-0400\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 33adf729b50..6406025d9ac 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-27 01:54-0400\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -337,68 +337,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 9805de7b9ca..985d71cad3f 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-27 01:54-0400\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -296,68 +296,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: share/share.php:862 +#: share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: share/share.php:923 +#: share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: share/share.php:961 +#: share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: share/share.php:969 +#: share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: share/share.php:1094 +#: share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: share/share.php:1101 +#: share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: share/share.php:1107 +#: share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: share/share.php:1525 +#: share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: share/share.php:1534 +#: share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: share/share.php:1550 +#: share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: share/share.php:1562 +#: share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: share/share.php:1576 +#: share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 35e1db07dbf..b5724696862 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-27 01:54-0400\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 216d41a670c..636efce7d7d 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-27 01:54-0400\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 38e8f477fac..3972afa282b 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-27 01:54-0400\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index ad9f4bbd5f4..a126ea75370 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index aa321615cd3..934ccab9249 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index 34a63a5a3bb..0b8a8b0f269 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index 97e45bd9b2c..52440f76f7d 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 373ac23f77f..112b47ce802 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 14284189a3c..b77266e90b8 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 91ee360ed89..08b17bfac9d 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: Volkan Gezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 952496f3de5..cb2a8eb6a0d 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index ea66a4c6ccf..57d8c2e04ef 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index 7a8d7a8169a..cfda26b7aca 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: Volkan Gezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index ae855a41abe..8df19fbbf43 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -43,11 +43,11 @@ msgid "" "config directory%s." msgstr "Bu genellikle, %sweb sunucusuna config dizinine yazma erişimi verilerek%s çözülebilir" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "Örnek yapılandırma tespit edildi" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -340,68 +340,68 @@ msgstr "%s paylaşımı, bağlantılar ile paylaşım izin verilmediğinden baş msgid "Share type %s is not valid for %s" msgstr "%s paylaşım türü %s için geçerli değil" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "%s için izinler, izinler %s için verilen izinleri aştığından dolayı ayarlanamadı" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "%s için izinler öge bulunamadığından ayarlanamadı" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Son kullanma tarihi ayarlanamıyor. Paylaşımlar, paylaşıldıkları süreden %s sonra dolamaz." -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Son kullanma tarihi ayarlanamıyor. Son kullanma tarihi geçmişte" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Paylaşma arka ucu %s OCP\\Share_Backend arayüzünü desteklemeli" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Paylaşım arka ucu %s bulunamadı" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "%s için paylaşım arka ucu bulunamadı" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "%s paylaşımı, %s kullanıcısı özgün paylaşan kişi olduğundan başarısız oldu" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "%s paylaşımı, izinler %s için verilen izinleri aştığından dolayı başarısız oldu" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "%s paylaşımı, tekrar paylaşımın izin verilmemesinden dolayı başarısız oldu" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "%s paylaşımı, %s için arka ucun kaynağını bulamamasından dolayı başarısız oldu" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index f092d4cd692..b538dfc1dde 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: Volkan Gezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 7656f1262ce..6d74fb54cc9 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index c890539563a..6d9bc1a3a52 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index c8b3e12fadd..225d4edb14c 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index ac53db41001..e715c8b1c09 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 0fe7547b49d..26cd3a3d0da 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 75535e90fef..66148cd691f 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 883c3c053c6..fb91f74aa70 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 14c891fcb2d..64eda9679a8 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index 5840cc8f9e7..3385d3baaa6 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index b2b42c41612..340cc18996d 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: v_2e \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 2bdcfe56e05..bc20241e615 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index b345cd9dde9..bd58c77927a 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index 4328a5c95c9..193a4967763 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 9ffa335a7f2..db6a4104093 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_external.po b/l10n/ur_PK/files_external.po index 31107c24caf..c0f9b476633 100644 --- a/l10n/ur_PK/files_external.po +++ b/l10n/ur_PK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index 3165d1550d5..b7f905befa6 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: Ahmed Waqar Shah \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 91cbe7a6a2c..87c2da7715e 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index cd17514e7ed..38733f6874a 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 3c04b518f3b..18a33d061dd 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 68a45a7ab2e..ae97d8c6304 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index 3e2fae8d509..5372fe049c7 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index 298fd58f034..7f053fa3607 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 470c38fbf34..1a441a30f59 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 02d3ea29143..dd7e88ff285 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 1ec04f2136f..5d518d03201 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 380c8014c82..ca8c224ee48 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index 268b6fc8c1a..22390644285 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: Kaijia Feng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 336ec96d322..1e08baa06c2 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index f84ecb44455..83b09783660 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+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" @@ -45,11 +45,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -342,68 +342,68 @@ msgstr "共享 %s 失败,因为不允许用链接共享" msgid "Share type %s is not valid for %s" msgstr "%s 不是 %s 的合法共享类型" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "设置 %s 权限失败,因为权限超出了 %s 已有权限。" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "设置 %s 的权限失败,因为未找到到对应项" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "共享后端 %s 必须实现 OCP\\Share_Backend 接口" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "未找到共享后端 %s" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "%s 的共享后端未找到" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "共享 %s 失败,因为用户 %s 不是原始共享者" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "共享 %s 失败,因为权限超过了 %s 已有权限" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "共享 %s 失败,因为不允许二次共享" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "共享 %s 失败,因为 %s 使用的共享后端未找到它的来源" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 81c83cb4b98..ce9459601bd 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 70f19fb7834..4c1287458ae 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 2b722957f6f..36b15d0d9eb 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index c8d3e547ba3..f4e7cefd08b 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 90d58a184bc..961055e44ba 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 70769656478..7146885b80d 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -39,11 +39,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 3c181e2d8e5..271ab349a63 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 2758e1496fa..dfe576939dd 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"Last-Translator: Pellaeon Lin \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" @@ -42,12 +42,12 @@ msgstr "已檢查資料庫格式更新" #: ajax/update.php:22 msgid "Checked database schema update for apps" -msgstr "" +msgstr "已檢查應用程式的資料庫格式更新" #: ajax/update.php:25 #, php-format msgid "Updated \"%s\" to %s" -msgstr "" +msgstr "已更新 %s 到 %s" #: ajax/update.php:33 #, php-format @@ -247,7 +247,7 @@ msgstr "重設密碼" #: js/lostpassword.js:16 msgid "Password can not be changed. Please contact your administrator." -msgstr "" +msgstr "無法變更密碼,請聯絡您的系統管理員" #: js/oc-dialogs.js:108 js/oc-dialogs.js:255 msgid "No" @@ -288,7 +288,7 @@ msgstr "新檔案" #: js/oc-dialogs.js:451 msgid "Already existing files" -msgstr "" +msgstr "已經存在的檔案" #: js/oc-dialogs.js:453 msgid "Which files do you want to keep?" @@ -346,7 +346,7 @@ msgstr "已分享" #: js/share.js:257 msgid "Shared with {recipients}" -msgstr "" +msgstr "與 {recipients} 分享" #: js/share.js:266 msgid "Share" @@ -396,7 +396,7 @@ msgstr "密碼保護" #: js/share.js:400 msgid "Choose a password for the public link" -msgstr "" +msgstr "為公開連結選一個密碼" #: js/share.js:406 msgid "Allow Public Upload" @@ -516,15 +516,15 @@ msgstr "沒有選擇要刪除的標籤" #: js/update.js:30 msgid "Updating {productName} to version {version}, this may take a while." -msgstr "" +msgstr "正在更新 {productName} 到版本 {version} ,請稍候" #: js/update.js:43 msgid "Please reload the page." -msgstr "" +msgstr "請重新整理頁面" #: js/update.js:52 msgid "The update was unsuccessful." -msgstr "" +msgstr "更新失敗" #: js/update.js:61 msgid "The update was successful. Redirecting you to ownCloud now." @@ -532,17 +532,17 @@ msgstr "升級成功,正將您重新導向至 ownCloud 。" #: lostpassword/controller/lostcontroller.php:133 msgid "Couldn't reset password because the token is invalid" -msgstr "" +msgstr "無法重設密碼因為 token 無效" #: lostpassword/controller/lostcontroller.php:159 msgid "Couldn't send reset email. Please make sure your username is correct." -msgstr "" +msgstr "無法寄送重設 email ,請確認您的帳號輸入正確" #: lostpassword/controller/lostcontroller.php:174 msgid "" "Couldn't send reset email because there is no email address for this " "username. Please contact your administrator." -msgstr "" +msgstr "無法寄送重設 email ,因為這個帳號沒有設定 email 地址,請聯絡您的系統管理員" #: lostpassword/controller/lostcontroller.php:191 #, php-format @@ -585,19 +585,19 @@ msgstr "新密碼" #: lostpassword/templates/resetpassword.php:6 msgid "New Password" -msgstr "" +msgstr "新密碼" #: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " -msgstr "" +msgstr "不支援 Mac OS X 而且 %s 在這個平台上面無法正常運作,請自行衡量風險!" #: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." -msgstr "" +msgstr "請考慮使用 GNU/Linux 伺服器以取得最好的效果" #: strings.php:5 msgid "Personal" @@ -633,7 +633,7 @@ msgstr "刪除標籤出錯" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "貼標籤發生錯誤" #: tags/controller.php:86 msgid "Error untagging" @@ -668,7 +668,7 @@ msgstr "嗨,\n\n%s 和你分享了 %s ,到這裡看它:%s\n" #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "這個分享將會於 %s 過期" #. TRANSLATORS term at the end of a mail #: templates/altmail.php:8 templates/mail.php:21 @@ -725,7 +725,7 @@ msgstr "密碼" #: templates/installation.php:72 msgid "Storage & database" -msgstr "" +msgstr "儲存空間和資料庫" #: templates/installation.php:79 msgid "Data folder" @@ -738,7 +738,7 @@ msgstr "設定資料庫" #: templates/installation.php:96 #, php-format msgid "Only %s is available." -msgstr "" +msgstr "剩下 %s 可使用" #: templates/installation.php:111 templates/installation.php:113 msgid "Database user" @@ -764,7 +764,7 @@ msgstr "資料庫主機" msgid "" "SQLite will be used as database. For larger installations we recommend to " "change this." -msgstr "" +msgstr "將會使用 SQLite 作為資料庫,在大型安裝中建議使用其他種資料庫" #: templates/installation.php:159 msgid "Finish setup" @@ -779,7 +779,7 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "這個應用程式需要啟用 Javascript 才能正常運作,請啟用 Javascript 然後重新載入頁面" #: templates/layout.user.php:47 #, php-format @@ -800,7 +800,7 @@ msgstr "請聯絡系統管理員。" #: templates/login.php:42 msgid "Forgot your password? Reset it!" -msgstr "" +msgstr "忘了密碼?重設它!" #: templates/login.php:47 msgid "remember" @@ -819,15 +819,15 @@ msgstr "其他登入方法" msgid "" "Hey there,

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

    " -msgstr "" +msgstr "嗨,

    %s 與你分享了%s
    檢視

    " #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." -msgstr "" +msgstr "這個 ownCloud 伺服器目前運作於單一使用者模式" #: templates/singleuser.user.php:4 msgid "This means only administrators can use the instance." -msgstr "" +msgstr "這表示只有系統管理員能夠使用" #: templates/singleuser.user.php:5 templates/update.user.php:5 msgid "" @@ -841,55 +841,55 @@ msgstr "感謝您的耐心" #: templates/untrustedDomain.php:5 msgid "You are accessing the server from an untrusted domain." -msgstr "" +msgstr "你正在從一個未信任的網域存取伺服器" #: templates/untrustedDomain.php:8 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " "example configuration is provided in config/config.sample.php." -msgstr "" +msgstr "請聯絡您的系統管理員,如果您就是系統管理員,請設定 config/config.php 中的 \"trusted_domain\" 選項。範例設定提供於 config/config.sample.php" #: templates/untrustedDomain.php:10 msgid "" "Depending on your configuration, as an administrator you might also be able " "to use the button below to trust this domain." -msgstr "" +msgstr "依照設定而定,您身為系統管理員可能也可以使用底下的按鈕來信任這個網域" #: templates/untrustedDomain.php:14 #, php-format msgid "Add \"%s\" as trusted domain" -msgstr "" +msgstr "將 %s 加入到信任的網域" #: templates/update.admin.php:3 #, php-format msgid "%s will be updated to version %s." -msgstr "" +msgstr "%s 將會被升級到版本 %s" #: templates/update.admin.php:7 msgid "The following apps will be disabled:" -msgstr "" +msgstr "這些應用程式會被停用:" #: templates/update.admin.php:17 #, php-format msgid "The theme %s has been disabled." -msgstr "" +msgstr "主題 %s 已經被停用" #: templates/update.admin.php:21 msgid "" "Please make sure that the database, the config folder and the data folder " "have been backed up before proceeding." -msgstr "" +msgstr "在繼續之前,請備份資料庫、config 目錄及資料目錄" #: templates/update.admin.php:23 msgid "Start update" -msgstr "" +msgstr "開始升級" #: templates/update.admin.php:25 msgid "" "To avoid timeouts with larger installations, you can instead run the " "following command from your installation directory:" -msgstr "" +msgstr "在大型安裝上,為了避免升級請求逾時,你也可以在安裝目錄執行下列指令:" #: templates/update.user.php:3 msgid "" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 26c8ad82b9f..310c9abfa88 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"Last-Translator: Pellaeon Lin \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" @@ -80,7 +80,7 @@ msgstr "伺服器上不允許開啓 URL ,請檢查伺服器設定" #: ajax/newfile.php:126 #, php-format msgid "The file exceeds your quota by %s" -msgstr "" +msgstr "這個檔案大小超出配額 %s" #: ajax/newfile.php:141 #, php-format diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 6392ddd0747..06efba40b8e 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index a0ffa05e9c4..b325fd85b7c 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 3786c24ac69..daae541df6e 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -4,14 +4,14 @@ # # Translators: # happy chan , 2014 -# Pellaeon Lin , 2013 +# Pellaeon Lin , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"Last-Translator: Pellaeon Lin \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" @@ -21,7 +21,7 @@ msgstr "" #: base.php:200 base.php:207 msgid "Cannot write into \"config\" directory!" -msgstr "" +msgstr "無法寫入 config 目錄!" #: base.php:201 msgid "" @@ -41,11 +41,11 @@ msgid "" "config directory%s." msgstr "" -#: base.php:577 +#: base.php:578 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -338,68 +338,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index b75f81b1a79..3ffc16666ad 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/lib/l10n/da.php b/lib/l10n/da.php index dd5347c6714..e23abf05943 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -4,6 +4,8 @@ $TRANSLATIONS = array( "This can usually be fixed by giving the webserver write access to the config directory" => "Dette kan normalvis ordnes ved at give webserveren skrive adgang til config mappen", "See %s" => "Se %s", "This can usually be fixed by %sgiving the webserver write access to the config directory%s." => "Dette kan som regel rettes ved at %sgive webserveren skriveadgang til config-mappen%s.", +"Sample configuration detected" => "Eksempel for konfiguration registreret", +"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" => "Der er registreret at eksempel for konfiguration er blevet kopieret. Dette kan ødelægge din installation og understøttes ikke. Læs venligst dokumentationen før der foretages ændringer i config.php", "Help" => "Hjælp", "Personal" => "Personligt", "Settings" => "Indstillinger", @@ -64,6 +66,8 @@ $TRANSLATIONS = array( "Share type %s is not valid for %s" => "Delingstypen %s er ikke gyldig for %s", "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Angivelse af tilladelser for %s mislykkedes, fordi tilladelserne overskred de som var tildelt %s", "Setting permissions for %s failed, because the item was not found" => "Angivelse af tilladelser for %s mislykkedes, fordi artiklen ikke blev fundet", +"Cannot set expiration date. Shares cannot expire later than %s after they have been shared" => "Kan ikke angive udløbsdato. Delinger kan ikke udløbe senere end %s efter at de er blevet delt", +"Cannot set expiration date. Expiration date is in the past" => "Kan ikke angive udløbsdato. Udløbsdato er allerede passeret", "Sharing backend %s must implement the interface OCP\\Share_Backend" => "Delingsbackend'en %s skal implementere grænsefladen OCP\\Share_Backend", "Sharing backend %s not found" => "Delingsbackend'en %s blev ikke fundet", "Sharing backend for %s not found" => "Delingsbackend'en for %s blev ikke fundet", @@ -91,9 +95,11 @@ $TRANSLATIONS = array( "Permissions can usually be fixed by %sgiving the webserver write access to the root directory%s." => "Rettigheder kan som regel rettes ved %sat give webserveren skriveadgang til rodmappen%s.", "Cannot write into \"config\" directory" => "Kan ikke skrive til mappen \"config\"", "Cannot write into \"apps\" directory" => "Kan ikke skrive til mappen \"apps\"", +"This can usually be fixed by %sgiving the webserver write access to the apps directory%s or disabling the appstore in the config file." => "Dette kan som regel rettes ved at %sgive webserveren skriveadgang til apps-mappen%s eller slå appstore fra i config-filen.", "Cannot create \"data\" directory (%s)" => "Kan ikke oprette mappen \"data\" (%s)", "This can usually be fixed by giving the webserver write access to the root directory." => "Dette kan som regel rettes ved give webserveren skriveadgang til rodmappen.", "Setting locale to %s failed" => "Angivelse af %s for lokalitet mislykkedes", +"Please install one of these locales on your system and restart your webserver." => "Installér venligst én af disse lokaliteter på dit system, og genstart din webserver.", "Please ask your server administrator to install the module." => "Du bedes anmode din serveradministrator om at installere modulet.", "PHP module %s not installed." => "PHP-modulet %s er ikke installeret.", "PHP %s or higher is required." => "Der kræves PHP %s eller nyere.", diff --git a/lib/l10n/hu_HU.php b/lib/l10n/hu_HU.php index 49fdee6e741..35200643d4b 100644 --- a/lib/l10n/hu_HU.php +++ b/lib/l10n/hu_HU.php @@ -1,17 +1,23 @@ "Nem írható a \"config\" könyvtár!", +"This can usually be fixed by giving the webserver write access to the config directory" => "Ez rendszerint úgy oldható meg, hogy írási jogot adunk a webszervernek a config könyvtárra.", +"See %s" => "Lásd %s", +"This can usually be fixed by %sgiving the webserver write access to the config directory%s." => "Ez rendszerint úgy oldható meg, hogy %sírási jogot adunk a webszervernek a config könyvtárra%s.", +"Sample configuration detected" => "A példabeállítások vannak beállítva", +"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" => "Úgy tűnik a példakonfigurációt próbálja ténylegesen használni. Ez nem támogatott, és működésképtelenné teheti a telepítést. Kérjük olvassa el a dokumentációt és azt követően változtasson a config.php-n!", "Help" => "Súgó", "Personal" => "Személyes", "Settings" => "Beállítások", "Users" => "Felhasználók", "Admin" => "Adminsztráció", +"App \\\"%s\\\" can't be installed because it is not compatible with this version of ownCloud." => " \\\"%s\\\" alkalmazás nem telepíthető, mert nem kompatibilis az ownCloud jelen változatával.", "No app name specified" => "Nincs az alkalmazás név megadva.", "Unknown filetype" => "Ismeretlen file tipús", "Invalid image" => "Hibás kép", "web services under your control" => "webszolgáltatások saját kézben", "App directory already exists" => "Az alkalmazás mappája már létezik", -"Can't create app folder. Please fix permissions. %s" => "Nem lehetett létrehozni az alkalmzás mappáját. Kérlek ellenőrizd a jogosultásgokat. %s", +"Can't create app folder. Please fix permissions. %s" => "Nem lehetett létrehozni az alkalmazás mappáját. Kérem ellenőrizze a jogosultságokat. %s", "No source specified when installing app" => "Az alkalmazás telepítéséhez nincs forrás megadva", "No href specified when installing app from http" => "Az alkalmazás http-n keresztül történő telepítéséhez nincs href hivetkozás megadva", "No path specified when installing app from local file" => "Az alkalmazás helyi telepítéséhez nincs útvonal (mappa) megadva", @@ -19,9 +25,9 @@ $TRANSLATIONS = array( "Failed to open archive when installing app" => "Nem sikerült megnyitni a tömörített állományt a telepítés során", "App does not provide an info.xml file" => "Az alkalmazás nem szolgáltatott info.xml file-t", "App can't be installed because of not allowed code in the App" => "Az alkalmazást nem lehet telepíteni, mert abban nem engedélyezett programkód szerepel", -"App can't be installed because it is not compatible with this version of ownCloud" => "Az alalmazás nem telepíthető, mert nem kompatibilis az ownClod ezzel a verziójával.", +"App can't be installed because it is not compatible with this version of ownCloud" => "Az alkalmazás nem telepíthető, mert nem kompatibilis az ownCloud jelen verziójával.", "App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "Az alkalmazást nem lehet telepíteni, mert tartalmazza a \n\ntrue\n\ncímkét, ami a nem szállított alkalmazások esetén nem engedélyezett", -"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "Az alkalmazást nem lehet telepíteni, mert az info.xml/version-ben megadott verzió nem egyezik az alkalmazás-áruházban feltüntetett verzióval.", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "Az alkalmazást nem lehet telepíteni, mert az info.xml/version-ben megadott verzió nem egyezik az alkalmazás-kiszolgálón feltüntetett verzióval.", "Application is not enabled" => "Az alkalmazás nincs engedélyezve", "Authentication error" => "Azonosítási hiba", "Token expired. Please reload page." => "A token lejárt. Frissítse az oldalt.", @@ -31,8 +37,13 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s az adatbázis neve nem tartalmazhat pontot", "MS SQL username and/or password not valid: %s" => "Az MS SQL felhasználónév és/vagy jelszó érvénytelen: %s", "You need to enter either an existing account or the administrator." => "Vagy egy létező felhasználó vagy az adminisztrátor bejelentkezési nevét kell megadnia", +"MySQL/MariaDB username and/or password not valid" => "A MySQL/MariaDB felhasználónév és/vagy jelszó nem megfelelő", "DB Error: \"%s\"" => "Adatbázis hiba: \"%s\"", "Offending command was: \"%s\"" => "A hibát ez a parancs okozta: \"%s\"", +"MySQL/MariaDB user '%s'@'localhost' exists already." => "A MySQL/MariaDB felhasználó '%s'@'localhost' már létezik.", +"Drop this user from MySQL/MariaDB" => "Töröljük ez a felhasználót a MySQL/MariaDB-rendszerből", +"MySQL/MariaDB user '%s'@'%%' already exists" => "A MySQL/MariaDB felhasználó '%s'@'%%' már létezik.", +"Drop this user from MySQL/MariaDB." => "Töröljük ez a felhasználót a MySQL/MariaDB-rendszerből.", "Oracle connection could not be established" => "Az Oracle kapcsolat nem hozható létre", "Oracle username and/or password not valid" => "Az Oracle felhasználói név és/vagy jelszó érvénytelen", "Offending command was: \"%s\", name: %s, password: %s" => "A hibát okozó parancs ez volt: \"%s\", login név: %s, jelszó: %s", @@ -43,7 +54,28 @@ $TRANSLATIONS = array( "Please double check the installation guides." => "Kérjük tüzetesen tanulmányozza át a telepítési útmutatót.", "%s shared »%s« with you" => "%s megosztotta Önnel ezt: »%s«", "Sharing %s failed, because the file does not exist" => "%s megosztása sikertelen, mert a fájl nem létezik", -"Cannot set expiration date. Expiration date is in the past" => "Nem lehet beállítani a lejárati időt mivel már elmúlt.", +"You are not allowed to share %s" => "Önnek nincs jogosultsága %s megosztására", +"Sharing %s failed, because the user %s is the item owner" => "%s megosztása nem sikerült, mert %s felhasználó az állomány tulajdonosa", +"Sharing %s failed, because the user %s does not exist" => "%s megosztása nem sikerült, mert %s felhasználó nem létezik", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "%s megosztása nem sikerült, mert %s felhasználó nem tagja egyik olyan csoportnak sem, aminek %s tagja", +"Sharing %s failed, because this item is already shared with %s" => "%s megosztása nem sikerült, mert ez már meg van osztva %s-vel", +"Sharing %s failed, because the group %s does not exist" => "%s megosztása nem sikerült, mert %s csoport nem létezik", +"Sharing %s failed, because %s is not a member of the group %s" => "%s megosztása nem sikerült, mert %s felhasználó nem tagja a %s csoportnak", +"You need to provide a password to create a public link, only protected links are allowed" => "Meg kell adnia egy jelszót is, mert a nyilvános linkek csak jelszóval védetten használhatók", +"Sharing %s failed, because sharing with links is not allowed" => "%s megosztása nem sikerült, mert a linkekkel történő megosztás nincs engedélyezve", +"Share type %s is not valid for %s" => "A %s megosztási típus nem érvényes %s-re", +"Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Nem sikerült %s-re beállítani az elérési jogosultságokat, mert a megadottak túllépik a %s-re érvényes jogosultságokat", +"Setting permissions for %s failed, because the item was not found" => "Nem sikerült %s-re beállítani az elérési jogosultságokat, mert a kérdéses állomány nem található", +"Cannot set expiration date. Shares cannot expire later than %s after they have been shared" => "Nem lehet beállítani a lejárati időt. A megosztások legfeljebb ennyi idővel járhatnak le a létrehozásukat követően: %s", +"Cannot set expiration date. Expiration date is in the past" => "Nem lehet beállítani a lejárati időt, mivel a megadott lejárati időpont már elmúlt.", +"Sharing backend %s must implement the interface OCP\\Share_Backend" => "Az %s megosztási alrendszernek támogatnia kell az OCP\\Share_Backend interface-t", +"Sharing backend %s not found" => "A %s megosztási alrendszer nem található", +"Sharing backend for %s not found" => "%s megosztási alrendszere nem található", +"Sharing %s failed, because the user %s is the original sharer" => "%s megosztása nem sikerült, mert %s felhasználó az eredeti megosztó", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "%s megosztása nem sikerült, mert a jogosultságok túllépik azt, ami %s rendelkezésére áll", +"Sharing %s failed, because resharing is not allowed" => "%s megosztása nem sikerült, mert a megosztás továbbadása nincs engedélyezve", +"Sharing %s failed, because the sharing backend for %s could not find its source" => "%s megosztása nem sikerült, mert %s megosztási alrendszere nem találja", +"Sharing %s failed, because the file could not be found in the file cache" => "%s megosztása nem sikerült, mert a fájl nem található a gyorsítótárban", "Could not find category \"%s\"" => "Ez a kategória nem található: \"%s\"", "seconds ago" => "pár másodperce", "_%n minute ago_::_%n minutes ago_" => array("","%n perccel ezelőtt"), @@ -55,10 +87,37 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("%n hónappal ezelőtt","%n hónappal ezelőtt"), "last year" => "tavaly", "years ago" => "több éve", +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" => "A felhasználónévben csak a következő karakterek fordulhatnak elő: \"a-z\", \"A-Z\", \"0-9\", és \"_.@-\"", "A valid username must be provided" => "Érvényes felhasználónevet kell megadnia", "A valid password must be provided" => "Érvényes jelszót kell megadnia", "The username is already being used" => "Ez a bejelentkezési név már foglalt", +"No database drivers (sqlite, mysql, or postgresql) installed." => "Nincs telepítve adatbázis-meghajtóprogram (sqlite, mysql vagy postgresql).", +"Permissions can usually be fixed by %sgiving the webserver write access to the root directory%s." => "Az elérési problémák rendszerint megoldhatók azzal, ha a %swebszervernek írásjogot adunk a gyökérkönyvtárra%s.", "Cannot write into \"config\" directory" => "Nem írható a \"config\" könyvtár", -"Please upgrade your database version" => "Kérlek frissítsd az adatbázisodat" +"Cannot write into \"apps\" directory" => "Nem írható az \"apps\" könyvtár", +"This can usually be fixed by %sgiving the webserver write access to the apps directory%s or disabling the appstore in the config file." => "Ez rendszerint úgy oldható meg, hogy %sírási jogot adunk a webszervernek az app könyvtárra%s, vagy letiltjuk a config fájlban az appstore használatát.", +"Cannot create \"data\" directory (%s)" => "Nem sikerült létrehozni a \"data\" könyvtárt (%s)", +"This can usually be fixed by giving the webserver write access to the root directory." => "Ez rendszerint úgy oldható meg, hogy írásjogot adunk a webszervernek a gyökérkönyvtárra.", +"Setting locale to %s failed" => "A lokalizáció %s-re való állítása nem sikerült", +"Please install one of these locales on your system and restart your webserver." => "Kérjük állítsa be a következő lokalizációk valamelyikét a rendszeren és indítsa újra a webszervert!", +"Please ask your server administrator to install the module." => "Kérje meg a rendszergazdát, hogy telepítse a modult!", +"PHP module %s not installed." => "A %s PHP modul nincs telepítve.", +"PHP %s or higher is required." => "PHP %s vagy ennél újabb szükséges.", +"Please ask your server administrator to update PHP to the latest version. Your PHP version is no longer supported by ownCloud and the PHP community." => "Kérje meg a rendszergazdát, hogy frissítse a PHP-t újabb változatra! Ezt a PHP változatot már nem támogatja az ownCloud és a PHP fejlesztői közösség.", +"PHP Safe Mode is enabled. ownCloud requires that it is disabled to work properly." => "Be van állítva a PHP Safe Mode. Az ownCloud megfelelő működéséhez szükséges, hogy ez ki legyen kapcsolva.", +"PHP Safe Mode is a deprecated and mostly useless setting that should be disabled. Please ask your server administrator to disable it in php.ini or in your webserver config." => "A PHP Safe Mode egy régi, már nem támogatott és haszontalan üzemmód, amit érdemes letiltani. Kérje meg a rendszergazdát, hogy tiltsa le vagy a php.ini-ben, vagy a webszerver beállításokban!", +"Magic Quotes is enabled. ownCloud requires that it is disabled to work properly." => "Be van álltva a Magic Quotes. Az ownCloud megfelelő működéséhez szükséges, hogy ez le legyen tiltva.", +"Magic Quotes is a deprecated and mostly useless setting that should be disabled. Please ask your server administrator to disable it in php.ini or in your webserver config." => "A Magic Quotes egy régi, már nem támogatott és haszontalan üzemmód, amit érdemes letiltani. Kérje meg a rendszergazdát, hogy tiltsa le vagy a php.ini-ben, vagy a webszerver beállításokban!", +"PHP modules have been installed, but they are still listed as missing?" => "A PHP modulok telepítve vannak, de a listában mégsincsenek felsorolva?", +"Please ask your server administrator to restart the web server." => "Kérje meg a rendszergazdát, hogy indítsa újra a webszervert!", +"PostgreSQL >= 9 required" => "PostgreSQL >= 9 szükséges", +"Please upgrade your database version" => "Kérem frissítse az adatbázis-szoftvert!", +"Error occurred while checking PostgreSQL version" => "Hiba történt a PostgreSQL verziójának ellenőrzése közben", +"Please make sure you have PostgreSQL >= 9 or check the logs for more information about the error" => "Kérjük gondoskodjon róla, hogy a PostgreSQL legalább 9-es verziójú legyen, vagy ellenőrizze a naplófájlokat, hogy mi okozta a hibát!", +"Please change the permissions to 0770 so that the directory cannot be listed by other users." => "Kérjük módosítsa a könyvtár elérhetőségi engedélybeállítását 0770-re, hogy a tartalmát más felhasználó ne listázhassa!", +"Data directory (%s) is readable by other users" => "Az adatkönyvtár (%s) más felhasználók számára is olvasható ", +"Data directory (%s) is invalid" => "Érvénytelen a megadott adatkönyvtár (%s) ", +"Please check that the data directory contains a file \".ocdata\" in its root." => "Kérjük ellenőrizze, hogy az adatkönyvtár tartalmaz a gyökerében egy \".ocdata\" nevű állományt!", +"Could not obtain lock type %d on \"%s\"." => "Nem sikerült %d típusú zárolást elérni itt: \"%s\"." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/zh_TW.php b/lib/l10n/zh_TW.php index 301df298b98..bb5ad02c8c9 100644 --- a/lib/l10n/zh_TW.php +++ b/lib/l10n/zh_TW.php @@ -1,5 +1,6 @@ "無法寫入 config 目錄!", "Help" => "說明", "Personal" => "個人", "Settings" => "設定", diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index 025472aff99..bd6f8255512 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -35,6 +35,8 @@ $TRANSLATIONS = array( "Update" => "Oppdater", "Updated" => "Oppdatert", "Select a profile picture" => "Vel eit profilbilete", +"Very weak password" => "Veldig svakt passord", +"Weak password" => "Svakt passord", "Decrypting files... Please wait, this can take some time." => "Dekrypterer filer … Ver venleg og vent, dette kan ta ei stund.", "undo" => "angra", "Groups" => "Grupper", -- GitLab From dbd51d15e1558fac4936a593ea3599b344d83b07 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 16 May 2014 18:03:15 +0200 Subject: [PATCH 20/56] Port of #8623 set result entry identifier earlier, i.e. before a continue for the same level can happen. otherwise will always get the same value and we end up in an infinite loop add unit test to make sure the infinite loop never comes back Conflicts: apps/user_ldap/tests/wizard.php --- apps/user_ldap/lib/wizard.php | 2 +- apps/user_ldap/tests/wizard.php | 78 +++++++++++++++++++++++++++++++++ 2 files changed, 79 insertions(+), 1 deletion(-) diff --git a/apps/user_ldap/lib/wizard.php b/apps/user_ldap/lib/wizard.php index eb2a1ab02de..0cec493d9ed 100644 --- a/apps/user_ldap/lib/wizard.php +++ b/apps/user_ldap/lib/wizard.php @@ -994,6 +994,7 @@ class Wizard extends LDAPUtility { if(!$this->ldap->isResource($entry)) { continue 2; } + $rr = $entry; //will be expected by nextEntry next round $attributes = $this->ldap->getAttributes($cr, $entry); $dn = $this->ldap->getDN($cr, $entry); if($dn === false || in_array($dn, $dnRead)) { @@ -1007,7 +1008,6 @@ class Wizard extends LDAPUtility { $foundItems = array_merge($foundItems, $newItems); $this->resultCache[$dn][$attr] = $newItems; $dnRead[] = $dn; - $rr = $entry; //will be expected by nextEntry next round } while(($state === self::LRESULT_PROCESSED_SKIP || $this->ldap->isResource($entry)) && ($dnReadLimit === 0 || $dnReadCount < $dnReadLimit)); diff --git a/apps/user_ldap/tests/wizard.php b/apps/user_ldap/tests/wizard.php index ff5ee010b71..786769a88cf 100644 --- a/apps/user_ldap/tests/wizard.php +++ b/apps/user_ldap/tests/wizard.php @@ -207,4 +207,82 @@ class Test_Wizard extends \PHPUnit_Framework_TestCase { unset($uidnumber); } + public function testCumulativeSearchOnAttributeSkipReadDN() { + // tests that there is no infinite loop, when skipping already processed + // DNs (they can be returned multiple times for multiple filters ) + list($wizard, $configuration, $ldap) = $this->getWizardAndMocks(); + + $configuration->expects($this->any()) + ->method('__get') + ->will($this->returnCallback(function($name) { + if($name === 'ldapBase') { + return array('base'); + } + return null; + })); + + $this->prepareLdapWrapperForConnections($ldap); + + $ldap->expects($this->any()) + ->method('isResource') + ->will($this->returnCallback(function($res) { + return (bool)$res; + })); + + $ldap->expects($this->any()) + ->method('search') + //dummy value, usually invalid + ->will($this->returnValue(true)); + + $ldap->expects($this->any()) + ->method('countEntries') + //an is_resource check will follow, so we need to return a dummy resource + ->will($this->returnValue(7)); + + //5 DNs per filter means 2x firstEntry and 8x nextEntry + $ldap->expects($this->any()) + ->method('firstEntry') + //dummy value, usually invalid + ->will($this->returnValue(1)); + + global $mark; + $mark = false; + // entries return order: 1, 2, 3, 4, 4, 5, 6 + $ldap->expects($this->any()) + ->method('nextEntry') + //dummy value, usually invalid + ->will($this->returnCallback(function($a, $prev){ + $current = $prev + 1; + if($current === 7) { + return false; + } + global $mark; + if($prev === 4 && !$mark) { + $mark = true; + return 4; + } + return $current; + })); + + $ldap->expects($this->any()) + ->method('getAttributes') + //dummy value, usually invalid + ->will($this->returnCallback(function($a, $entry) { + return array('cn' => array($entry), 'count' => 1); + })); + + $ldap->expects($this->any()) + ->method('getDN') + //dummy value, usually invalid + ->will($this->returnCallback(function($a, $b) { + return $b; + })); + + # The following expectations are the real test # + $filters = array('f1', 'f2', '*'); + $resultArray = $wizard->cumulativeSearchOnAttribute($filters, 'cn', true, 0); + $this->assertSame(6, count($resultArray)); + unset($mark); + } + } -- GitLab From 1c0cc6c7bcf0125aa1af9298e846d0c740c1a7c4 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Tue, 26 Aug 2014 10:50:00 +0200 Subject: [PATCH 21/56] fix wizard test, adjust to changed parameters of the tested method, introduced by 9caa354cfc1f73159f335646ca89be4db72b125e --- apps/user_ldap/tests/wizard.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/tests/wizard.php b/apps/user_ldap/tests/wizard.php index 786769a88cf..50461432c42 100644 --- a/apps/user_ldap/tests/wizard.php +++ b/apps/user_ldap/tests/wizard.php @@ -280,7 +280,7 @@ class Test_Wizard extends \PHPUnit_Framework_TestCase { # The following expectations are the real test # $filters = array('f1', 'f2', '*'); - $resultArray = $wizard->cumulativeSearchOnAttribute($filters, 'cn', true, 0); + $resultArray = $wizard->cumulativeSearchOnAttribute($filters, 'cn', 0); $this->assertSame(6, count($resultArray)); unset($mark); } -- GitLab From 92685acf60afaadcb659eb44b73a6a59de7bce2b Mon Sep 17 00:00:00 2001 From: Clark Tomlinson Date: Tue, 26 Aug 2014 14:17:33 -0400 Subject: [PATCH 22/56] Implementing moment.js Updating Usages Removing unused method Adding JS Doc --- apps/files/js/filelist.js | 2 +- core/js/js.js | 53 +++++++++++++++++++------------------- core/js/oc-dialogs.js | 2 +- settings/js/users/users.js | 5 ++-- 4 files changed, 30 insertions(+), 32 deletions(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 3cbc25fc24b..fd11a80248d 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -703,7 +703,7 @@ "class": "modified", "title": formatDate(mtime), "style": 'color:rgb('+modifiedColor+','+modifiedColor+','+modifiedColor+')' - }).text( relative_modified_date(mtime / 1000) )); + }).text(OC.Util.relativeModifiedDate(mtime))); tr.find('.filesize').text(simpleSize); tr.append(td); return tr; diff --git a/core/js/js.js b/core/js/js.js index 60f9cc11a58..2b3107ecbbf 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -390,11 +390,6 @@ var OC={ } }, 500), dialogs:OCdialogs, - mtime2date:function(mtime) { - mtime = parseInt(mtime,10); - var date = new Date(1000*mtime); - return date.getDate()+'.'+(date.getMonth()+1)+'.'+date.getFullYear()+', '+date.getHours()+':'+date.getMinutes(); - }, /** * Parses a URL query string into a JS map @@ -1242,14 +1237,11 @@ function humanFileSize(size, skipSmallSizes) { /** * Format an UNIX timestamp to a human understandable format - * @param {number} date UNIX timestamp + * @param {number} timestamp UNIX timestamp * @return {string} Human readable format */ -function formatDate(date){ - if(typeof date=='number'){ - date=new Date(date); - } - return $.datepicker.formatDate(datepickerFormatDate, date)+' '+date.getHours()+':'+((date.getMinutes()<10)?'0':'')+date.getMinutes(); +function formatDate(timestamp){ + return OC.Util.formatDate(timestamp); } // @@ -1270,21 +1262,11 @@ function getURLParameter(name) { * @param {number} timestamp A Unix timestamp */ function relative_modified_date(timestamp) { - var timeDiff = Math.round((new Date()).getTime() / 1000) - timestamp; - var diffMinutes = Math.round(timeDiff/60); - var diffHours = Math.round(diffMinutes/60); - var diffDays = Math.round(diffHours/24); - var diffMonths = Math.round(diffDays/31); - if(timeDiff < 60) { return t('core','seconds ago'); } - else if(timeDiff < 3600) { return n('core','%n minute ago', '%n minutes ago', diffMinutes); } - else if(timeDiff < 86400) { return n('core', '%n hour ago', '%n hours ago', diffHours); } - else if(timeDiff < 86400) { return t('core','today'); } - else if(timeDiff < 172800) { return t('core','yesterday'); } - else if(timeDiff < 2678400) { return n('core', '%n day ago', '%n days ago', diffDays); } - else if(timeDiff < 5184000) { return t('core','last month'); } - else if(timeDiff < 31556926) { return n('core', '%n month ago', '%n months ago', diffMonths); } - else if(timeDiff < 63113852) { return t('core','last year'); } - else { return t('core','years ago'); } + /* + Were multiplying by 1000 to bring the timestamp back to its original value + per https://github.com/owncloud/core/pull/10647#discussion_r16790315 + */ + return OC.Util.relativeModifiedDate(timestamp * 1000); } /** @@ -1293,7 +1275,24 @@ function relative_modified_date(timestamp) { OC.Util = { // TODO: remove original functions from global namespace humanFileSize: humanFileSize, - formatDate: formatDate, + + /** + * @param timestamp + * @param format + * @returns {string} timestamp formatted as requested + */ + formatDate: function (timestamp, format) { + format = format || "MMMM D, YYYY h:mm"; + return moment(timestamp).format(format); + }, + + /** + * @param timestamp + * @returns {string} human readable difference from now + */ + relativeModifiedDate: function (timestamp) { + return moment(timestamp).fromNow(); + }, /** * Returns whether the browser supports SVG * @return {boolean} true if the browser supports SVG, false otherwise diff --git a/core/js/oc-dialogs.js b/core/js/oc-dialogs.js index 7f87e1a6f3e..bd6fd2e5007 100644 --- a/core/js/oc-dialogs.js +++ b/core/js/oc-dialogs.js @@ -635,7 +635,7 @@ var OCdialogs = { type: entry.type, dir: dir, filename: entry.name, - date: relative_modified_date(entry.mtime/1000) + date: OC.Util.relativeModifiedDate(entry.mtime) }); if (entry.isPreviewAvailable) { var urlSpec = { diff --git a/settings/js/users/users.js b/settings/js/users/users.js index 60948bb99f3..0f72746ee83 100644 --- a/settings/js/users/users.js +++ b/settings/js/users/users.js @@ -96,9 +96,8 @@ var UserList = { var lastLoginRel = t('settings', 'never'); var lastLoginAbs = lastLoginRel; if(lastLogin !== 0) { - lastLogin = new Date(lastLogin * 1000); - lastLoginRel = relative_modified_date(lastLogin.getTime() / 1000); - lastLoginAbs = formatDate(lastLogin.getTime()); + lastLoginRel = OC.Util.relativeModifiedDate(lastLogin); + lastLoginAbs = OC.Util.formatDate(lastLogin); } var $tdLastLogin = $tr.find('td.lastLogin'); $tdLastLogin.text(lastLoginRel); -- GitLab From 3ee3557d4c88585a2e6aa6ddf15557b42057d09f Mon Sep 17 00:00:00 2001 From: raghunayyar Date: Thu, 28 Aug 2014 16:53:19 +0200 Subject: [PATCH 23/56] Enhancement: Adds input styles to input type dates too. --- core/css/styles.css | 1 + 1 file changed, 1 insertion(+) diff --git a/core/css/styles.css b/core/css/styles.css index 292fb83a056..1bbd37f92b1 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -75,6 +75,7 @@ input[type="number"], input[type="email"], input[type="url"], input[type="time"], +input[type="date"], textarea, select, button, .button, -- GitLab From 20803530481181b49a2ac6af3fbcbb8bc3511d0a Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 28 Aug 2014 18:17:50 +0200 Subject: [PATCH 24/56] allow horizontal scrollbar for personal and admin settings --- core/css/styles.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/css/styles.css b/core/css/styles.css index 1bbd37f92b1..7e41e904127 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -302,6 +302,10 @@ input[type="submit"].enabled { -moz-box-sizing:border-box; box-sizing:border-box; } +/* allow horizontal scrollbar for personal and admin settings */ +#body-settings:not(.snapjs-left) .app-settings { + overflow-x: auto; +} #emptycontent { font-size: 16px; -- GitLab From ba0e65753b82a91d5145955aee0624876dee3ce4 Mon Sep 17 00:00:00 2001 From: Clark Tomlinson Date: Tue, 26 Aug 2014 09:40:56 -0400 Subject: [PATCH 25/56] Init vars with a value if none is provided --- core/js/js.js | 1 + core/js/tests/specs/coreSpec.js | 3 +++ 2 files changed, 4 insertions(+) diff --git a/core/js/js.js b/core/js/js.js index 60f9cc11a58..2f02ccd04a8 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -234,6 +234,7 @@ var OC={ */ generateUrl: function(url, params) { var _build = function (text, vars) { + var vars = vars || []; return text.replace(/{([^{}]*)}/g, function (a, b) { var r = vars[b]; diff --git a/core/js/tests/specs/coreSpec.js b/core/js/tests/specs/coreSpec.js index 166210d0312..3af56c490e6 100644 --- a/core/js/tests/specs/coreSpec.js +++ b/core/js/tests/specs/coreSpec.js @@ -376,6 +376,9 @@ describe('Core base tests', function() { it('substitutes parameters', function() { expect(OC.generateUrl('apps/files/download{file}', {file: '/Welcome.txt'})).toEqual(OC.webroot + '/index.php/apps/files/download/Welcome.txt'); }); + it('doesnt error out with no params provided', function () { + expect(OC.generateUrl('apps/files/download{file}')).toEqual(OC.webroot + '/index.php/apps/files/download{file}'); + }); }); describe('Main menu mobile toggle', function() { var clock; -- GitLab From c7c54d93618d456ce6e53ee35b4280097cc3f54c Mon Sep 17 00:00:00 2001 From: Stephane V Date: Wed, 16 Jul 2014 22:23:15 +0200 Subject: [PATCH 26/56] Adds 2 checkboxes at the top of userlist in the settings, to display/hide optional columns This fixes #9367. --- settings/css/settings.css | 2 ++ settings/js/users/users.js | 23 ++++++++++++++++++++ settings/templates/users/part.createuser.php | 13 ++++++++++- 3 files changed, 37 insertions(+), 1 deletion(-) diff --git a/settings/css/settings.css b/settings/css/settings.css index b9ce79bc3b8..204d69945d4 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -92,6 +92,8 @@ td.password>img,td.displayName>img, td.remove>a, td.quota>img { visibility:hidde td.password, td.quota, td.displayName { width:12em; cursor:pointer; } td.password>span, td.quota>span, rd.displayName>span { margin-right: 1.2em; color: #C7C7C7; } span.usersLastLoginTooltip { white-space: nowrap; } +th#headerLastLogin, td.lastLogin { display : none; } +th#headerStorageLocation, td.storageLocation { display : none; } td.remove { width:1em; padding-right:1em; } tr:hover>td.password>span, tr:hover>td.displayName>span { margin:0; cursor:pointer; } diff --git a/settings/js/users/users.js b/settings/js/users/users.js index 0f72746ee83..86ed43d958e 100644 --- a/settings/js/users/users.js +++ b/settings/js/users/users.js @@ -707,4 +707,27 @@ $(document).ready(function () { ); }); + // Option to display/hide the "Storage location" column + $('#CheckboxStorageLocation').click(function() { + if ($('#CheckboxStorageLocation').is(':checked')) { + $("#headerStorageLocation").show(); + $("#userlist td.storageLocation").show(); + } else { + $("#headerStorageLocation").hide(); + $("#userlist td.storageLocation").hide(); + } + }); + // Option to display/hide the "Last Login" column + $('#CheckboxLastLogin').click(function() { + if ($('#CheckboxLastLogin').is(':checked')) { + $("#headerLastLogin").show(); + $("#userlist td.lastLogin").show(); + } else { + $("#headerLastLogin").hide(); + $("#userlist td.lastLogin").hide(); + } + }); + + + }); diff --git a/settings/templates/users/part.createuser.php b/settings/templates/users/part.createuser.php index 3dfd27ee52d..70e5a237610 100644 --- a/settings/templates/users/part.createuser.php +++ b/settings/templates/users/part.createuser.php @@ -28,7 +28,18 @@ alt="t('Enter the recovery password in order to recover the users files during password change'))?>"/>
    + + + t('Display')) ?> : + + + +
    - \ No newline at end of file + -- GitLab From ba841d956160a83206449ab9d6345d5cd13f67e9 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 29 Aug 2014 00:08:01 +0200 Subject: [PATCH 27/56] user mgmt: move 'Show storage location' and 'Show last log in' to settings area --- settings/css/settings.css | 10 ---- settings/templates/users/main.php | 18 +++++- settings/templates/users/part.createuser.php | 11 ---- settings/templates/users/part.setquota.php | 63 +++++++++----------- 4 files changed, 46 insertions(+), 56 deletions(-) diff --git a/settings/css/settings.css b/settings/css/settings.css index 204d69945d4..a62a971b831 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -100,11 +100,6 @@ tr:hover>td.password>span, tr:hover>td.displayName>span { margin:0; cursor:point tr:hover>td.remove>a, tr:hover>td.password>img,tr:hover>td.displayName>img, tr:hover>td.quota>img { visibility:visible; cursor:pointer; } tr:hover>td.remove>a { float:right; } -div.quota { - margin: 10px; - display: block; -} -div.quota-select-wrapper { position: relative; } div.recoveryPassword { left:50em; display:block; position:absolute; top:-1px; } input#recoveryPassword {width:15em;} #controls select.quota { @@ -113,11 +108,6 @@ input#recoveryPassword {width:15em;} height: 37px; } select.quota-user { position:relative; left:0; top:0; width:10em; } -div.quota>span { - white-space: nowrap; - color: #888; - text-shadow: 0 1px 0 #fff; -} select.quota.active { background: #fff; } input.userFilter {width: 200px;} diff --git a/settings/templates/users/main.php b/settings/templates/users/main.php index c5805d53476..59284eaabd3 100644 --- a/settings/templates/users/main.php +++ b/settings/templates/users/main.php @@ -22,7 +22,23 @@ $userlistParams['subadmingroups'] = array_flip($items);
    inc('users/part.grouplist')); ?>
    - inc('users/part.setquota')); ?> +
    + +
    +
    + inc('users/part.setquota')); ?> + +
    +

    +

    +
    +
    diff --git a/settings/templates/users/part.createuser.php b/settings/templates/users/part.createuser.php index 70e5a237610..edec7587eb5 100644 --- a/settings/templates/users/part.createuser.php +++ b/settings/templates/users/part.createuser.php @@ -28,17 +28,6 @@ alt="t('Enter the recovery password in order to recover the users files during password change'))?>"/> - -
    - t('Display')) ?> : - - -
    -
    diff --git a/settings/templates/users/part.setquota.php b/settings/templates/users/part.setquota.php index afbbee82063..b58df49998a 100644 --- a/settings/templates/users/part.setquota.php +++ b/settings/templates/users/part.setquota.php @@ -1,39 +1,34 @@ -
    - -
    -
    -
    - - t('Default Quota'));?> - - " data-tipsy-gravity="s"> + + + + - - - - - - -
    + + + + + + +
    -- GitLab From 359590d5763ba6e92c331258f4ac4284e67750d2 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 29 Aug 2014 01:56:59 -0400 Subject: [PATCH 28/56] [tx-robot] updated from transifex --- apps/files_external/l10n/af_ZA.php | 3 +- apps/files_external/l10n/ar.php | 3 - apps/files_external/l10n/ast.php | 4 -- apps/files_external/l10n/az.php | 1 - apps/files_external/l10n/bg_BG.php | 4 -- apps/files_external/l10n/bn_BD.php | 4 +- apps/files_external/l10n/ca.php | 4 -- apps/files_external/l10n/cs_CZ.php | 4 -- apps/files_external/l10n/cy_GB.php | 2 - apps/files_external/l10n/da.php | 4 -- apps/files_external/l10n/de.php | 4 -- apps/files_external/l10n/de_CH.php | 3 - apps/files_external/l10n/de_DE.php | 4 -- apps/files_external/l10n/el.php | 4 -- apps/files_external/l10n/en_GB.php | 4 -- apps/files_external/l10n/eo.php | 4 -- apps/files_external/l10n/es.php | 4 -- apps/files_external/l10n/es_AR.php | 3 - apps/files_external/l10n/es_CL.php | 3 +- apps/files_external/l10n/es_MX.php | 3 - apps/files_external/l10n/et_EE.php | 4 -- apps/files_external/l10n/eu.php | 4 -- apps/files_external/l10n/fa.php | 3 - apps/files_external/l10n/fi_FI.php | 4 -- apps/files_external/l10n/fr.php | 4 -- apps/files_external/l10n/gl.php | 4 -- apps/files_external/l10n/he.php | 3 - apps/files_external/l10n/hi.php | 3 +- apps/files_external/l10n/hr.php | 2 - apps/files_external/l10n/hu_HU.php | 3 - apps/files_external/l10n/ia.php | 2 - apps/files_external/l10n/id.php | 4 -- apps/files_external/l10n/is.php | 3 - apps/files_external/l10n/it.php | 4 -- apps/files_external/l10n/ja.php | 4 -- apps/files_external/l10n/ka_GE.php | 3 - apps/files_external/l10n/km.php | 3 - apps/files_external/l10n/ko.php | 3 - apps/files_external/l10n/ku_IQ.php | 3 +- apps/files_external/l10n/lb.php | 2 - apps/files_external/l10n/lt_LT.php | 3 - apps/files_external/l10n/lv.php | 3 - apps/files_external/l10n/mk.php | 3 - apps/files_external/l10n/ms_MY.php | 2 - apps/files_external/l10n/my_MM.php | 3 +- apps/files_external/l10n/nb_NO.php | 4 -- apps/files_external/l10n/nl.php | 4 -- apps/files_external/l10n/nn_NO.php | 2 - apps/files_external/l10n/oc.php | 2 - apps/files_external/l10n/pa.php | 1 - apps/files_external/l10n/pl.php | 4 -- apps/files_external/l10n/pt_BR.php | 4 -- apps/files_external/l10n/pt_PT.php | 4 -- apps/files_external/l10n/ro.php | 3 - apps/files_external/l10n/ru.php | 4 -- apps/files_external/l10n/si_LK.php | 3 - apps/files_external/l10n/sk_SK.php | 4 -- apps/files_external/l10n/sl.php | 4 -- apps/files_external/l10n/sq.php | 2 - apps/files_external/l10n/sr.php | 2 - apps/files_external/l10n/sr@latin.php | 2 - apps/files_external/l10n/sv.php | 4 -- apps/files_external/l10n/ta_LK.php | 3 - apps/files_external/l10n/te.php | 1 - apps/files_external/l10n/th_TH.php | 3 - apps/files_external/l10n/tr.php | 4 -- apps/files_external/l10n/ug.php | 2 - apps/files_external/l10n/uk.php | 3 - apps/files_external/l10n/ur_PK.php | 1 - apps/files_external/l10n/vi.php | 3 - apps/files_external/l10n/zh_CN.php | 4 -- apps/files_external/l10n/zh_HK.php | 2 - apps/files_external/l10n/zh_TW.php | 4 -- apps/user_ldap/l10n/bn_BD.php | 4 ++ core/l10n/ach.php | 4 -- core/l10n/ady.php | 4 -- core/l10n/af_ZA.php | 10 ---- core/l10n/ak.php | 4 -- core/l10n/am_ET.php | 4 -- core/l10n/ar.php | 10 ---- core/l10n/ast.php | 10 ---- core/l10n/az.php | 4 -- core/l10n/be.php | 10 ---- core/l10n/bg_BG.php | 10 ---- core/l10n/bn_BD.php | 11 +--- core/l10n/bn_IN.php | 4 -- core/l10n/bs.php | 4 -- core/l10n/ca.php | 10 ---- core/l10n/ca@valencia.php | 4 -- core/l10n/cs_CZ.php | 12 +--- core/l10n/cy_GB.php | 10 ---- core/l10n/da.php | 10 ---- core/l10n/de.php | 10 ---- core/l10n/de_AT.php | 4 -- core/l10n/de_CH.php | 10 ---- core/l10n/de_DE.php | 10 ---- core/l10n/el.php | 10 ---- core/l10n/en@pirate.php | 4 -- core/l10n/en_GB.php | 10 ---- core/l10n/en_NZ.php | 4 -- core/l10n/eo.php | 10 ---- core/l10n/es.php | 10 ---- core/l10n/es_AR.php | 10 ---- core/l10n/es_BO.php | 4 -- core/l10n/es_CL.php | 10 ---- core/l10n/es_CO.php | 4 -- core/l10n/es_CR.php | 4 -- core/l10n/es_EC.php | 4 -- core/l10n/es_MX.php | 10 ---- core/l10n/es_PE.php | 4 -- core/l10n/es_PY.php | 4 -- core/l10n/es_US.php | 4 -- core/l10n/es_UY.php | 4 -- core/l10n/et_EE.php | 10 ---- core/l10n/eu.php | 10 ---- core/l10n/eu_ES.php | 4 -- core/l10n/fa.php | 10 ---- core/l10n/fi_FI.php | 10 ---- core/l10n/fr.php | 10 ---- core/l10n/fr_CA.php | 4 -- core/l10n/gl.php | 10 ---- core/l10n/he.php | 10 ---- core/l10n/hi.php | 4 -- core/l10n/hi_IN.php | 4 -- core/l10n/hr.php | 10 ---- core/l10n/hu_HU.php | 10 ---- core/l10n/hy.php | 4 -- core/l10n/ia.php | 10 ---- core/l10n/id.php | 10 ---- core/l10n/io.php | 4 -- core/l10n/is.php | 10 ---- core/l10n/it.php | 10 ---- core/l10n/ja.php | 10 ---- core/l10n/jv.php | 4 -- core/l10n/ka_GE.php | 10 ---- core/l10n/km.php | 10 ---- core/l10n/kn.php | 4 -- core/l10n/ko.php | 10 ---- core/l10n/ku_IQ.php | 4 -- core/l10n/lb.php | 10 ---- core/l10n/lt_LT.php | 10 ---- core/l10n/lv.php | 10 ---- core/l10n/mk.php | 10 ---- core/l10n/ml.php | 4 -- core/l10n/ml_IN.php | 4 -- core/l10n/mn.php | 4 -- core/l10n/ms_MY.php | 4 -- core/l10n/my_MM.php | 10 ---- core/l10n/nb_NO.php | 10 ---- core/l10n/nds.php | 4 -- core/l10n/ne.php | 4 -- core/l10n/nl.php | 10 ---- core/l10n/nn_NO.php | 10 ---- core/l10n/nqo.php | 4 -- core/l10n/oc.php | 10 ---- core/l10n/or_IN.php | 4 -- core/l10n/pa.php | 10 ---- core/l10n/pl.php | 10 ---- core/l10n/pt_BR.php | 10 ---- core/l10n/pt_PT.php | 13 +---- core/l10n/ro.php | 10 ---- core/l10n/ru.php | 10 ---- core/l10n/si_LK.php | 10 ---- core/l10n/sk.php | 4 -- core/l10n/sk_SK.php | 10 ---- core/l10n/sl.php | 10 ---- core/l10n/sq.php | 10 ---- core/l10n/sr.php | 10 ---- core/l10n/sr@latin.php | 10 ---- core/l10n/su.php | 4 -- core/l10n/sv.php | 10 ---- core/l10n/sw_KE.php | 4 -- core/l10n/ta_IN.php | 4 -- core/l10n/ta_LK.php | 10 ---- core/l10n/te.php | 10 ---- core/l10n/th_TH.php | 10 ---- core/l10n/tr.php | 10 ---- core/l10n/tzm.php | 4 -- core/l10n/ug.php | 6 -- core/l10n/uk.php | 10 ---- core/l10n/ur.php | 4 -- core/l10n/ur_PK.php | 10 ---- core/l10n/uz.php | 4 -- core/l10n/vi.php | 10 ---- core/l10n/zh_CN.php | 10 ---- core/l10n/zh_HK.php | 10 ---- core/l10n/zh_TW.php | 10 ---- l10n/ach/core.po | 64 +++------------------ l10n/ach/files_external.po | 52 ++++++++--------- l10n/ady/core.po | 64 +++------------------ l10n/ady/files_external.po | 52 ++++++++--------- l10n/af_ZA/core.po | 64 +++------------------ l10n/af_ZA/files_external.po | 52 ++++++++--------- l10n/af_ZA/lib.po | 4 +- l10n/ak/core.po | 64 +++------------------ l10n/ak/files_external.po | 52 ++++++++--------- l10n/am_ET/core.po | 64 +++------------------ l10n/am_ET/files_external.po | 52 ++++++++--------- l10n/ar/core.po | 80 +++------------------------ l10n/ar/files.po | 4 +- l10n/ar/files_external.po | 42 ++++++-------- l10n/ar/files_trashbin.po | 4 +- l10n/ar/lib.po | 4 +- l10n/ar/settings.po | 18 +++--- l10n/ast/core.po | 64 +++------------------ l10n/ast/files.po | 4 +- l10n/ast/files_external.po | 44 ++++++--------- l10n/ast/files_trashbin.po | 4 +- l10n/ast/lib.po | 4 +- l10n/ast/settings.po | 18 +++--- l10n/az/core.po | 66 +++------------------- l10n/az/files.po | 4 +- l10n/az/files_external.po | 44 ++++++--------- l10n/az/files_trashbin.po | 4 +- l10n/az/lib.po | 4 +- l10n/az/settings.po | 18 +++--- l10n/be/core.po | 72 +++--------------------- l10n/be/files_external.po | 52 ++++++++--------- l10n/be/lib.po | 4 +- l10n/bg_BG/core.po | 66 +++------------------- l10n/bg_BG/files.po | 4 +- l10n/bg_BG/files_external.po | 44 ++++++--------- l10n/bg_BG/files_sharing.po | 10 ++-- l10n/bg_BG/files_trashbin.po | 4 +- l10n/bg_BG/lib.po | 4 +- l10n/bg_BG/settings.po | 18 +++--- l10n/bn_BD/core.po | 68 ++++------------------- l10n/bn_BD/files.po | 4 +- l10n/bn_BD/files_external.po | 46 +++++++-------- l10n/bn_BD/files_trashbin.po | 4 +- l10n/bn_BD/lib.po | 4 +- l10n/bn_BD/settings.po | 20 +++---- l10n/bn_BD/user_ldap.po | 15 ++--- l10n/bn_IN/core.po | 64 +++------------------ l10n/bn_IN/files.po | 4 +- l10n/bn_IN/files_external.po | 42 ++++++-------- l10n/bn_IN/files_trashbin.po | 4 +- l10n/bn_IN/lib.po | 4 +- l10n/bn_IN/settings.po | 18 +++--- l10n/bs/core.po | 68 +++-------------------- l10n/bs/files_external.po | 52 ++++++++--------- l10n/ca/core.po | 64 +++------------------ l10n/ca/files.po | 4 +- l10n/ca/files_external.po | 42 ++++++-------- l10n/ca/files_trashbin.po | 4 +- l10n/ca/lib.po | 4 +- l10n/ca/settings.po | 18 +++--- l10n/ca@valencia/core.po | 64 +++------------------ l10n/ca@valencia/files_external.po | 52 ++++++++--------- l10n/cs_CZ/core.po | 72 ++++-------------------- l10n/cs_CZ/files.po | 4 +- l10n/cs_CZ/files_external.po | 44 ++++++--------- l10n/cs_CZ/files_trashbin.po | 4 +- l10n/cs_CZ/lib.po | 4 +- l10n/cs_CZ/settings.po | 24 ++++---- l10n/cy_GB/core.po | 72 +++--------------------- l10n/cy_GB/files.po | 4 +- l10n/cy_GB/files_external.po | 42 ++++++-------- l10n/cy_GB/files_trashbin.po | 4 +- l10n/cy_GB/lib.po | 4 +- l10n/cy_GB/settings.po | 18 +++--- l10n/da/core.po | 66 +++------------------- l10n/da/files.po | 4 +- l10n/da/files_external.po | 42 ++++++-------- l10n/da/files_trashbin.po | 4 +- l10n/da/lib.po | 4 +- l10n/da/settings.po | 18 +++--- l10n/de/core.po | 66 +++------------------- l10n/de/files.po | 4 +- l10n/de/files_external.po | 42 ++++++-------- l10n/de/files_trashbin.po | 4 +- l10n/de/lib.po | 4 +- l10n/de/settings.po | 18 +++--- l10n/de_AT/core.po | 64 +++------------------ l10n/de_AT/files.po | 4 +- l10n/de_AT/files_external.po | 42 ++++++-------- l10n/de_AT/files_trashbin.po | 4 +- l10n/de_AT/lib.po | 4 +- l10n/de_AT/settings.po | 18 +++--- l10n/de_CH/core.po | 64 +++------------------ l10n/de_CH/files.po | 4 +- l10n/de_CH/files_external.po | 42 ++++++-------- l10n/de_CH/files_trashbin.po | 4 +- l10n/de_CH/lib.po | 4 +- l10n/de_CH/settings.po | 18 +++--- l10n/de_DE/core.po | 66 +++------------------- l10n/de_DE/files.po | 4 +- l10n/de_DE/files_external.po | 42 ++++++-------- l10n/de_DE/files_trashbin.po | 4 +- l10n/de_DE/lib.po | 4 +- l10n/de_DE/settings.po | 18 +++--- l10n/el/core.po | 66 +++------------------- l10n/el/files.po | 4 +- l10n/el/files_external.po | 42 ++++++-------- l10n/el/files_trashbin.po | 4 +- l10n/el/lib.po | 4 +- l10n/el/settings.po | 18 +++--- l10n/en@pirate/core.po | 64 +++------------------ l10n/en@pirate/files_external.po | 52 ++++++++--------- l10n/en_GB/core.po | 66 +++------------------- l10n/en_GB/files.po | 4 +- l10n/en_GB/files_external.po | 42 ++++++-------- l10n/en_GB/files_trashbin.po | 4 +- l10n/en_GB/lib.po | 4 +- l10n/en_GB/settings.po | 18 +++--- l10n/en_NZ/core.po | 64 +++------------------ l10n/en_NZ/files_external.po | 52 ++++++++--------- l10n/eo/core.po | 64 +++------------------ l10n/eo/files.po | 4 +- l10n/eo/files_external.po | 42 ++++++-------- l10n/eo/files_trashbin.po | 4 +- l10n/eo/lib.po | 4 +- l10n/eo/settings.po | 18 +++--- l10n/es/core.po | 66 +++------------------- l10n/es/files.po | 4 +- l10n/es/files_external.po | 44 ++++++--------- l10n/es/files_trashbin.po | 4 +- l10n/es/lib.po | 4 +- l10n/es/settings.po | 18 +++--- l10n/es_AR/core.po | 64 +++------------------ l10n/es_AR/files.po | 4 +- l10n/es_AR/files_external.po | 42 ++++++-------- l10n/es_AR/files_trashbin.po | 4 +- l10n/es_AR/lib.po | 4 +- l10n/es_AR/settings.po | 18 +++--- l10n/es_BO/core.po | 64 +++------------------ l10n/es_BO/files_external.po | 52 ++++++++--------- l10n/es_CL/core.po | 64 +++------------------ l10n/es_CL/files_external.po | 52 ++++++++--------- l10n/es_CL/lib.po | 4 +- l10n/es_CO/core.po | 64 +++------------------ l10n/es_CO/files_external.po | 52 ++++++++--------- l10n/es_CR/core.po | 64 +++------------------ l10n/es_CR/files_external.po | 52 ++++++++--------- l10n/es_EC/core.po | 64 +++------------------ l10n/es_EC/files_external.po | 52 ++++++++--------- l10n/es_MX/core.po | 64 +++------------------ l10n/es_MX/files.po | 4 +- l10n/es_MX/files_external.po | 42 ++++++-------- l10n/es_MX/files_trashbin.po | 4 +- l10n/es_MX/lib.po | 4 +- l10n/es_MX/settings.po | 18 +++--- l10n/es_PE/core.po | 64 +++------------------ l10n/es_PE/files_external.po | 52 ++++++++--------- l10n/es_PY/core.po | 64 +++------------------ l10n/es_PY/files_external.po | 52 ++++++++--------- l10n/es_US/core.po | 64 +++------------------ l10n/es_US/files_external.po | 52 ++++++++--------- l10n/es_UY/core.po | 64 +++------------------ l10n/es_UY/files_external.po | 52 ++++++++--------- l10n/et_EE/core.po | 64 +++------------------ l10n/et_EE/files.po | 4 +- l10n/et_EE/files_external.po | 42 ++++++-------- l10n/et_EE/files_trashbin.po | 4 +- l10n/et_EE/lib.po | 4 +- l10n/et_EE/settings.po | 18 +++--- l10n/eu/core.po | 66 +++------------------- l10n/eu/files.po | 4 +- l10n/eu/files_external.po | 42 ++++++-------- l10n/eu/files_trashbin.po | 4 +- l10n/eu/lib.po | 4 +- l10n/eu/settings.po | 18 +++--- l10n/eu_ES/core.po | 64 +++------------------ l10n/eu_ES/files.po | 4 +- l10n/eu_ES/files_external.po | 42 ++++++-------- l10n/eu_ES/files_trashbin.po | 4 +- l10n/eu_ES/settings.po | 18 +++--- l10n/fa/core.po | 60 +++----------------- l10n/fa/files.po | 4 +- l10n/fa/files_external.po | 42 ++++++-------- l10n/fa/files_trashbin.po | 4 +- l10n/fa/lib.po | 4 +- l10n/fa/settings.po | 18 +++--- l10n/fi_FI/core.po | 66 +++------------------- l10n/fi_FI/files.po | 4 +- l10n/fi_FI/files_external.po | 42 ++++++-------- l10n/fi_FI/files_trashbin.po | 4 +- l10n/fi_FI/lib.po | 4 +- l10n/fi_FI/settings.po | 18 +++--- l10n/fr/core.po | 64 +++------------------ l10n/fr/files.po | 4 +- l10n/fr/files_external.po | 42 ++++++-------- l10n/fr/files_trashbin.po | 4 +- l10n/fr/lib.po | 4 +- l10n/fr/settings.po | 18 +++--- l10n/fr_CA/core.po | 64 +++------------------ l10n/fr_CA/files_external.po | 52 ++++++++--------- l10n/gl/core.po | 64 +++------------------ l10n/gl/files.po | 4 +- l10n/gl/files_external.po | 44 ++++++--------- l10n/gl/files_trashbin.po | 4 +- l10n/gl/lib.po | 4 +- l10n/gl/settings.po | 18 +++--- l10n/he/core.po | 64 +++------------------ l10n/he/files.po | 4 +- l10n/he/files_external.po | 42 ++++++-------- l10n/he/files_trashbin.po | 4 +- l10n/he/lib.po | 4 +- l10n/he/settings.po | 18 +++--- l10n/hi/core.po | 64 +++------------------ l10n/hi/files_external.po | 52 ++++++++--------- l10n/hi/lib.po | 4 +- l10n/hi/settings.po | 18 +++--- l10n/hi_IN/core.po | 64 +++------------------ l10n/hi_IN/files_external.po | 52 ++++++++--------- l10n/hr/core.po | 68 +++-------------------- l10n/hr/files.po | 4 +- l10n/hr/files_external.po | 44 ++++++--------- l10n/hr/files_trashbin.po | 4 +- l10n/hr/lib.po | 4 +- l10n/hr/settings.po | 18 +++--- l10n/hu_HU/core.po | 66 +++------------------- l10n/hu_HU/files.po | 4 +- l10n/hu_HU/files_external.po | 42 ++++++-------- l10n/hu_HU/files_trashbin.po | 4 +- l10n/hu_HU/lib.po | 4 +- l10n/hu_HU/settings.po | 18 +++--- l10n/hy/core.po | 64 +++------------------ l10n/hy/files.po | 4 +- l10n/hy/files_external.po | 42 ++++++-------- l10n/hy/files_trashbin.po | 4 +- l10n/hy/settings.po | 18 +++--- l10n/ia/core.po | 64 +++------------------ l10n/ia/files.po | 4 +- l10n/ia/files_external.po | 42 ++++++-------- l10n/ia/files_trashbin.po | 4 +- l10n/ia/lib.po | 4 +- l10n/ia/settings.po | 18 +++--- l10n/id/core.po | 60 +++----------------- l10n/id/files.po | 4 +- l10n/id/files_external.po | 42 ++++++-------- l10n/id/files_trashbin.po | 4 +- l10n/id/lib.po | 4 +- l10n/id/settings.po | 18 +++--- l10n/io/core.po | 64 +++------------------ l10n/io/files_external.po | 54 ++++++++---------- l10n/is/core.po | 64 +++------------------ l10n/is/files.po | 4 +- l10n/is/files_external.po | 42 ++++++-------- l10n/is/files_trashbin.po | 4 +- l10n/is/lib.po | 4 +- l10n/is/settings.po | 18 +++--- l10n/it/core.po | 66 +++------------------- l10n/it/files.po | 4 +- l10n/it/files_external.po | 44 ++++++--------- l10n/it/files_trashbin.po | 4 +- l10n/it/lib.po | 4 +- l10n/it/settings.po | 18 +++--- l10n/ja/core.po | 60 +++----------------- l10n/ja/files.po | 4 +- l10n/ja/files_external.po | 44 ++++++--------- l10n/ja/files_trashbin.po | 4 +- l10n/ja/lib.po | 4 +- l10n/ja/settings.po | 18 +++--- l10n/jv/core.po | 64 +++------------------ l10n/jv/files_external.po | 42 ++++++-------- l10n/ka_GE/core.po | 60 +++----------------- l10n/ka_GE/files.po | 4 +- l10n/ka_GE/files_external.po | 42 ++++++-------- l10n/ka_GE/files_trashbin.po | 4 +- l10n/ka_GE/lib.po | 4 +- l10n/ka_GE/settings.po | 18 +++--- l10n/km/core.po | 60 +++----------------- l10n/km/files.po | 4 +- l10n/km/files_external.po | 42 ++++++-------- l10n/km/files_trashbin.po | 4 +- l10n/km/lib.po | 4 +- l10n/km/settings.po | 18 +++--- l10n/kn/core.po | 60 +++----------------- l10n/kn/files_external.po | 52 ++++++++--------- l10n/ko/core.po | 60 +++----------------- l10n/ko/files.po | 4 +- l10n/ko/files_external.po | 42 ++++++-------- l10n/ko/files_trashbin.po | 4 +- l10n/ko/lib.po | 4 +- l10n/ko/settings.po | 18 +++--- l10n/ku_IQ/core.po | 64 +++------------------ l10n/ku_IQ/files_external.po | 42 ++++++-------- l10n/ku_IQ/lib.po | 4 +- l10n/lb/core.po | 64 +++------------------ l10n/lb/files.po | 4 +- l10n/lb/files_external.po | 42 ++++++-------- l10n/lb/files_trashbin.po | 4 +- l10n/lb/lib.po | 4 +- l10n/lb/settings.po | 18 +++--- l10n/lt_LT/core.po | 68 +++-------------------- l10n/lt_LT/files.po | 4 +- l10n/lt_LT/files_external.po | 42 ++++++-------- l10n/lt_LT/files_trashbin.po | 4 +- l10n/lt_LT/lib.po | 4 +- l10n/lt_LT/settings.po | 18 +++--- l10n/lv/core.po | 68 +++-------------------- l10n/lv/files.po | 4 +- l10n/lv/files_external.po | 42 ++++++-------- l10n/lv/files_trashbin.po | 4 +- l10n/lv/lib.po | 4 +- l10n/lv/settings.po | 18 +++--- l10n/mk/core.po | 64 +++------------------ l10n/mk/files.po | 4 +- l10n/mk/files_external.po | 42 ++++++-------- l10n/mk/files_trashbin.po | 4 +- l10n/mk/lib.po | 4 +- l10n/mk/settings.po | 18 +++--- l10n/ml/core.po | 64 +++------------------ l10n/ml/files_external.po | 52 ++++++++--------- l10n/ml_IN/core.po | 64 +++------------------ l10n/ml_IN/files_external.po | 52 ++++++++--------- l10n/mn/core.po | 64 +++------------------ l10n/mn/files_external.po | 52 ++++++++--------- l10n/ms_MY/core.po | 60 +++----------------- l10n/ms_MY/files.po | 4 +- l10n/ms_MY/files_external.po | 42 ++++++-------- l10n/ms_MY/files_trashbin.po | 4 +- l10n/ms_MY/lib.po | 4 +- l10n/ms_MY/settings.po | 18 +++--- l10n/my_MM/core.po | 60 +++----------------- l10n/my_MM/files_external.po | 42 ++++++-------- l10n/nb_NO/core.po | 66 +++------------------- l10n/nb_NO/files.po | 4 +- l10n/nb_NO/files_external.po | 42 ++++++-------- l10n/nb_NO/files_trashbin.po | 4 +- l10n/nb_NO/lib.po | 4 +- l10n/nb_NO/settings.po | 18 +++--- l10n/nds/core.po | 64 +++------------------ l10n/nds/files_external.po | 52 ++++++++--------- l10n/ne/core.po | 64 +++------------------ l10n/ne/files_external.po | 52 ++++++++--------- l10n/nl/core.po | 66 +++------------------- l10n/nl/files.po | 4 +- l10n/nl/files_external.po | 42 ++++++-------- l10n/nl/files_trashbin.po | 4 +- l10n/nl/lib.po | 4 +- l10n/nl/settings.po | 18 +++--- l10n/nn_NO/core.po | 66 +++------------------- l10n/nn_NO/files.po | 4 +- l10n/nn_NO/files_external.po | 42 ++++++-------- l10n/nn_NO/files_trashbin.po | 4 +- l10n/nn_NO/lib.po | 4 +- l10n/nn_NO/settings.po | 18 +++--- l10n/nqo/core.po | 60 +++----------------- l10n/nqo/files_external.po | 52 ++++++++--------- l10n/oc/core.po | 64 +++------------------ l10n/oc/files.po | 4 +- l10n/oc/files_external.po | 42 ++++++-------- l10n/oc/files_trashbin.po | 4 +- l10n/oc/lib.po | 4 +- l10n/oc/settings.po | 18 +++--- l10n/or_IN/core.po | 64 +++------------------ l10n/or_IN/files_external.po | 52 ++++++++--------- l10n/pa/core.po | 64 +++------------------ l10n/pa/files.po | 4 +- l10n/pa/files_external.po | 42 ++++++-------- l10n/pa/files_trashbin.po | 4 +- l10n/pa/lib.po | 4 +- l10n/pa/settings.po | 18 +++--- l10n/pl/core.po | 70 +++-------------------- l10n/pl/files.po | 4 +- l10n/pl/files_external.po | 44 ++++++--------- l10n/pl/files_trashbin.po | 4 +- l10n/pl/lib.po | 4 +- l10n/pl/settings.po | 18 +++--- l10n/pt_BR/core.po | 66 +++------------------- l10n/pt_BR/files.po | 4 +- l10n/pt_BR/files_external.po | 42 ++++++-------- l10n/pt_BR/files_trashbin.po | 4 +- l10n/pt_BR/lib.po | 4 +- l10n/pt_BR/settings.po | 18 +++--- l10n/pt_PT/core.po | 72 ++++-------------------- l10n/pt_PT/files.po | 4 +- l10n/pt_PT/files_external.po | 42 ++++++-------- l10n/pt_PT/files_trashbin.po | 4 +- l10n/pt_PT/lib.po | 12 ++-- l10n/pt_PT/settings.po | 32 +++++------ l10n/ro/core.po | 68 +++-------------------- l10n/ro/files.po | 4 +- l10n/ro/files_external.po | 42 ++++++-------- l10n/ro/files_trashbin.po | 4 +- l10n/ro/lib.po | 4 +- l10n/ro/settings.po | 18 +++--- l10n/ru/core.po | 70 +++-------------------- l10n/ru/files.po | 4 +- l10n/ru/files_external.po | 44 ++++++--------- l10n/ru/files_trashbin.po | 4 +- l10n/ru/lib.po | 4 +- l10n/ru/settings.po | 18 +++--- l10n/si_LK/core.po | 64 +++------------------ l10n/si_LK/files.po | 4 +- l10n/si_LK/files_external.po | 42 ++++++-------- l10n/si_LK/files_trashbin.po | 4 +- l10n/si_LK/lib.po | 4 +- l10n/si_LK/settings.po | 18 +++--- l10n/sk/core.po | 68 +++-------------------- l10n/sk/files.po | 4 +- l10n/sk/files_external.po | 42 ++++++-------- l10n/sk/files_trashbin.po | 4 +- l10n/sk/lib.po | 4 +- l10n/sk/settings.po | 18 +++--- l10n/sk_SK/core.po | 68 +++-------------------- l10n/sk_SK/files.po | 4 +- l10n/sk_SK/files_external.po | 44 ++++++--------- l10n/sk_SK/files_trashbin.po | 4 +- l10n/sk_SK/lib.po | 4 +- l10n/sk_SK/settings.po | 18 +++--- l10n/sl/core.po | 74 +++---------------------- l10n/sl/files.po | 4 +- l10n/sl/files_external.po | 44 ++++++--------- l10n/sl/files_trashbin.po | 4 +- l10n/sl/lib.po | 4 +- l10n/sl/settings.po | 18 +++--- l10n/sq/core.po | 64 +++------------------ l10n/sq/files.po | 4 +- l10n/sq/files_external.po | 42 ++++++-------- l10n/sq/files_trashbin.po | 4 +- l10n/sq/lib.po | 4 +- l10n/sq/settings.po | 18 +++--- l10n/sr/core.po | 68 +++-------------------- l10n/sr/files.po | 4 +- l10n/sr/files_external.po | 42 ++++++-------- l10n/sr/files_trashbin.po | 4 +- l10n/sr/lib.po | 4 +- l10n/sr/settings.po | 18 +++--- l10n/sr@latin/core.po | 68 +++-------------------- l10n/sr@latin/files.po | 4 +- l10n/sr@latin/files_external.po | 42 ++++++-------- l10n/sr@latin/files_trashbin.po | 4 +- l10n/sr@latin/lib.po | 4 +- l10n/sr@latin/settings.po | 18 +++--- l10n/su/core.po | 60 +++----------------- l10n/su/files_external.po | 52 ++++++++--------- l10n/sv/core.po | 64 +++------------------ l10n/sv/files.po | 4 +- l10n/sv/files_external.po | 42 ++++++-------- l10n/sv/files_trashbin.po | 4 +- l10n/sv/lib.po | 4 +- l10n/sv/settings.po | 18 +++--- l10n/sw_KE/core.po | 64 +++------------------ l10n/sw_KE/files_external.po | 52 ++++++++--------- l10n/ta_IN/core.po | 64 +++------------------ l10n/ta_IN/files_external.po | 52 ++++++++--------- l10n/ta_IN/lib.po | 4 +- l10n/ta_IN/settings.po | 18 +++--- l10n/ta_LK/core.po | 64 +++------------------ l10n/ta_LK/files.po | 4 +- l10n/ta_LK/files_external.po | 42 ++++++-------- l10n/ta_LK/files_trashbin.po | 4 +- l10n/ta_LK/lib.po | 4 +- l10n/ta_LK/settings.po | 18 +++--- l10n/te/core.po | 64 +++------------------ l10n/te/files.po | 4 +- l10n/te/files_external.po | 42 ++++++-------- l10n/te/files_trashbin.po | 4 +- l10n/te/lib.po | 4 +- l10n/te/settings.po | 18 +++--- l10n/templates/core.pot | 62 +++------------------ l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 40 ++++++-------- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/private.pot | 2 +- l10n/templates/settings.pot | 16 +++--- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 60 +++----------------- l10n/th_TH/files.po | 4 +- l10n/th_TH/files_external.po | 42 ++++++-------- l10n/th_TH/files_trashbin.po | 4 +- l10n/th_TH/lib.po | 4 +- l10n/th_TH/settings.po | 18 +++--- l10n/tr/core.po | 66 +++------------------- l10n/tr/files.po | 4 +- l10n/tr/files_external.po | 42 ++++++-------- l10n/tr/files_trashbin.po | 4 +- l10n/tr/lib.po | 4 +- l10n/tr/settings.po | 18 +++--- l10n/tzm/core.po | 64 +++------------------ l10n/tzm/files_external.po | 52 ++++++++--------- l10n/ug/core.po | 60 +++----------------- l10n/ug/files.po | 4 +- l10n/ug/files_external.po | 42 ++++++-------- l10n/ug/files_trashbin.po | 4 +- l10n/ug/lib.po | 4 +- l10n/ug/settings.po | 18 +++--- l10n/uk/core.po | 68 +++-------------------- l10n/uk/files.po | 4 +- l10n/uk/files_external.po | 42 ++++++-------- l10n/uk/files_trashbin.po | 4 +- l10n/uk/lib.po | 4 +- l10n/uk/settings.po | 18 +++--- l10n/ur/core.po | 64 +++------------------ l10n/ur/files_external.po | 52 ++++++++--------- l10n/ur_PK/core.po | 64 +++------------------ l10n/ur_PK/files.po | 4 +- l10n/ur_PK/files_external.po | 42 ++++++-------- l10n/ur_PK/files_trashbin.po | 4 +- l10n/ur_PK/lib.po | 4 +- l10n/ur_PK/settings.po | 18 +++--- l10n/uz/core.po | 60 +++----------------- l10n/uz/files_external.po | 52 ++++++++--------- l10n/vi/core.po | 60 +++----------------- l10n/vi/files.po | 4 +- l10n/vi/files_external.po | 42 ++++++-------- l10n/vi/files_trashbin.po | 4 +- l10n/vi/lib.po | 4 +- l10n/vi/settings.po | 18 +++--- l10n/zh_CN/core.po | 60 +++----------------- l10n/zh_CN/files.po | 4 +- l10n/zh_CN/files_external.po | 44 ++++++--------- l10n/zh_CN/files_trashbin.po | 4 +- l10n/zh_CN/lib.po | 4 +- l10n/zh_CN/settings.po | 18 +++--- l10n/zh_HK/core.po | 60 +++----------------- l10n/zh_HK/files.po | 4 +- l10n/zh_HK/files_external.po | 42 ++++++-------- l10n/zh_HK/files_trashbin.po | 4 +- l10n/zh_HK/lib.po | 4 +- l10n/zh_HK/settings.po | 18 +++--- l10n/zh_TW/core.po | 62 +++------------------ l10n/zh_TW/files.po | 4 +- l10n/zh_TW/files_external.po | 42 ++++++-------- l10n/zh_TW/files_trashbin.po | 4 +- l10n/zh_TW/lib.po | 4 +- l10n/zh_TW/settings.po | 18 +++--- lib/l10n/pt_PT.php | 3 + settings/l10n/bn_BD.php | 1 + settings/l10n/cs_CZ.php | 2 + settings/l10n/pt_PT.php | 6 ++ 729 files changed, 4273 insertions(+), 11741 deletions(-) diff --git a/apps/files_external/l10n/af_ZA.php b/apps/files_external/l10n/af_ZA.php index fc60a7f25a4..7b416fc117a 100644 --- a/apps/files_external/l10n/af_ZA.php +++ b/apps/files_external/l10n/af_ZA.php @@ -3,7 +3,6 @@ $TRANSLATIONS = array( "Username" => "Gebruikersnaam", "Password" => "Wagwoord", "Share" => "Deel", -"Personal" => "Persoonlik", -"Users" => "Gebruikers" +"Personal" => "Persoonlik" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/ar.php b/apps/files_external/l10n/ar.php index 32709aa170f..4e57a092120 100644 --- a/apps/files_external/l10n/ar.php +++ b/apps/files_external/l10n/ar.php @@ -11,9 +11,6 @@ $TRANSLATIONS = array( "Name" => "اسم", "Folder name" => "اسم المجلد", "Configuration" => "إعداد", -"All Users" => "كل المستخدمين", -"Groups" => "مجموعات", -"Users" => "المستخدمين", "Delete" => "إلغاء" ); $PLURAL_FORMS = "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"; diff --git a/apps/files_external/l10n/ast.php b/apps/files_external/l10n/ast.php index 7c399a0a62f..4fb9a2b9934 100644 --- a/apps/files_external/l10n/ast.php +++ b/apps/files_external/l10n/ast.php @@ -66,10 +66,6 @@ $TRANSLATIONS = array( "Configuration" => "Configuración", "Available for" => "Disponible pa", "Add storage" => "Amestar almacenamientu", -"No user or group" => "Nengún usuariu o grupu", -"All Users" => "Tolos usuarios", -"Groups" => "Grupos", -"Users" => "Usuarios", "Delete" => "Desaniciar", "Enable User External Storage" => "Habilitar almacenamientu esterno d'usuariu", "Allow users to mount the following external storage" => "Permitir a los usuarios montar el siguiente almacenamientu esternu", diff --git a/apps/files_external/l10n/az.php b/apps/files_external/l10n/az.php index 5c4e2701178..3c2770c4f36 100644 --- a/apps/files_external/l10n/az.php +++ b/apps/files_external/l10n/az.php @@ -17,7 +17,6 @@ $TRANSLATIONS = array( "Saved" => "Saxlanıldı", "Name" => "Ad", "Folder name" => "Qovluq adı", -"Users" => "İstifadəçilər", "Delete" => "Sil" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/bg_BG.php b/apps/files_external/l10n/bg_BG.php index 7f18f95b0fb..f910070c15a 100644 --- a/apps/files_external/l10n/bg_BG.php +++ b/apps/files_external/l10n/bg_BG.php @@ -66,10 +66,6 @@ $TRANSLATIONS = array( "Configuration" => "Настройки", "Available for" => "Достъпно за", "Add storage" => "Добави дисково пространство", -"No user or group" => "Липсва потребител или група", -"All Users" => "Всички Потребители", -"Groups" => "Групи", -"Users" => "Потребители", "Delete" => "Изтрий", "Enable User External Storage" => "Разреши Потребителско Външно Дисково Пространство", "Allow users to mount the following external storage" => "Разреши на потребителите да прикачват следното външно дисково пространство", diff --git a/apps/files_external/l10n/bn_BD.php b/apps/files_external/l10n/bn_BD.php index 34b7dc35dd3..a0ec26a0a64 100644 --- a/apps/files_external/l10n/bn_BD.php +++ b/apps/files_external/l10n/bn_BD.php @@ -12,13 +12,11 @@ $TRANSLATIONS = array( "Grant access" => "অধিগমনের অনুমতি প্রদান কর", "Error configuring Google Drive storage" => "Google Drive সংরক্ষণাগার নির্ধারণ করতে সমস্যা ", "Personal" => "ব্যক্তিগত", +"Saved" => "সংরক্ষণ করা হলো", "Name" => "রাম", "External Storage" => "বাহ্যিক সংরক্ষণাগার", "Folder name" => "ফোলডারের নাম", "Configuration" => "কনফিগারেসন", -"All Users" => "সমস্ত ব্যবহারকারী", -"Groups" => "গোষ্ঠীসমূহ", -"Users" => "ব্যবহারকারী", "Delete" => "মুছে", "Enable User External Storage" => "ব্যবহারকারীর বাহ্যিক সংরক্ষণাগার সক্রিয় কর", "SSL root certificates" => "SSL রুট সনদপত্র", diff --git a/apps/files_external/l10n/ca.php b/apps/files_external/l10n/ca.php index 37d5084538d..5b4457e808c 100644 --- a/apps/files_external/l10n/ca.php +++ b/apps/files_external/l10n/ca.php @@ -66,10 +66,6 @@ $TRANSLATIONS = array( "Configuration" => "Configuració", "Available for" => "Disponible per", "Add storage" => "Afegeix emmagatzemament", -"No user or group" => "Sense usuaris o grups", -"All Users" => "Tots els usuaris", -"Groups" => "Grups", -"Users" => "Usuaris", "Delete" => "Esborra", "Enable User External Storage" => "Habilita l'emmagatzemament extern d'usuari", "Allow users to mount the following external storage" => "Permet als usuaris muntar els dispositius externs següents", diff --git a/apps/files_external/l10n/cs_CZ.php b/apps/files_external/l10n/cs_CZ.php index 4eb029d8a54..a10684e4f03 100644 --- a/apps/files_external/l10n/cs_CZ.php +++ b/apps/files_external/l10n/cs_CZ.php @@ -63,10 +63,6 @@ $TRANSLATIONS = array( "Configuration" => "Nastavení", "Available for" => "Dostupné pro", "Add storage" => "Přidat úložiště", -"No user or group" => "Žádný uživatel nebo skupina", -"All Users" => "Všichni uživatelé", -"Groups" => "Skupiny", -"Users" => "Uživatelé", "Delete" => "Smazat", "Enable User External Storage" => "Zapnout externí uživatelské úložiště", "Allow users to mount the following external storage" => "Povolit uživatelů připojit následující externí úložiště", diff --git a/apps/files_external/l10n/cy_GB.php b/apps/files_external/l10n/cy_GB.php index 011dbb371a5..26420c555c4 100644 --- a/apps/files_external/l10n/cy_GB.php +++ b/apps/files_external/l10n/cy_GB.php @@ -7,8 +7,6 @@ $TRANSLATIONS = array( "URL" => "URL", "Personal" => "Personol", "Name" => "Enw", -"Groups" => "Grwpiau", -"Users" => "Defnyddwyr", "Delete" => "Dileu" ); $PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"; diff --git a/apps/files_external/l10n/da.php b/apps/files_external/l10n/da.php index e54f28826c3..127e5469a64 100644 --- a/apps/files_external/l10n/da.php +++ b/apps/files_external/l10n/da.php @@ -66,10 +66,6 @@ $TRANSLATIONS = array( "Configuration" => "Opsætning", "Available for" => "Tilgængelig for", "Add storage" => "Tilføj lager", -"No user or group" => "Ingen bruger eller gruppe", -"All Users" => "Alle brugere", -"Groups" => "Grupper", -"Users" => "Brugere", "Delete" => "Slet", "Enable User External Storage" => "Aktiver ekstern opbevaring for brugere", "Allow users to mount the following external storage" => "Tillad brugere at montere følgende som eksternt lager", diff --git a/apps/files_external/l10n/de.php b/apps/files_external/l10n/de.php index d99cce64a2e..0304c032685 100644 --- a/apps/files_external/l10n/de.php +++ b/apps/files_external/l10n/de.php @@ -66,10 +66,6 @@ $TRANSLATIONS = array( "Configuration" => "Konfiguration", "Available for" => "Verfügbar für", "Add storage" => "Speicher hinzufügen", -"No user or group" => "Kein Nutzer oder Gruppe", -"All Users" => "Alle Benutzer", -"Groups" => "Gruppen", -"Users" => "Benutzer", "Delete" => "Löschen", "Enable User External Storage" => "Externen Speicher für Benutzer aktivieren", "Allow users to mount the following external storage" => "Erlaube es Benutzern, den folgenden externen Speicher einzubinden", diff --git a/apps/files_external/l10n/de_CH.php b/apps/files_external/l10n/de_CH.php index 1fa6b28bced..5d11539cba7 100644 --- a/apps/files_external/l10n/de_CH.php +++ b/apps/files_external/l10n/de_CH.php @@ -20,9 +20,6 @@ $TRANSLATIONS = array( "Folder name" => "Ordnername", "Configuration" => "Konfiguration", "Add storage" => "Speicher hinzufügen", -"All Users" => "Alle Benutzer", -"Groups" => "Gruppen", -"Users" => "Benutzer", "Delete" => "Löschen", "Enable User External Storage" => "Externen Speicher für Benutzer aktivieren", "SSL root certificates" => "SSL-Root-Zertifikate", diff --git a/apps/files_external/l10n/de_DE.php b/apps/files_external/l10n/de_DE.php index d9297243f1f..d8d1d56375c 100644 --- a/apps/files_external/l10n/de_DE.php +++ b/apps/files_external/l10n/de_DE.php @@ -66,10 +66,6 @@ $TRANSLATIONS = array( "Configuration" => "Konfiguration", "Available for" => "Verfügbar für", "Add storage" => "Speicher hinzufügen", -"No user or group" => "Kein Nutzer oder Gruppe", -"All Users" => "Alle Benutzer", -"Groups" => "Gruppen", -"Users" => "Benutzer", "Delete" => "Löschen", "Enable User External Storage" => "Externen Speicher für Benutzer aktivieren", "Allow users to mount the following external storage" => "Erlauben Sie Benutzern, folgende externe Speicher einzubinden", diff --git a/apps/files_external/l10n/el.php b/apps/files_external/l10n/el.php index fd27e6b8063..eccbf79d977 100644 --- a/apps/files_external/l10n/el.php +++ b/apps/files_external/l10n/el.php @@ -66,10 +66,6 @@ $TRANSLATIONS = array( "Configuration" => "Ρυθμίσεις", "Available for" => "Διαθέσιμο για", "Add storage" => "Προσθηκη αποθηκευσης", -"No user or group" => "Μη διαθέσιμος χρήστης ή ομάδα", -"All Users" => "Όλοι οι Χρήστες", -"Groups" => "Ομάδες", -"Users" => "Χρήστες", "Delete" => "Διαγραφή", "Enable User External Storage" => "Ενεργοποίηση Εξωτερικού Αποθηκευτικού Χώρου Χρήστη", "Allow users to mount the following external storage" => "Χορήγηση άδειας στους χρήστες να συνδέσουν τα παρακάτω εξωτερικά μέσα αποθήκευσης", diff --git a/apps/files_external/l10n/en_GB.php b/apps/files_external/l10n/en_GB.php index 8d284878674..216cb2537c4 100644 --- a/apps/files_external/l10n/en_GB.php +++ b/apps/files_external/l10n/en_GB.php @@ -66,10 +66,6 @@ $TRANSLATIONS = array( "Configuration" => "Configuration", "Available for" => "Available for", "Add storage" => "Add storage", -"No user or group" => "No user or group", -"All Users" => "All Users", -"Groups" => "Groups", -"Users" => "Users", "Delete" => "Delete", "Enable User External Storage" => "Enable User External Storage", "Allow users to mount the following external storage" => "Allow users to mount the following external storage", diff --git a/apps/files_external/l10n/eo.php b/apps/files_external/l10n/eo.php index 065379f0c05..9fb399d9525 100644 --- a/apps/files_external/l10n/eo.php +++ b/apps/files_external/l10n/eo.php @@ -46,10 +46,6 @@ $TRANSLATIONS = array( "Configuration" => "Agordo", "Available for" => "Disponebla por", "Add storage" => "Aldoni memorilon", -"No user or group" => "Neniu uzanto aŭ grupo", -"All Users" => "Ĉiuj uzantoj", -"Groups" => "Grupoj", -"Users" => "Uzantoj", "Delete" => "Forigi", "Enable User External Storage" => "Kapabligi malenan memorilon de uzanto", "Allow users to mount the following external storage" => "Permesi uzantojn munti la jenajn malenajn memorilojn", diff --git a/apps/files_external/l10n/es.php b/apps/files_external/l10n/es.php index 211fe79c62f..abcfa4fb9f0 100644 --- a/apps/files_external/l10n/es.php +++ b/apps/files_external/l10n/es.php @@ -66,10 +66,6 @@ $TRANSLATIONS = array( "Configuration" => "Configuración", "Available for" => "Disponible para", "Add storage" => "Añadir almacenamiento", -"No user or group" => "Ningún usuario o grupo", -"All Users" => "Todos los usuarios", -"Groups" => "Grupos", -"Users" => "Usuarios", "Delete" => "Eliminar", "Enable User External Storage" => "Habilitar almacenamiento externo de usuario", "Allow users to mount the following external storage" => "Permitir a los usuarios montar el siguiente almacenamiento externo", diff --git a/apps/files_external/l10n/es_AR.php b/apps/files_external/l10n/es_AR.php index 68fb080c863..1e9b61b64ac 100644 --- a/apps/files_external/l10n/es_AR.php +++ b/apps/files_external/l10n/es_AR.php @@ -19,9 +19,6 @@ $TRANSLATIONS = array( "Folder name" => "Nombre de la carpeta", "Configuration" => "Configuración", "Add storage" => "Añadir almacenamiento", -"All Users" => "Todos los usuarios", -"Groups" => "Grupos", -"Users" => "Usuarios", "Delete" => "Borrar", "Enable User External Storage" => "Habilitar almacenamiento de usuario externo", "SSL root certificates" => "certificados SSL raíz", diff --git a/apps/files_external/l10n/es_CL.php b/apps/files_external/l10n/es_CL.php index 00e6c7c0793..cd9a32fdd10 100644 --- a/apps/files_external/l10n/es_CL.php +++ b/apps/files_external/l10n/es_CL.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Password" => "Clave", "Share" => "Compartir", "Personal" => "Personal", -"Folder name" => "Nombre del directorio", -"Users" => "Usuarios" +"Folder name" => "Nombre del directorio" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/es_MX.php b/apps/files_external/l10n/es_MX.php index a837ac210db..51fe29f8e86 100644 --- a/apps/files_external/l10n/es_MX.php +++ b/apps/files_external/l10n/es_MX.php @@ -18,9 +18,6 @@ $TRANSLATIONS = array( "Folder name" => "Nombre de la carpeta", "Configuration" => "Configuración", "Add storage" => "Añadir almacenamiento", -"All Users" => "Todos los usuarios", -"Groups" => "Grupos", -"Users" => "Usuarios", "Delete" => "Eliminar", "Enable User External Storage" => "Habilitar almacenamiento externo de usuario", "SSL root certificates" => "Certificados raíz SSL", diff --git a/apps/files_external/l10n/et_EE.php b/apps/files_external/l10n/et_EE.php index 7df651c7b8d..2d66da3ac5d 100644 --- a/apps/files_external/l10n/et_EE.php +++ b/apps/files_external/l10n/et_EE.php @@ -66,10 +66,6 @@ $TRANSLATIONS = array( "Configuration" => "Seadistamine", "Available for" => "Saadaval", "Add storage" => "Lisa andmehoidla", -"No user or group" => "Ühtki kasutajat või gruppi", -"All Users" => "Kõik kasutajad", -"Groups" => "Grupid", -"Users" => "Kasutajad", "Delete" => "Kustuta", "Enable User External Storage" => "Luba kasutajatele väline salvestamine", "Allow users to mount the following external storage" => "Võimalda kasutajatel ühendada järgmist välist andmehoidlat", diff --git a/apps/files_external/l10n/eu.php b/apps/files_external/l10n/eu.php index d93d701297c..aa3416eee1c 100644 --- a/apps/files_external/l10n/eu.php +++ b/apps/files_external/l10n/eu.php @@ -63,10 +63,6 @@ $TRANSLATIONS = array( "Configuration" => "Konfigurazioa", "Available for" => "Hauentzat eskuragarri", "Add storage" => "Gehitu biltegiratzea", -"No user or group" => "Talde edo erabiltzailerik ez", -"All Users" => "Erabiltzaile guztiak", -"Groups" => "Taldeak", -"Users" => "Erabiltzaileak", "Delete" => "Ezabatu", "Enable User External Storage" => "Gaitu erabiltzaileentzako kanpo biltegiratzea", "Allow users to mount the following external storage" => "Baimendu erabiltzaileak hurrengo kanpo biltegiratzeak muntatzen", diff --git a/apps/files_external/l10n/fa.php b/apps/files_external/l10n/fa.php index dbe0569916e..b3f8e134ae9 100644 --- a/apps/files_external/l10n/fa.php +++ b/apps/files_external/l10n/fa.php @@ -19,9 +19,6 @@ $TRANSLATIONS = array( "Folder name" => "نام پوشه", "Configuration" => "پیکربندی", "Add storage" => "اضافه کردن حافظه", -"All Users" => "تمام کاربران", -"Groups" => "گروه ها", -"Users" => "کاربران", "Delete" => "حذف", "Enable User External Storage" => "فعال سازی حافظه خارجی کاربر", "SSL root certificates" => "گواهی های اصلی SSL ", diff --git a/apps/files_external/l10n/fi_FI.php b/apps/files_external/l10n/fi_FI.php index 01ce90241cd..ee08f9e543c 100644 --- a/apps/files_external/l10n/fi_FI.php +++ b/apps/files_external/l10n/fi_FI.php @@ -41,10 +41,6 @@ $TRANSLATIONS = array( "Configuration" => "Asetukset", "Available for" => "Saatavuus", "Add storage" => "Lisää tallennustila", -"No user or group" => "Ei käyttäjää tai ryhmää", -"All Users" => "Kaikki käyttäjät", -"Groups" => "Ryhmät", -"Users" => "Käyttäjät", "Delete" => "Poista", "Enable User External Storage" => "Ota käyttöön ulkopuoliset tallennuspaikat", "Allow users to mount the following external storage" => "Salli käyttäjien liittää seuraavat erilliset tallennusvälineet", diff --git a/apps/files_external/l10n/fr.php b/apps/files_external/l10n/fr.php index be817a97ea6..c6c2e2127d4 100644 --- a/apps/files_external/l10n/fr.php +++ b/apps/files_external/l10n/fr.php @@ -66,10 +66,6 @@ $TRANSLATIONS = array( "Configuration" => "Configuration", "Available for" => "Disponible pour", "Add storage" => "Ajouter un support de stockage", -"No user or group" => "Aucun utilisateur ou groupe", -"All Users" => "Tous les utilisateurs", -"Groups" => "Groupes", -"Users" => "Utilisateurs", "Delete" => "Supprimer", "Enable User External Storage" => "Activer le stockage externe pour les utilisateurs", "Allow users to mount the following external storage" => "Autorise les utilisateurs à monter les stockage externes suivants", diff --git a/apps/files_external/l10n/gl.php b/apps/files_external/l10n/gl.php index 006507a4ba2..ecf66c54c66 100644 --- a/apps/files_external/l10n/gl.php +++ b/apps/files_external/l10n/gl.php @@ -66,10 +66,6 @@ $TRANSLATIONS = array( "Configuration" => "Configuración", "Available for" => "Dispoñíbel para", "Add storage" => "Engadir almacenamento", -"No user or group" => "Non hai usuario ou grupo", -"All Users" => "Todos os usuarios", -"Groups" => "Grupos", -"Users" => "Usuarios", "Delete" => "Eliminar", "Enable User External Storage" => "Activar o almacenamento externo do usuario", "Allow users to mount the following external storage" => "Permitirlle aos usuarios montar o seguinte almacenamento externo", diff --git a/apps/files_external/l10n/he.php b/apps/files_external/l10n/he.php index 100e3b2866b..43903915bfb 100644 --- a/apps/files_external/l10n/he.php +++ b/apps/files_external/l10n/he.php @@ -18,9 +18,6 @@ $TRANSLATIONS = array( "External Storage" => "אחסון חיצוני", "Folder name" => "שם התיקייה", "Configuration" => "הגדרות", -"All Users" => "כל המשתמשים", -"Groups" => "קבוצות", -"Users" => "משתמשים", "Delete" => "מחיקה", "Enable User External Storage" => "הפעלת אחסון חיצוני למשתמשים", "SSL root certificates" => "שורש אישורי אבטחת SSL ", diff --git a/apps/files_external/l10n/hi.php b/apps/files_external/l10n/hi.php index e0011dc46e4..ca41287841e 100644 --- a/apps/files_external/l10n/hi.php +++ b/apps/files_external/l10n/hi.php @@ -3,7 +3,6 @@ $TRANSLATIONS = array( "Username" => "प्रयोक्ता का नाम", "Password" => "पासवर्ड", "Share" => "साझा करें", -"Personal" => "यक्तिगत", -"Users" => "उपयोगकर्ता" +"Personal" => "यक्तिगत" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/hr.php b/apps/files_external/l10n/hr.php index 1074f126795..0e8e029f4e1 100644 --- a/apps/files_external/l10n/hr.php +++ b/apps/files_external/l10n/hr.php @@ -16,8 +16,6 @@ $TRANSLATIONS = array( "Personal" => "Osobno", "Saved" => "Snimljeno", "Name" => "Ime", -"Groups" => "Grupe", -"Users" => "Korisnici", "Delete" => "Obriši" ); $PLURAL_FORMS = "nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"; diff --git a/apps/files_external/l10n/hu_HU.php b/apps/files_external/l10n/hu_HU.php index 9cb8d26bd6e..8cbff0a1757 100644 --- a/apps/files_external/l10n/hu_HU.php +++ b/apps/files_external/l10n/hu_HU.php @@ -20,9 +20,6 @@ $TRANSLATIONS = array( "Folder name" => "Mappanév", "Configuration" => "Beállítások", "Add storage" => "Tároló becsatolása", -"All Users" => "Az összes felhasználó", -"Groups" => "Csoportok", -"Users" => "Felhasználók", "Delete" => "Törlés", "Enable User External Storage" => "Külső tárolók engedélyezése a felhasználók részére", "SSL root certificates" => "SSL tanúsítványok", diff --git a/apps/files_external/l10n/ia.php b/apps/files_external/l10n/ia.php index 1f723cef8fb..65e87c81cc8 100644 --- a/apps/files_external/l10n/ia.php +++ b/apps/files_external/l10n/ia.php @@ -8,8 +8,6 @@ $TRANSLATIONS = array( "Personal" => "Personal", "Name" => "Nomine", "Folder name" => "Nomine de dossier", -"Groups" => "Gruppos", -"Users" => "Usatores", "Delete" => "Deler" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/id.php b/apps/files_external/l10n/id.php index 8b89ef79fa2..f5afdaaabb0 100644 --- a/apps/files_external/l10n/id.php +++ b/apps/files_external/l10n/id.php @@ -33,10 +33,6 @@ $TRANSLATIONS = array( "Configuration" => "Konfigurasi", "Available for" => "Tersedia untuk", "Add storage" => "Tambahkan penyimpanan", -"No user or group" => "Tidak ada pengguna dan grup", -"All Users" => "Semua Pengguna", -"Groups" => "Grup", -"Users" => "Pengguna", "Delete" => "Hapus", "Enable User External Storage" => "Aktifkan Penyimpanan Eksternal Pengguna", "Allow users to mount the following external storage" => "Izinkan pengguna untuk mengaitkan penyimpanan eksternal berikut", diff --git a/apps/files_external/l10n/is.php b/apps/files_external/l10n/is.php index 67aa2121e7d..848ea06c8c8 100644 --- a/apps/files_external/l10n/is.php +++ b/apps/files_external/l10n/is.php @@ -16,9 +16,6 @@ $TRANSLATIONS = array( "External Storage" => "Ytri gagnageymsla", "Folder name" => "Nafn möppu", "Configuration" => "Uppsetning", -"All Users" => "Allir notendur", -"Groups" => "Hópar", -"Users" => "Notendur", "Delete" => "Eyða", "Enable User External Storage" => "Virkja ytra gagnasvæði notenda", "SSL root certificates" => "SSL rótar skilríki", diff --git a/apps/files_external/l10n/it.php b/apps/files_external/l10n/it.php index d3107ec54d6..c14e6450c85 100644 --- a/apps/files_external/l10n/it.php +++ b/apps/files_external/l10n/it.php @@ -66,10 +66,6 @@ $TRANSLATIONS = array( "Configuration" => "Configurazione", "Available for" => "Disponibile per", "Add storage" => "Aggiungi archiviazione", -"No user or group" => "Nessun utente o gruppo", -"All Users" => "Tutti gli utenti", -"Groups" => "Gruppi", -"Users" => "Utenti", "Delete" => "Elimina", "Enable User External Storage" => "Abilita la memoria esterna dell'utente", "Allow users to mount the following external storage" => "Consenti agli utenti di montare la seguente memoria esterna", diff --git a/apps/files_external/l10n/ja.php b/apps/files_external/l10n/ja.php index 0350dbf169e..12b5894eb21 100644 --- a/apps/files_external/l10n/ja.php +++ b/apps/files_external/l10n/ja.php @@ -66,10 +66,6 @@ $TRANSLATIONS = array( "Configuration" => "設定", "Available for" => "以下が利用可能", "Add storage" => "ストレージを追加", -"No user or group" => "ユーザーもしくはグループがありません", -"All Users" => "すべてのユーザー", -"Groups" => "グループ", -"Users" => "ユーザー", "Delete" => "削除", "Enable User External Storage" => "ユーザーの外部ストレージを有効にする", "Allow users to mount the following external storage" => "ユーザーに以下の外部ストレージのマウントを許可する", diff --git a/apps/files_external/l10n/ka_GE.php b/apps/files_external/l10n/ka_GE.php index 0fa65b83505..38fcc433c6e 100644 --- a/apps/files_external/l10n/ka_GE.php +++ b/apps/files_external/l10n/ka_GE.php @@ -18,9 +18,6 @@ $TRANSLATIONS = array( "Folder name" => "ფოლდერის სახელი", "Configuration" => "კონფიგურაცია", "Add storage" => "საცავის დამატება", -"All Users" => "ყველა მომხმარებელი", -"Groups" => "ჯგუფები", -"Users" => "მომხმარებელი", "Delete" => "წაშლა", "Enable User External Storage" => "მომხმარებლის ექსტერნალ საცავის აქტივირება", "SSL root certificates" => "SSL root სერთიფიკატები", diff --git a/apps/files_external/l10n/km.php b/apps/files_external/l10n/km.php index 3f6e0395a68..f9101ff38da 100644 --- a/apps/files_external/l10n/km.php +++ b/apps/files_external/l10n/km.php @@ -17,9 +17,6 @@ $TRANSLATIONS = array( "Folder name" => "ឈ្មោះ​ថត", "Configuration" => "ការ​កំណត់​សណ្ឋាន", "Add storage" => "បន្ថែម​ឃ្លាំងផ្ទុក", -"All Users" => "អ្នក​ប្រើ​ទាំងអស់", -"Groups" => "ក្រុ", -"Users" => "អ្នកប្រើ", "Delete" => "លុប" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/ko.php b/apps/files_external/l10n/ko.php index 706f824de6e..e43f21a1fdd 100644 --- a/apps/files_external/l10n/ko.php +++ b/apps/files_external/l10n/ko.php @@ -20,9 +20,6 @@ $TRANSLATIONS = array( "Folder name" => "폴더 이름", "Configuration" => "설정", "Add storage" => "저장소 추가", -"All Users" => "모든 사용자", -"Groups" => "그룹", -"Users" => "사용자", "Delete" => "삭제", "Enable User External Storage" => "사용자 외부 저장소 사용", "SSL root certificates" => "SSL 루트 인증서", diff --git a/apps/files_external/l10n/ku_IQ.php b/apps/files_external/l10n/ku_IQ.php index 9c4b2a3d498..097f8d3199c 100644 --- a/apps/files_external/l10n/ku_IQ.php +++ b/apps/files_external/l10n/ku_IQ.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Share" => "هاوبەشی کردن", "URL" => "ناونیشانی به‌سته‌ر", "Name" => "ناو", -"Folder name" => "ناوی بوخچه", -"Users" => "به‌كارهێنه‌ر" +"Folder name" => "ناوی بوخچه" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/lb.php b/apps/files_external/l10n/lb.php index 0b78eb91a8d..737291269c3 100644 --- a/apps/files_external/l10n/lb.php +++ b/apps/files_external/l10n/lb.php @@ -9,8 +9,6 @@ $TRANSLATIONS = array( "Personal" => "Perséinlech", "Name" => "Numm", "Folder name" => "Dossiers Numm:", -"Groups" => "Gruppen", -"Users" => "Benotzer", "Delete" => "Läschen" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/lt_LT.php b/apps/files_external/l10n/lt_LT.php index ff4fc0a4456..6440460da3f 100644 --- a/apps/files_external/l10n/lt_LT.php +++ b/apps/files_external/l10n/lt_LT.php @@ -18,9 +18,6 @@ $TRANSLATIONS = array( "Folder name" => "Katalogo pavadinimas", "Configuration" => "Konfigūracija", "Add storage" => "Pridėti saugyklą", -"All Users" => "Visi vartotojai", -"Groups" => "Grupės", -"Users" => "Vartotojai", "Delete" => "Ištrinti", "Enable User External Storage" => "Įjungti vartotojų išorines saugyklas", "SSL root certificates" => "SSL sertifikatas", diff --git a/apps/files_external/l10n/lv.php b/apps/files_external/l10n/lv.php index 5abf7aa4b7c..debbe4c3e06 100644 --- a/apps/files_external/l10n/lv.php +++ b/apps/files_external/l10n/lv.php @@ -18,9 +18,6 @@ $TRANSLATIONS = array( "Folder name" => "Mapes nosaukums", "Configuration" => "Konfigurācija", "Add storage" => "Pievienot krātuvi", -"All Users" => "Visi lietotāji", -"Groups" => "Grupas", -"Users" => "Lietotāji", "Delete" => "Dzēst", "Enable User External Storage" => "Aktivēt lietotāja ārējo krātuvi", "SSL root certificates" => "SSL saknes sertifikāti", diff --git a/apps/files_external/l10n/mk.php b/apps/files_external/l10n/mk.php index def422f4072..db340d09c4f 100644 --- a/apps/files_external/l10n/mk.php +++ b/apps/files_external/l10n/mk.php @@ -18,9 +18,6 @@ $TRANSLATIONS = array( "External Storage" => "Надворешно складиште", "Folder name" => "Име на папка", "Configuration" => "Конфигурација", -"All Users" => "Сите корисници", -"Groups" => "Групи", -"Users" => "Корисници", "Delete" => "Избриши", "Enable User External Storage" => "Овозможи надворешни за корисници", "SSL root certificates" => "SSL root сертификати", diff --git a/apps/files_external/l10n/ms_MY.php b/apps/files_external/l10n/ms_MY.php index 22e5f30c4dd..12957844ccb 100644 --- a/apps/files_external/l10n/ms_MY.php +++ b/apps/files_external/l10n/ms_MY.php @@ -7,8 +7,6 @@ $TRANSLATIONS = array( "URL" => "URL", "Personal" => "Peribadi", "Name" => "Nama", -"Groups" => "Kumpulan", -"Users" => "Pengguna", "Delete" => "Padam" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/my_MM.php b/apps/files_external/l10n/my_MM.php index 775fa4d9885..bf50d1b1b6d 100644 --- a/apps/files_external/l10n/my_MM.php +++ b/apps/files_external/l10n/my_MM.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "Location" => "တည်နေရာ", "Username" => "သုံးစွဲသူအမည်", -"Password" => "စကားဝှက်", -"Users" => "သုံးစွဲသူ" +"Password" => "စကားဝှက်" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/nb_NO.php b/apps/files_external/l10n/nb_NO.php index caeeb8eed6b..8b6bedebc97 100644 --- a/apps/files_external/l10n/nb_NO.php +++ b/apps/files_external/l10n/nb_NO.php @@ -66,10 +66,6 @@ $TRANSLATIONS = array( "Configuration" => "Konfigurasjon", "Available for" => "Tilgjengelig for", "Add storage" => "Legg til lagringsplass", -"No user or group" => "Ingen bruker eller gruppe", -"All Users" => "Alle brukere", -"Groups" => "Grupper", -"Users" => "Brukere", "Delete" => "Slett", "Enable User External Storage" => "Aktiver ekstern lagring for bruker", "Allow users to mount the following external storage" => "Tillat brukere å koble opp følgende eksterne lagring", diff --git a/apps/files_external/l10n/nl.php b/apps/files_external/l10n/nl.php index 8e0790f15be..019050633f9 100644 --- a/apps/files_external/l10n/nl.php +++ b/apps/files_external/l10n/nl.php @@ -66,10 +66,6 @@ $TRANSLATIONS = array( "Configuration" => "Configuratie", "Available for" => "Beschikbaar voor", "Add storage" => "Toevoegen opslag", -"No user or group" => "Geen gebruiker of groep", -"All Users" => "Alle gebruikers", -"Groups" => "Groepen", -"Users" => "Gebruikers", "Delete" => "Verwijder", "Enable User External Storage" => "Externe opslag voor gebruikers activeren", "Allow users to mount the following external storage" => "Sta gebruikers toe de volgende externe opslag aan te koppelen", diff --git a/apps/files_external/l10n/nn_NO.php b/apps/files_external/l10n/nn_NO.php index ce0a76f33c2..5362b4e285a 100644 --- a/apps/files_external/l10n/nn_NO.php +++ b/apps/files_external/l10n/nn_NO.php @@ -10,8 +10,6 @@ $TRANSLATIONS = array( "Name" => "Namn", "Folder name" => "Mappenamn", "Configuration" => "Innstillingar", -"Groups" => "Grupper", -"Users" => "Brukarar", "Delete" => "Slett" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/oc.php b/apps/files_external/l10n/oc.php index 1ffdf1b10f6..af4b03e3c15 100644 --- a/apps/files_external/l10n/oc.php +++ b/apps/files_external/l10n/oc.php @@ -7,8 +7,6 @@ $TRANSLATIONS = array( "URL" => "URL", "Personal" => "Personal", "Name" => "Nom", -"Groups" => "Grops", -"Users" => "Usancièrs", "Delete" => "Escafa" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_external/l10n/pa.php b/apps/files_external/l10n/pa.php index 0bdcf0b7f67..14e0fe78ae0 100644 --- a/apps/files_external/l10n/pa.php +++ b/apps/files_external/l10n/pa.php @@ -3,7 +3,6 @@ $TRANSLATIONS = array( "Username" => "ਯੂਜ਼ਰ-ਨਾਂ", "Password" => "ਪਾਸਵਰ", "Share" => "ਸਾਂਝਾ ਕਰੋ", -"Groups" => "ਗਰੁੱਪ", "Delete" => "ਹਟਾਓ" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/pl.php b/apps/files_external/l10n/pl.php index 9395c85307b..31a28389ce0 100644 --- a/apps/files_external/l10n/pl.php +++ b/apps/files_external/l10n/pl.php @@ -66,10 +66,6 @@ $TRANSLATIONS = array( "Configuration" => "Konfiguracja", "Available for" => "Dostępne przez", "Add storage" => "Dodaj zasoby dyskowe", -"No user or group" => "Brak użytkownika lub grupy", -"All Users" => "Wszyscy uzytkownicy", -"Groups" => "Grupy", -"Users" => "Użytkownicy", "Delete" => "Usuń", "Enable User External Storage" => "Włącz zewnętrzne zasoby dyskowe użytkownika", "Allow users to mount the following external storage" => "Pozwól użytkownikom montować następujące zewnętrzne zasoby dyskowe", diff --git a/apps/files_external/l10n/pt_BR.php b/apps/files_external/l10n/pt_BR.php index f422b712053..fd8757f0f2b 100644 --- a/apps/files_external/l10n/pt_BR.php +++ b/apps/files_external/l10n/pt_BR.php @@ -66,10 +66,6 @@ $TRANSLATIONS = array( "Configuration" => "Configuração", "Available for" => "Disponível para", "Add storage" => "Adicionar Armazenamento", -"No user or group" => "Nenhum usuário ou grupo", -"All Users" => "Todos os Usuários", -"Groups" => "Grupos", -"Users" => "Usuários", "Delete" => "Excluir", "Enable User External Storage" => "Habilitar Armazenamento Externo do Usuário", "Allow users to mount the following external storage" => "Permitir que usuários montem o seguinte armazenamento externo", diff --git a/apps/files_external/l10n/pt_PT.php b/apps/files_external/l10n/pt_PT.php index 486456c810c..b7e480349ff 100644 --- a/apps/files_external/l10n/pt_PT.php +++ b/apps/files_external/l10n/pt_PT.php @@ -66,10 +66,6 @@ $TRANSLATIONS = array( "Configuration" => "Configuração", "Available for" => "Disponível para ", "Add storage" => "Adicionar armazenamento", -"No user or group" => "Sem utilizador nem grupo", -"All Users" => "Todos os utilizadores", -"Groups" => "Grupos", -"Users" => "Utilizadores", "Delete" => "Eliminar", "Enable User External Storage" => "Activar Armazenamento Externo para o Utilizador", "Allow users to mount the following external storage" => "Permitir que os utilizadores montem o seguinte armazenamento externo", diff --git a/apps/files_external/l10n/ro.php b/apps/files_external/l10n/ro.php index eaed049e865..0f292c1bbfb 100644 --- a/apps/files_external/l10n/ro.php +++ b/apps/files_external/l10n/ro.php @@ -23,9 +23,6 @@ $TRANSLATIONS = array( "Folder name" => "Denumire director", "Configuration" => "Configurație", "Add storage" => "Adauga stocare", -"All Users" => "Toți utilizatorii", -"Groups" => "Grupuri", -"Users" => "Utilizatori", "Delete" => "Șterge", "Enable User External Storage" => "Permite stocare externă pentru utilizatori", "Allow users to mount the following external storage" => "Permite utilizatorilor să monteze următoarea unitate de stocare", diff --git a/apps/files_external/l10n/ru.php b/apps/files_external/l10n/ru.php index 75b3dcd100a..4e09ff854d4 100644 --- a/apps/files_external/l10n/ru.php +++ b/apps/files_external/l10n/ru.php @@ -66,10 +66,6 @@ $TRANSLATIONS = array( "Configuration" => "Конфигурация", "Available for" => "Доступно для", "Add storage" => "Добавить хранилище", -"No user or group" => "Нет пользователя или группы", -"All Users" => "Все пользователи", -"Groups" => "Группы", -"Users" => "Пользователи", "Delete" => "Удалить", "Enable User External Storage" => "Включить пользовательские внешние носители", "Allow users to mount the following external storage" => "Разрешить пользователям монтировать следующее внешнее хранилище данных", diff --git a/apps/files_external/l10n/si_LK.php b/apps/files_external/l10n/si_LK.php index 06b3c7616e6..533f4ce87a7 100644 --- a/apps/files_external/l10n/si_LK.php +++ b/apps/files_external/l10n/si_LK.php @@ -16,9 +16,6 @@ $TRANSLATIONS = array( "External Storage" => "භාහිර ගබඩාව", "Folder name" => "ෆොල්ඩරයේ නම", "Configuration" => "වින්‍යාසය", -"All Users" => "සියළු පරිශීලකයන්", -"Groups" => "කණ්ඩායම්", -"Users" => "පරිශීලකයන්", "Delete" => "මකා දමන්න", "Enable User External Storage" => "පරිශීලක භාහිර ගබඩාවන් සක්‍රිය කරන්න", "SSL root certificates" => "SSL මූල සහතිකයන්", diff --git a/apps/files_external/l10n/sk_SK.php b/apps/files_external/l10n/sk_SK.php index 3bd9587eee9..3aa9711ae90 100644 --- a/apps/files_external/l10n/sk_SK.php +++ b/apps/files_external/l10n/sk_SK.php @@ -66,10 +66,6 @@ $TRANSLATIONS = array( "Configuration" => "Nastavenia", "Available for" => "K dispozícii pre", "Add storage" => "Pridať úložisko", -"No user or group" => "Žiadny používateľ alebo skupina", -"All Users" => "Všetci používatelia", -"Groups" => "Skupiny", -"Users" => "Používatelia", "Delete" => "Zmazať", "Enable User External Storage" => "Povoliť externé úložisko", "Allow users to mount the following external storage" => "Povoliť používateľom pripojiť tieto externé úložiská", diff --git a/apps/files_external/l10n/sl.php b/apps/files_external/l10n/sl.php index 2bbb29b7ac5..223c1c407f1 100644 --- a/apps/files_external/l10n/sl.php +++ b/apps/files_external/l10n/sl.php @@ -66,10 +66,6 @@ $TRANSLATIONS = array( "Configuration" => "Nastavitve", "Available for" => "Na voljo za", "Add storage" => "Dodaj shrambo", -"No user or group" => "Ni uporabnika ali skupine", -"All Users" => "Vsi uporabniki", -"Groups" => "Skupine", -"Users" => "Uporabniki", "Delete" => "Izbriši", "Enable User External Storage" => "Omogoči zunanjo uporabniško podatkovno shrambo", "Allow users to mount the following external storage" => "Dovoli uporabnikom priklapljanje navedenih zunanjih shramb.", diff --git a/apps/files_external/l10n/sq.php b/apps/files_external/l10n/sq.php index dff94158b53..d6bffb90570 100644 --- a/apps/files_external/l10n/sq.php +++ b/apps/files_external/l10n/sq.php @@ -10,8 +10,6 @@ $TRANSLATIONS = array( "Saved" => "U ruajt", "Name" => "Emri", "Folder name" => "Emri i Skedarit", -"Groups" => "Grupet", -"Users" => "Përdoruesit", "Delete" => "Elimino" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/sr.php b/apps/files_external/l10n/sr.php index 532cdb50ed4..28247f8d7ce 100644 --- a/apps/files_external/l10n/sr.php +++ b/apps/files_external/l10n/sr.php @@ -7,8 +7,6 @@ $TRANSLATIONS = array( "Share" => "Дели", "Personal" => "Лично", "Name" => "Име", -"Groups" => "Групе", -"Users" => "Корисници", "Delete" => "Обриши" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_external/l10n/sr@latin.php b/apps/files_external/l10n/sr@latin.php index 820ec7288ed..8a476118eba 100644 --- a/apps/files_external/l10n/sr@latin.php +++ b/apps/files_external/l10n/sr@latin.php @@ -6,8 +6,6 @@ $TRANSLATIONS = array( "Share" => "Podeli", "Personal" => "Lično", "Name" => "Ime", -"Groups" => "Grupe", -"Users" => "Korisnici", "Delete" => "Obriši" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_external/l10n/sv.php b/apps/files_external/l10n/sv.php index de412f66eb2..adbf774be3a 100644 --- a/apps/files_external/l10n/sv.php +++ b/apps/files_external/l10n/sv.php @@ -64,10 +64,6 @@ $TRANSLATIONS = array( "Configuration" => "Konfiguration", "Available for" => "Tillgänglig för", "Add storage" => "Lägg till lagring", -"No user or group" => "Ingen användare eller grupp", -"All Users" => "Alla användare", -"Groups" => "Grupper", -"Users" => "Användare", "Delete" => "Radera", "Enable User External Storage" => "Aktivera extern lagring för användare", "Allow users to mount the following external storage" => "Tillåt användare att montera följande extern lagring", diff --git a/apps/files_external/l10n/ta_LK.php b/apps/files_external/l10n/ta_LK.php index 4f2b2c8a26b..212e9b64ea9 100644 --- a/apps/files_external/l10n/ta_LK.php +++ b/apps/files_external/l10n/ta_LK.php @@ -16,9 +16,6 @@ $TRANSLATIONS = array( "External Storage" => "வெளி சேமிப்பு", "Folder name" => "கோப்புறை பெயர்", "Configuration" => "தகவமைப்பு", -"All Users" => "பயனாளர்கள் எல்லாம்", -"Groups" => "குழுக்கள்", -"Users" => "பயனாளர்", "Delete" => "நீக்குக", "Enable User External Storage" => "பயனாளர் வெளி சேமிப்பை இயலுமைப்படுத்துக", "SSL root certificates" => "SSL வேர் சான்றிதழ்கள்", diff --git a/apps/files_external/l10n/te.php b/apps/files_external/l10n/te.php index 98a31a2e314..73e828ebfcb 100644 --- a/apps/files_external/l10n/te.php +++ b/apps/files_external/l10n/te.php @@ -5,7 +5,6 @@ $TRANSLATIONS = array( "Personal" => "వ్యక్తిగతం", "Name" => "పేరు", "Folder name" => "సంచయం పేరు", -"Users" => "వాడుకరులు", "Delete" => "తొలగించు" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/th_TH.php b/apps/files_external/l10n/th_TH.php index 63a221e7ea4..27c49f5fbd4 100644 --- a/apps/files_external/l10n/th_TH.php +++ b/apps/files_external/l10n/th_TH.php @@ -16,9 +16,6 @@ $TRANSLATIONS = array( "External Storage" => "พื้นทีจัดเก็บข้อมูลจากภายนอก", "Folder name" => "ชื่อโฟลเดอร์", "Configuration" => "การกำหนดค่า", -"All Users" => "ผู้ใช้งานทั้งหมด", -"Groups" => "กลุ่ม", -"Users" => "ผู้ใช้งาน", "Delete" => "ลบ", "Enable User External Storage" => "เปิดให้มีการใช้พื้นที่จัดเก็บข้อมูลของผู้ใช้งานจากภายนอกได้", "SSL root certificates" => "ใบรับรองความปลอดภัยด้วยระบบ SSL จาก Root", diff --git a/apps/files_external/l10n/tr.php b/apps/files_external/l10n/tr.php index 26537b75879..6d0796508c8 100644 --- a/apps/files_external/l10n/tr.php +++ b/apps/files_external/l10n/tr.php @@ -66,10 +66,6 @@ $TRANSLATIONS = array( "Configuration" => "Yapılandırma", "Available for" => "Kullanabilenler", "Add storage" => "Depo ekle", -"No user or group" => "Kullanıcı veya grup yok", -"All Users" => "Tüm Kullanıcılar", -"Groups" => "Gruplar", -"Users" => "Kullanıcılar", "Delete" => "Sil", "Enable User External Storage" => "Kullanıcılar için Harici Depolamayı Etkinleştir", "Allow users to mount the following external storage" => "Kullanıcıların aşağıdaki harici depolamayı bağlamalarına izin ver", diff --git a/apps/files_external/l10n/ug.php b/apps/files_external/l10n/ug.php index 6574fa59cc9..6508595118e 100644 --- a/apps/files_external/l10n/ug.php +++ b/apps/files_external/l10n/ug.php @@ -11,8 +11,6 @@ $TRANSLATIONS = array( "Name" => "ئاتى", "Folder name" => "قىسقۇچ ئاتى", "Configuration" => "سەپلىمە", -"Groups" => "گۇرۇپپا", -"Users" => "ئىشلەتكۈچىلەر", "Delete" => "ئۆچۈر" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/uk.php b/apps/files_external/l10n/uk.php index 50ce1beb609..b64ace85883 100644 --- a/apps/files_external/l10n/uk.php +++ b/apps/files_external/l10n/uk.php @@ -18,9 +18,6 @@ $TRANSLATIONS = array( "Folder name" => "Ім'я теки", "Configuration" => "Налаштування", "Add storage" => "Додати сховище", -"All Users" => "Усі користувачі", -"Groups" => "Групи", -"Users" => "Користувачі", "Delete" => "Видалити", "Enable User External Storage" => "Активувати користувацькі зовнішні сховища", "SSL root certificates" => "SSL корневі сертифікати", diff --git a/apps/files_external/l10n/ur_PK.php b/apps/files_external/l10n/ur_PK.php index 69791cabe81..e5b9089328d 100644 --- a/apps/files_external/l10n/ur_PK.php +++ b/apps/files_external/l10n/ur_PK.php @@ -7,7 +7,6 @@ $TRANSLATIONS = array( "URL" => "یو ار ایل", "Personal" => "شخصی", "Name" => "اسم", -"Users" => "یوزرز", "Delete" => "حذف کریں" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/vi.php b/apps/files_external/l10n/vi.php index b2dd7a261ba..b1b8def80b1 100644 --- a/apps/files_external/l10n/vi.php +++ b/apps/files_external/l10n/vi.php @@ -18,9 +18,6 @@ $TRANSLATIONS = array( "Folder name" => "Tên thư mục", "Configuration" => "Cấu hình", "Add storage" => "Thêm bộ nhớ", -"All Users" => "Tất cả người dùng", -"Groups" => "Nhóm", -"Users" => "Người dùng", "Delete" => "Xóa", "Enable User External Storage" => "Kích hoạt tính năng lưu trữ ngoài", "SSL root certificates" => "Chứng chỉ SSL root", diff --git a/apps/files_external/l10n/zh_CN.php b/apps/files_external/l10n/zh_CN.php index 031ffd9cb92..275c375ebf0 100644 --- a/apps/files_external/l10n/zh_CN.php +++ b/apps/files_external/l10n/zh_CN.php @@ -47,10 +47,6 @@ $TRANSLATIONS = array( "Configuration" => "配置", "Available for" => "可用于", "Add storage" => "增加存储", -"No user or group" => "无用户或组", -"All Users" => "所有用户", -"Groups" => "组", -"Users" => "用户", "Delete" => "删除", "Enable User External Storage" => "启用用户外部存储", "Allow users to mount the following external storage" => "允许用户挂载以下外部存储", diff --git a/apps/files_external/l10n/zh_HK.php b/apps/files_external/l10n/zh_HK.php index c31b20dbc99..33fc2113f92 100644 --- a/apps/files_external/l10n/zh_HK.php +++ b/apps/files_external/l10n/zh_HK.php @@ -8,8 +8,6 @@ $TRANSLATIONS = array( "Saved" => "已儲存", "Name" => "名稱", "Folder name" => "資料夾名稱", -"Groups" => "群組", -"Users" => "用戶", "Delete" => "刪除" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/zh_TW.php b/apps/files_external/l10n/zh_TW.php index 93e341fa516..1c3bebb7f80 100644 --- a/apps/files_external/l10n/zh_TW.php +++ b/apps/files_external/l10n/zh_TW.php @@ -37,10 +37,6 @@ $TRANSLATIONS = array( "Configuration" => "設定", "Available for" => "可用的", "Add storage" => "增加儲存區", -"No user or group" => "沒有使用者或群組", -"All Users" => "所有使用者", -"Groups" => "群組", -"Users" => "使用者", "Delete" => "刪除", "Enable User External Storage" => "啓用使用者外部儲存", "Allow users to mount the following external storage" => "允許使用者自行掛載以下的外部儲存", diff --git a/apps/user_ldap/l10n/bn_BD.php b/apps/user_ldap/l10n/bn_BD.php index 220d02e4cc5..8cabd10a5d2 100644 --- a/apps/user_ldap/l10n/bn_BD.php +++ b/apps/user_ldap/l10n/bn_BD.php @@ -1,9 +1,11 @@ "মুছার আদেশ ব্যার্থ হলো", +"Success" => "সাফল্য", "Error" => "সমস্যা", "_%s group found_::_%s groups found_" => array("",""), "_%s user found_::_%s users found_" => array("",""), +"Server" => "সার্ভার", "Group Filter" => "গোষ্ঠী ছাঁকনী", "Save" => "সংরক্ষণ", "Help" => "সহায়িকা", @@ -15,7 +17,9 @@ $TRANSLATIONS = array( "Password" => "কূটশব্দ", "For anonymous access, leave DN and Password empty." => "অজ্ঞাতকুলশীল অধিগমনের জন্য DN এবং কূটশব্দটি ফাঁকা রাখুন।", "You can specify Base DN for users and groups in the Advanced tab" => "সুচারু ট্যঅবে গিয়ে আপনি ব্যবহারকারি এবং গোষ্ঠীসমূহের জন্য ভিত্তি DN নির্ধারণ করতে পারেন।", +"Back" => "পেছনে যাও", "Continue" => "চালিয়ে যাও", +"Expert" => "দক্ষ", "Advanced" => "সুচারু", "Turn off SSL certificate validation." => "SSL সনদপত্র যাচাইকরণ বন্ধ রাক।", "in seconds. A change empties the cache." => "সেকেন্ডে। কোন পরিবর্তন ক্যাসে খালি করবে।", diff --git a/core/l10n/ach.php b/core/l10n/ach.php index 2cbbaa45ca7..e012fb1656e 100644 --- a/core/l10n/ach.php +++ b/core/l10n/ach.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/core/l10n/ady.php b/core/l10n/ady.php index ffcdde48d47..aff098dff1f 100644 --- a/core/l10n/ady.php +++ b/core/l10n/ady.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/af_ZA.php b/core/l10n/af_ZA.php index d19954dcbd1..9bf6340f45b 100644 --- a/core/l10n/af_ZA.php +++ b/core/l10n/af_ZA.php @@ -26,16 +26,6 @@ $TRANSLATIONS = array( "December" => "Desember", "Settings" => "Instellings", "Saving..." => "Stoor...", -"seconds ago" => "sekondes gelede", -"_%n minute ago_::_%n minutes ago_" => array("%n minute gelede","%n minute gelede"), -"_%n hour ago_::_%n hours ago_" => array("%n ure gelde","%n ure gelede"), -"today" => "vandag", -"yesterday" => "gister", -"_%n day ago_::_%n days ago_" => array("%n dae gelede","%n dae gelede"), -"last month" => "verlede maand", -"_%n month ago_::_%n months ago_" => array("%n maande gelede","%n maande gelede"), -"last year" => "verlede jaar", -"years ago" => "jare gelede", "Reset password" => "Herstel wagwoord", "No" => "Nee", "Yes" => "Ja", diff --git a/core/l10n/ak.php b/core/l10n/ak.php index 09e36ba1786..df47d5b95c2 100644 --- a/core/l10n/ak.php +++ b/core/l10n/ak.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=n > 1;"; diff --git a/core/l10n/am_ET.php b/core/l10n/am_ET.php index ffcdde48d47..aff098dff1f 100644 --- a/core/l10n/am_ET.php +++ b/core/l10n/am_ET.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ar.php b/core/l10n/ar.php index 69b4e13e1de..4c154be74d4 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -26,16 +26,6 @@ $TRANSLATIONS = array( "File" => "ملف", "Folder" => "مجلد", "Saving..." => "جاري الحفظ...", -"seconds ago" => "منذ ثواني", -"_%n minute ago_::_%n minutes ago_" => array("","","","","",""), -"_%n hour ago_::_%n hours ago_" => array("","","","","",""), -"today" => "اليوم", -"yesterday" => "يوم أمس", -"_%n day ago_::_%n days ago_" => array("","","","","",""), -"last month" => "الشهر الماضي", -"_%n month ago_::_%n months ago_" => array("","","","","",""), -"last year" => "السنةالماضية", -"years ago" => "سنة مضت", "Reset password" => "تعديل كلمة السر", "No" => "لا", "Yes" => "نعم", diff --git a/core/l10n/ast.php b/core/l10n/ast.php index 50574e9b88a..8cd1a571c4b 100644 --- a/core/l10n/ast.php +++ b/core/l10n/ast.php @@ -36,16 +36,6 @@ $TRANSLATIONS = array( "Image" => "Imaxe", "Audio" => "Audiu", "Saving..." => "Guardando...", -"seconds ago" => "hai segundos", -"_%n minute ago_::_%n minutes ago_" => array("hai %n minutu","hai %n minutos"), -"_%n hour ago_::_%n hours ago_" => array("hai %n hora","hai %n hores"), -"today" => "güei", -"yesterday" => "ayeri", -"_%n day ago_::_%n days ago_" => array("hai %n día","hai %n díes"), -"last month" => "mes caberu", -"_%n month ago_::_%n months ago_" => array("fai %n mes","hai %n meses"), -"last year" => "añu caberu", -"years ago" => "hai años", "Couldn't send reset email. Please contact your administrator." => "Nun pudo unviase'l corréu de reaniciu. Por favor, contauta col alministrador.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Unviósete al corréu l'enllaz pa reaniciar la to contraseña. Si nun lu recibes nuna cantidá razonable de tiempu, comprueba les tos carpetes de corréu puxarra.
    Si nun ta ehí, entruga al to alministrador llocal", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Los tos ficheros tán crifraos. Si nun habilitesti la clave de recuperación, nun habrá forma de recuperar los tos datos dempués de que se reanicie la to contraseña.
    Si nun tas seguru de qué facer, por favor contauta col to alministrador enantes que sigas.
    ¿De xuru quies siguir?", diff --git a/core/l10n/az.php b/core/l10n/az.php index 8f01ea97265..d977225bd11 100644 --- a/core/l10n/az.php +++ b/core/l10n/az.php @@ -13,10 +13,6 @@ $TRANSLATIONS = array( "Settings" => "Quraşdırmalar", "Folder" => "Qovluq", "Saving..." => "Saxlama...", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "Ok" => "Oldu", "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "Dayandır", diff --git a/core/l10n/be.php b/core/l10n/be.php index b07d3a30604..cf0e5e0c59b 100644 --- a/core/l10n/be.php +++ b/core/l10n/be.php @@ -20,16 +20,6 @@ $TRANSLATIONS = array( "November" => "Лістапад", "December" => "Снежань", "Settings" => "Налады", -"seconds ago" => "Секунд таму", -"_%n minute ago_::_%n minutes ago_" => array("","","",""), -"_%n hour ago_::_%n hours ago_" => array("","","",""), -"today" => "Сёння", -"yesterday" => "Ўчора", -"_%n day ago_::_%n days ago_" => array("","","",""), -"last month" => "У мінулым месяцы", -"_%n month ago_::_%n months ago_" => array("","","",""), -"last year" => "У мінулым годзе", -"years ago" => "Гадоў таму", "No" => "Не", "Yes" => "Так", "Choose" => "Выбар", diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php index ce4bc07dc7b..0047bba7250 100644 --- a/core/l10n/bg_BG.php +++ b/core/l10n/bg_BG.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Изображение", "Audio" => "Аудио", "Saving..." => "Записване...", -"seconds ago" => "преди секунди", -"_%n minute ago_::_%n minutes ago_" => array("преди %n минута","преди %n минути"), -"_%n hour ago_::_%n hours ago_" => array("преди %n час","преди %n часа"), -"today" => "днес", -"yesterday" => "вчера", -"_%n day ago_::_%n days ago_" => array("преди %n ден","преди %n дена"), -"last month" => "последният месец", -"_%n month ago_::_%n months ago_" => array("преди %n месец","преди %n месеца"), -"last year" => "последната година", -"years ago" => "последните години", "Couldn't send reset email. Please contact your administrator." => "Неуспешено изпращане на имейл. Моля, свържи се с администратора.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Връзката за възстановяване на паролата е изпратена на твоя имейл. Ако не я получиш в разумен период от време, провери папката си за спам.
    Ако не е там се свържи с администратора.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Файловете ти са криптирани. Ако не си насторил ключ за възстановяване, няма да има възможност да възстановиш информацията си след като промениш паролата.
    Ако не си сигурен какво да направиш, моля свържи се с администратора преди да продължиш.
    Наистина ли си сигурен, че искаш да продължиш?", diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php index c17dcfb4823..ec0d5173267 100644 --- a/core/l10n/bn_BD.php +++ b/core/l10n/bn_BD.php @@ -25,16 +25,6 @@ $TRANSLATIONS = array( "Image" => "চিত্র", "Audio" => "অডিও", "Saving..." => "সংরক্ষণ করা হচ্ছে..", -"seconds ago" => "সেকেন্ড পূর্বে", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"today" => "আজ", -"yesterday" => "গতকাল", -"_%n day ago_::_%n days ago_" => array("",""), -"last month" => "গত মাস", -"_%n month ago_::_%n months ago_" => array("",""), -"last year" => "গত বছর", -"years ago" => "বছর পূর্বে", "Reset password" => "কূটশব্দ পূনঃনির্ধারণ কর", "No" => "না", "Yes" => "হ্যাঁ", @@ -81,6 +71,7 @@ $TRANSLATIONS = array( "Use the following link to reset your password: {link}" => "আপনার কূটশব্দটি পূনঃনির্ধারণ করার জন্য নিম্নোক্ত লিংকটি ব্যবহার করুনঃ {link}", "You will receive a link to reset your password via Email." => "কূটশব্দ পূনঃনির্ধারণের জন্য একটি টূনঃনির্ধারণ লিংকটি আপনাকে ই-মেইলে পাঠানো হয়েছে ।", "Username" => "ব্যবহারকারী", +"Reset" => "পূণঃনির্ধানণ", "New password" => "নতুন কূটশব্দ", "Personal" => "ব্যক্তিগত", "Users" => "ব্যবহারকারী", diff --git a/core/l10n/bn_IN.php b/core/l10n/bn_IN.php index 8ac8c2f20f2..987c0c6585d 100644 --- a/core/l10n/bn_IN.php +++ b/core/l10n/bn_IN.php @@ -3,10 +3,6 @@ $TRANSLATIONS = array( "Settings" => "সেটিংস", "Folder" => "ফোল্ডার", "Saving..." => "সংরক্ষণ করা হচ্ছে ...", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "বাতিল করা", "Share" => "শেয়ার", diff --git a/core/l10n/bs.php b/core/l10n/bs.php index 6181142234e..69e8e29f438 100644 --- a/core/l10n/bs.php +++ b/core/l10n/bs.php @@ -2,10 +2,6 @@ $TRANSLATIONS = array( "Folder" => "Fasikla", "Saving..." => "Spašavam...", -"_%n minute ago_::_%n minutes ago_" => array("","",""), -"_%n hour ago_::_%n hours ago_" => array("","",""), -"_%n day ago_::_%n days ago_" => array("","",""), -"_%n month ago_::_%n months ago_" => array("","",""), "_{count} file conflict_::_{count} file conflicts_" => array("","",""), "Share" => "Podijeli", "Add" => "Dodaj" diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 0b4ce45e045..21a9841fadf 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -36,16 +36,6 @@ $TRANSLATIONS = array( "Image" => "Imatge", "Audio" => "Audio", "Saving..." => "Desant...", -"seconds ago" => "segons enrere", -"_%n minute ago_::_%n minutes ago_" => array("fa %n minut","fa %n minuts"), -"_%n hour ago_::_%n hours ago_" => array("fa %n hora","fa %n hores"), -"today" => "avui", -"yesterday" => "ahir", -"_%n day ago_::_%n days ago_" => array("fa %n dies","fa %n dies"), -"last month" => "el mes passat", -"_%n month ago_::_%n months ago_" => array("fa %n mes","fa %n mesos"), -"last year" => "l'any passat", -"years ago" => "anys enrere", "Couldn't send reset email. Please contact your administrator." => "No s'ha pogut restablir el correu. Contacteu amb l'administrador.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "L'enllaç per reiniciar la vostra contrasenya s'ha enviat al vostre correu. Si no el rebeu en un temps raonable comproveu les carpetes de spam.
    Si no és allà, pregunteu a l'administrador local.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Els vostres fitxers estan encriptats. Si no heu habilitat la clau de recuperació no hi haurà manera de recuperar les dades després que reestabliu la contrasenya.
    Si sabeu què fer, contacteu amb l'administrador abans de continuar.
    Voleu continuar?", diff --git a/core/l10n/ca@valencia.php b/core/l10n/ca@valencia.php index ffcdde48d47..aff098dff1f 100644 --- a/core/l10n/ca@valencia.php +++ b/core/l10n/ca@valencia.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 3e2f322bb02..0a295bc0072 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Obrázek", "Audio" => "Audio", "Saving..." => "Ukládám...", -"seconds ago" => "před pár vteřinami", -"_%n minute ago_::_%n minutes ago_" => array("před %n minutou","před %n minutami","před %n minutami"), -"_%n hour ago_::_%n hours ago_" => array("před %n hodinou","před %n hodinami","před %n hodinami"), -"today" => "dnes", -"yesterday" => "včera", -"_%n day ago_::_%n days ago_" => array("před %n dnem","před %n dny","před %n dny"), -"last month" => "minulý měsíc", -"_%n month ago_::_%n months ago_" => array("před %n měsícem","před %n měsíci","před %n měsíci"), -"last year" => "minulý rok", -"years ago" => "před lety", "Couldn't send reset email. Please contact your administrator." => "Nepodařilo se odeslat email pro změnu hesla. Kontaktujte vašeho administrátora.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Odkaz na obnovení hesla byl odeslán na vaši e-mailovou adresu. Pokud jej v krátké době neobdržíte, zkontrolujte složku nevyžádané pošty a koš.
    Pokud jej nenaleznete, kontaktujte svého administrátora.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Vaše soubory jsou šifrovány. Pokud jste nepovolili klíč pro obnovení, neexistuje způsob jak získat po změně hesla vaše data.
    Pokud si nejste jisti co dělat, kontaktujte nejprve svého administrátora než budete pokračovat.
    Opravdu si přejete pokračovat?", @@ -191,6 +181,8 @@ $TRANSLATIONS = array( "Thank you for your patience." => "Děkuji za trpělivost.", "You are accessing the server from an untrusted domain." => "Přistupujete na server z nedůvěryhodné domény.", "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domain\" setting in config/config.php. An example configuration is provided in config/config.sample.php." => "Kontaktujte prosím správce. Pokud jste správce této instalace, nastavte \"trusted_domain\" v souboru config/config.php. Příklad konfigurace najdete v souboru config/config.sample.php.", +"Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." => "V závislosti na vaší konfiguraci vám může být, jako administrátorovi, umožněno použití tlačítka níže a označit tuto doménu jako důvěryhodnou.", +"Add \"%s\" as trusted domain" => "Přidat \"%s\" jako důvěryhodnou doménu.", "%s will be updated to version %s." => "%s bude aktualizován na verzi %s.", "The following apps will be disabled:" => "Následující aplikace budou zakázány:", "The theme %s has been disabled." => "Vzhled %s byl zakázán.", diff --git a/core/l10n/cy_GB.php b/core/l10n/cy_GB.php index c625ac16fac..5c61ddfb5e7 100644 --- a/core/l10n/cy_GB.php +++ b/core/l10n/cy_GB.php @@ -22,16 +22,6 @@ $TRANSLATIONS = array( "Settings" => "Gosodiadau", "Folder" => "Plygell", "Saving..." => "Yn cadw...", -"seconds ago" => "eiliad yn ôl", -"_%n minute ago_::_%n minutes ago_" => array("","","",""), -"_%n hour ago_::_%n hours ago_" => array("","","",""), -"today" => "heddiw", -"yesterday" => "ddoe", -"_%n day ago_::_%n days ago_" => array("","","",""), -"last month" => "mis diwethaf", -"_%n month ago_::_%n months ago_" => array("","","",""), -"last year" => "y llynedd", -"years ago" => "blwyddyn yn ôl", "Reset password" => "Ailosod cyfrinair", "No" => "Na", "Yes" => "Ie", diff --git a/core/l10n/da.php b/core/l10n/da.php index 2d7baa6b29d..4faa85d8b86 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Billede", "Audio" => "Lyd", "Saving..." => "Gemmer...", -"seconds ago" => "sekunder siden", -"_%n minute ago_::_%n minutes ago_" => array("%n minut siden","%n minutter siden"), -"_%n hour ago_::_%n hours ago_" => array("%n time siden","%n timer siden"), -"today" => "i dag", -"yesterday" => "i går", -"_%n day ago_::_%n days ago_" => array("%n dag siden","%n dage siden"), -"last month" => "sidste måned", -"_%n month ago_::_%n months ago_" => array("%n måned siden","%n måneder siden"), -"last year" => "sidste år", -"years ago" => "år siden", "Couldn't send reset email. Please contact your administrator." => "Der opstod et problem under afsending af reset-emailen. Kontakt venligst systemadministratoren.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Linket til at nulstille dit kodeord er blevet sendt til din e-post: hvis du ikke modtager den inden for en rimelig tid, så tjek dine spam/junk-mapper.
    Hvis det ikke er der, så spørg din lokale administrator.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Dine filer er krypterede. Hvis du ikke har aktiveret gendannelsesnøglen kan du ikke få dine data tilbage efter at du har ændret adgangskode.
    Hvis du ikke er sikker på, hvad du skal gøre så kontakt din administrator før du fortsætter.
    Vil du fortsætte?", diff --git a/core/l10n/de.php b/core/l10n/de.php index 74f0d4370ac..ecb90aa29ab 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Bild", "Audio" => "Audio", "Saving..." => "Speichern...", -"seconds ago" => "Gerade eben", -"_%n minute ago_::_%n minutes ago_" => array("Vor %n Minute","Vor %n Minuten"), -"_%n hour ago_::_%n hours ago_" => array("Vor %n Stunde","Vor %n Stunden"), -"today" => "Heute", -"yesterday" => "Gestern", -"_%n day ago_::_%n days ago_" => array("Vor %n Tag","Vor %n Tagen"), -"last month" => "Letzten Monat", -"_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), -"last year" => "Letztes Jahr", -"years ago" => "Vor Jahren", "Couldn't send reset email. Please contact your administrator." => "Die E-Mail zum Zurücksetzen konnte nicht versendet werden. Bitte kontaktiere Deinen Administrator.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Der Link zum Rücksetzen Deines Passwort ist an Deine E-Mail-Adresse geschickt worden. Wenn Du ihn nicht innerhalb einer vernünftigen Zeit empfängst, prüfe Deine Spam-Verzeichnisse.
    Wenn er nicht dort ist, frage Deinen lokalen Administrator.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Ihre Dateien sind verschlüsselt. Sollten Sie keinen Wiederherstellungschlüssel aktiviert haben, gibt es keine Möglichkeit an Ihre Daten zu kommen, wenn das Passwort zurückgesetzt wird.
    Falls Sie sich nicht sicher sind, was Sie tun sollen, kontaktieren Sie bitte Ihren Administrator, bevor Sie fortfahren.
    Wollen Sie wirklich fortfahren?", diff --git a/core/l10n/de_AT.php b/core/l10n/de_AT.php index 87d9611f427..cd17ea0bc16 100644 --- a/core/l10n/de_AT.php +++ b/core/l10n/de_AT.php @@ -20,10 +20,6 @@ $TRANSLATIONS = array( "November" => "November", "December" => "Dezember", "Settings" => "Einstellungen", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "Abbrechen", "Continue" => "Weiter", diff --git a/core/l10n/de_CH.php b/core/l10n/de_CH.php index bebd3ed1264..7acfbb8780e 100644 --- a/core/l10n/de_CH.php +++ b/core/l10n/de_CH.php @@ -26,16 +26,6 @@ $TRANSLATIONS = array( "File" => "Datei", "Folder" => "Ordner", "Saving..." => "Speichern...", -"seconds ago" => "Gerade eben", -"_%n minute ago_::_%n minutes ago_" => array("Vor %n Minute","Vor %n Minuten"), -"_%n hour ago_::_%n hours ago_" => array("Vor %n Stunde","Vor %n Stunden"), -"today" => "Heute", -"yesterday" => "Gestern", -"_%n day ago_::_%n days ago_" => array("Vor %n Tag","Vor %n Tagen"), -"last month" => "Letzten Monat", -"_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), -"last year" => "Letztes Jahr", -"years ago" => "Vor Jahren", "Reset password" => "Passwort zurücksetzen", "No" => "Nein", "Yes" => "Ja", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index 07ed703c203..2b65d977ee1 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Bild", "Audio" => "Audio", "Saving..." => "Speichern...", -"seconds ago" => "Gerade eben", -"_%n minute ago_::_%n minutes ago_" => array("Vor %n Minute","Vor %n Minuten"), -"_%n hour ago_::_%n hours ago_" => array("Vor %n Stunde","Vor %n Stunden"), -"today" => "Heute", -"yesterday" => "Gestern", -"_%n day ago_::_%n days ago_" => array("Vor %n Tag","Vor %n Tagen"), -"last month" => "Letzten Monat", -"_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), -"last year" => "Letztes Jahr", -"years ago" => "Vor Jahren", "Couldn't send reset email. Please contact your administrator." => "Die E-Mail zum Zurücksetzen konnte nicht versendet werden. Bitte kontaktieren Sie Ihren Administrator.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Der Link zum Rücksetzen Ihres Passworts ist an Ihre E-Mail-Adresse geschickt worden. Wenn Sie ihn nicht innerhalb einer vernünftigen Zeit empfängen, prüfen Sie Ihre Spam-Verzeichnisse.
    Wenn er nicht dort ist, fragen Sie Ihren lokalen Administrator.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Ihre Dateien sind verschlüsselt. Wenn Sie den Wiederherstellungsschlüssel nicht aktiviert haben, wird es keine Möglichkeit geben, um Ihre Daten wiederzubekommen, nachdem Ihr Passwort zurückgesetzt wurde.
    Wenn Sie sich nicht sicher sind, was Sie tun sollen, wenden Sie sich bitte an Ihren Administrator, bevor Sie fortfahren.
    Wollen Sie wirklich fortfahren?", diff --git a/core/l10n/el.php b/core/l10n/el.php index 650c0bb4f1a..df55094ae6b 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Εικόνα", "Audio" => "Ήχος", "Saving..." => "Γίνεται αποθήκευση...", -"seconds ago" => "δευτερόλεπτα πριν", -"_%n minute ago_::_%n minutes ago_" => array("%n λεπτό πριν","%n λεπτά πριν"), -"_%n hour ago_::_%n hours ago_" => array("%n ώρα πριν","%n ώρες πριν"), -"today" => "σήμερα", -"yesterday" => "χτες", -"_%n day ago_::_%n days ago_" => array("%n ημέρα πριν","%n ημέρες πριν"), -"last month" => "τελευταίο μήνα", -"_%n month ago_::_%n months ago_" => array("%n μήνας πριν","%n μήνες πριν"), -"last year" => "τελευταίο χρόνο", -"years ago" => "χρόνια πριν", "Couldn't send reset email. Please contact your administrator." => "Αδυναμία αποστολής ηλ. μηνύματος επαναφοράς. Παρακαλώ επικοινωνήστε με το διαχειριστή σας.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Ο σύνδεσμος για την επαναφορά του κωδικού πρόσβασής σας απεστάλη στο ηλ. ταχυδρομείο σας. Εάν δεν το παραλάβετε μέσα σε ένα εύλογο χρονικό διάστημα, ελέγξτε το φάκελο ανεπιθύμητων μηνυμάτων σας.
    Εάν δεν βρίσκεται εκεί ρωτήστε τον τοπικό διαχειριστή σας.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Τα αρχεία σας είναι κρυπτογραφημένα. Εάν δεν έχετε ενεργοποιήσει το κλειδί επαναφοράς, δεν θα υπάρχει τρόπος να ανακτήσετε τα δεδομένα σας μετά την επαναφορά του κωδικού πρόσβασής σας.
    Εάν δεν είστε σίγουροι για το τι θα θέλατε να κάνετε, παρακαλώ επικοινωνήστε με το διαχειριστή σας πριν συνεχίσετε.
    Θέλετε στ' αλήθεια να συνεχίσετε;", diff --git a/core/l10n/en@pirate.php b/core/l10n/en@pirate.php index 461a44dd235..44114abbc8d 100644 --- a/core/l10n/en@pirate.php +++ b/core/l10n/en@pirate.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Password" => "Passcode" ); diff --git a/core/l10n/en_GB.php b/core/l10n/en_GB.php index 6e57dd4436c..ccfd56d02af 100644 --- a/core/l10n/en_GB.php +++ b/core/l10n/en_GB.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Image", "Audio" => "Audio", "Saving..." => "Saving...", -"seconds ago" => "seconds ago", -"_%n minute ago_::_%n minutes ago_" => array("%n minute ago","%n minutes ago"), -"_%n hour ago_::_%n hours ago_" => array("%n hour ago","%n hours ago"), -"today" => "today", -"yesterday" => "yesterday", -"_%n day ago_::_%n days ago_" => array("%n day ago","%n days ago"), -"last month" => "last month", -"_%n month ago_::_%n months ago_" => array("%n month ago","%n months ago"), -"last year" => "last year", -"years ago" => "years ago", "Couldn't send reset email. Please contact your administrator." => "Couldn't send reset email. Please contact your administrator.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?", diff --git a/core/l10n/en_NZ.php b/core/l10n/en_NZ.php index ffcdde48d47..aff098dff1f 100644 --- a/core/l10n/en_NZ.php +++ b/core/l10n/en_NZ.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/eo.php b/core/l10n/eo.php index 64b30edaa9f..a17b532c603 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -27,16 +27,6 @@ $TRANSLATIONS = array( "Folder" => "Dosierujo", "Image" => "Bildo", "Saving..." => "Konservante...", -"seconds ago" => "sekundoj antaŭe", -"_%n minute ago_::_%n minutes ago_" => array("antaŭ %n minuto","antaŭ %n minutoj"), -"_%n hour ago_::_%n hours ago_" => array("antaŭ %n horo","antaŭ %n horoj"), -"today" => "hodiaŭ", -"yesterday" => "hieraŭ", -"_%n day ago_::_%n days ago_" => array("antaŭ %n tago","antaŭ %n tagoj"), -"last month" => "lastamonate", -"_%n month ago_::_%n months ago_" => array("antaŭ %n monato","antaŭ %n monatoj"), -"last year" => "lastajare", -"years ago" => "jaroj antaŭe", "Reset password" => "Rekomenci la pasvorton", "No" => "Ne", "Yes" => "Jes", diff --git a/core/l10n/es.php b/core/l10n/es.php index 8ab9595417f..f4ad2011253 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Imagen", "Audio" => "Audio", "Saving..." => "Guardando...", -"seconds ago" => "hace segundos", -"_%n minute ago_::_%n minutes ago_" => array("Hace %n minuto","hace %n minutos"), -"_%n hour ago_::_%n hours ago_" => array("Hace %n hora","hace %n horas"), -"today" => "hoy", -"yesterday" => "ayer", -"_%n day ago_::_%n days ago_" => array("Hace %n día","hace %n días"), -"last month" => "el mes pasado", -"_%n month ago_::_%n months ago_" => array("Hace %n mes","hace %n meses"), -"last year" => "el año pasado", -"years ago" => "hace años", "Couldn't send reset email. Please contact your administrator." => "La reiniciación de este correo electrónico no pudo ser enviada. Por favor, contacte a su administrador.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Un enlace para reiniciar su contraseña ha sido enviado a su correo electrónico. Si usted no lo recibe en un tiempo razonable, revise su carpeta para spam/chatarra.
    Si no lo encuentra, pregunte a su administrador local.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Sus archivos están cifrados. Si no has activado la clave de recuperación, no habrá manera de recuperar los datos despues de que tu contraseña seá restablecida.
    Si no está seguro de lo que debe hacer, por favor contacte a su administrador antes de continuar.
    ¿Realmente desea continuar?", diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index f90a3005596..d6112e4ef7a 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -33,16 +33,6 @@ $TRANSLATIONS = array( "Folder" => "Carpeta", "Image" => "Imagen", "Saving..." => "Guardando...", -"seconds ago" => "segundos atrás", -"_%n minute ago_::_%n minutes ago_" => array("Hace %n minuto","Hace %n minutos"), -"_%n hour ago_::_%n hours ago_" => array("Hace %n hora","Hace %n horas"), -"today" => "hoy", -"yesterday" => "ayer", -"_%n day ago_::_%n days ago_" => array("Hace %n día","Hace %n días"), -"last month" => "el mes pasado", -"_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), -"last year" => "el año pasado", -"years ago" => "años atrás", "Reset password" => "Restablecer contraseña", "No" => "No", "Yes" => "Sí", diff --git a/core/l10n/es_BO.php b/core/l10n/es_BO.php index ffcdde48d47..aff098dff1f 100644 --- a/core/l10n/es_BO.php +++ b/core/l10n/es_BO.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es_CL.php b/core/l10n/es_CL.php index 0f8f8772395..68d82086933 100644 --- a/core/l10n/es_CL.php +++ b/core/l10n/es_CL.php @@ -22,16 +22,6 @@ $TRANSLATIONS = array( "November" => "Noviembre", "December" => "Diciembre", "Settings" => "Configuración", -"seconds ago" => "segundos antes", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"today" => "hoy", -"yesterday" => "ayer", -"_%n day ago_::_%n days ago_" => array("",""), -"last month" => "mes anterior", -"_%n month ago_::_%n months ago_" => array("",""), -"last year" => "último año", -"years ago" => "años anteriores", "No" => "No", "Yes" => "Si", "Choose" => "Choose", diff --git a/core/l10n/es_CO.php b/core/l10n/es_CO.php index ffcdde48d47..aff098dff1f 100644 --- a/core/l10n/es_CO.php +++ b/core/l10n/es_CO.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es_CR.php b/core/l10n/es_CR.php index ffcdde48d47..aff098dff1f 100644 --- a/core/l10n/es_CR.php +++ b/core/l10n/es_CR.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es_EC.php b/core/l10n/es_EC.php index ffcdde48d47..aff098dff1f 100644 --- a/core/l10n/es_EC.php +++ b/core/l10n/es_EC.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es_MX.php b/core/l10n/es_MX.php index 993852e9826..a143d8abedb 100644 --- a/core/l10n/es_MX.php +++ b/core/l10n/es_MX.php @@ -32,16 +32,6 @@ $TRANSLATIONS = array( "File" => "Archivo", "Folder" => "Carpeta", "Saving..." => "Guardando...", -"seconds ago" => "segundos antes", -"_%n minute ago_::_%n minutes ago_" => array("Hace %n minuto","Hace %n minutos"), -"_%n hour ago_::_%n hours ago_" => array("Hace %n hora","Hace %n horas"), -"today" => "hoy", -"yesterday" => "ayer", -"_%n day ago_::_%n days ago_" => array("Hace %n día","Hace %n días"), -"last month" => "el mes pasado", -"_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), -"last year" => "el año pasado", -"years ago" => "años antes", "Reset password" => "Restablecer contraseña", "No" => "No", "Yes" => "Sí", diff --git a/core/l10n/es_PE.php b/core/l10n/es_PE.php index ffcdde48d47..aff098dff1f 100644 --- a/core/l10n/es_PE.php +++ b/core/l10n/es_PE.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es_PY.php b/core/l10n/es_PY.php index ffcdde48d47..aff098dff1f 100644 --- a/core/l10n/es_PY.php +++ b/core/l10n/es_PY.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es_US.php b/core/l10n/es_US.php index ffcdde48d47..aff098dff1f 100644 --- a/core/l10n/es_US.php +++ b/core/l10n/es_US.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es_UY.php b/core/l10n/es_UY.php index ffcdde48d47..aff098dff1f 100644 --- a/core/l10n/es_UY.php +++ b/core/l10n/es_UY.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index bca3ca8a945..f6715aef86a 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -36,16 +36,6 @@ $TRANSLATIONS = array( "Image" => "Pilt", "Audio" => "Helid", "Saving..." => "Salvestamine...", -"seconds ago" => "sekundit tagasi", -"_%n minute ago_::_%n minutes ago_" => array("%n minut tagasi","%n minutit tagasi"), -"_%n hour ago_::_%n hours ago_" => array("%n tund tagasi","%n tundi tagasi"), -"today" => "täna", -"yesterday" => "eile", -"_%n day ago_::_%n days ago_" => array("%n päev tagasi","%n päeva tagasi"), -"last month" => "viimasel kuul", -"_%n month ago_::_%n months ago_" => array("%n kuu tagasi","%n kuud tagasi"), -"last year" => "viimasel aastal", -"years ago" => "aastat tagasi", "Couldn't send reset email. Please contact your administrator." => "Ei suutnud lähtestada e-maili. Palun kontakteeru süsteemihalduriga.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Link parooli vahetuseks on saadetud Sinu e-posti aadressil.
    Kui kiri pole saabunud mõistliku aja jooksul, siis kontrolli oma spam-/rämpskirjade katalooge
    .Kui kirja pole ka seal, siis küsi abi süsteemihaldurilt.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Sinu failid on krüpteeritud. Kui sa pole taastamise võtit veel määranud, siis pole präast parooli taastamist mingit võimalust sinu andmeid tagasi saada.
    Kui sa pole kindel, mida teha, siis palun väta enne jätkamist ühendust oma administaatoriga.
    Oled sa kindel, et sa soovid jätkata?", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index a07ec812292..b216b066052 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Irudia", "Audio" => "Audio", "Saving..." => "Gordetzen...", -"seconds ago" => "segundu", -"_%n minute ago_::_%n minutes ago_" => array("orain dela minutu %n","orain dela %n minutu"), -"_%n hour ago_::_%n hours ago_" => array("orain dela ordu %n","orain dela %n ordu"), -"today" => "gaur", -"yesterday" => "atzo", -"_%n day ago_::_%n days ago_" => array("orain dela egun %n","orain dela %n egun"), -"last month" => "joan den hilabetean", -"_%n month ago_::_%n months ago_" => array("orain dela hilabete %n","orain dela %n hilabete"), -"last year" => "joan den urtean", -"years ago" => "urte", "Couldn't send reset email. Please contact your administrator." => "Ezin da berrezartzeko eposta bidali. Mesedez jarri harremetan zure administradorearekin.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Zure pasahitza berrezartzeko lotura zure postara bidalia izan da.
    Ez baduzu arrazoizko denbora epe batean jasotzen begiratu zure zabor-posta karpetan.
    Hor ere ez badago kudeatzailearekin harremanetan jarri.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Zure fitxategiak enkriptaturik daude. Ez baduzu berreskuratze gakoa gaitzen pasahitza berrabiaraztean ez da zure fitxategiak berreskuratzeko modurik egongo.
    Zer egin ziur ez bazaude kudeatzailearekin harremanetan ipini jarraitu aurretik.
    Ziur zaude aurrera jarraitu nahi duzula?", diff --git a/core/l10n/eu_ES.php b/core/l10n/eu_ES.php index 3606866bf73..92e64924b61 100644 --- a/core/l10n/eu_ES.php +++ b/core/l10n/eu_ES.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "Ezeztatu", "Delete" => "Ezabatu", diff --git a/core/l10n/fa.php b/core/l10n/fa.php index c4122a86428..95d933c6039 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -34,16 +34,6 @@ $TRANSLATIONS = array( "Image" => "تصویر", "Audio" => "صدا", "Saving..." => "در حال ذخیره سازی...", -"seconds ago" => "ثانیه‌ها پیش", -"_%n minute ago_::_%n minutes ago_" => array("%n دقیقه قبل"), -"_%n hour ago_::_%n hours ago_" => array("%n ساعت قبل"), -"today" => "امروز", -"yesterday" => "دیروز", -"_%n day ago_::_%n days ago_" => array("%n روز قبل"), -"last month" => "ماه قبل", -"_%n month ago_::_%n months ago_" => array("%n ماه قبل"), -"last year" => "سال قبل", -"years ago" => "سال‌های قبل", "Couldn't send reset email. Please contact your administrator." => "ارسال ایمیل مجدد با مشکل مواجه شد . لطفا با مدیر سیستم تماس بگیرید .", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "لینک تنظیم مجدد رمز عبور به ایمیل شما ارسال شده است.
    اگر آن رادر یک زمان مشخصی دریافت نکرده اید، لطفا هرزنامه/ پوشه های ناخواسته را بررسی کنید.
    در صورت نبودن از مدیر خود بپرسید.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "فایل های شما رمزگذاری شده اند. اگر شما کلید بازیابی را فعال نکرده اید، پس از راه اندازی مجدد رمزعبور هیچ راهی برای بازگشت اطلاعاتتان وجود نخواهد داشت.در صورت عدم اطمینان به انجام کار، لطفا ابتدا با مدیر خود تماس بگیرید. آیا واقعا میخواهید ادامه دهید ؟", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 2969e56af44..38044c88887 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -37,16 +37,6 @@ $TRANSLATIONS = array( "Image" => "Kuva", "Audio" => "Ääni", "Saving..." => "Tallennetaan...", -"seconds ago" => "sekuntia sitten", -"_%n minute ago_::_%n minutes ago_" => array("%n minuutti sitten","%n minuuttia sitten"), -"_%n hour ago_::_%n hours ago_" => array("%n tunti sitten","%n tuntia sitten"), -"today" => "tänään", -"yesterday" => "eilen", -"_%n day ago_::_%n days ago_" => array("%n päivä sitten","%n päivää sitten"), -"last month" => "viime kuussa", -"_%n month ago_::_%n months ago_" => array("%n kuukausi sitten","%n kuukautta sitten"), -"last year" => "viime vuonna", -"years ago" => "vuotta sitten", "Couldn't send reset email. Please contact your administrator." => "Palautussähköpostin lähettäminen ei onnistunut. Ota yhteys ylläpitäjään.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Linkki salasanan palauttamista varten on lähetetty sähköpostitse. Jos et saa sähköpostiviestiä kohtuullisessa ajassa, tarkista roskapostikansiot.
    Jos et saa sähköpostiviestiä, ota yhteys paikalliseen ylläpitäjään.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Tiedostosi on salattu. Jos et ole ottanut käyttöön palautusavainta, tietojasi ei ole mahdollista palauttaa salasanan nollaamisen jälkeen.
    Jos et ole varma mitä tehdä, ota yhteys ylläpitäjään.
    Haluatko varmasti jatkaa?", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 60f79328b30..c9a7d023dda 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -36,16 +36,6 @@ $TRANSLATIONS = array( "Image" => "Image", "Audio" => "Audio", "Saving..." => "Enregistrement...", -"seconds ago" => "il y a quelques secondes", -"_%n minute ago_::_%n minutes ago_" => array("il y a %n minute","il y a %n minutes"), -"_%n hour ago_::_%n hours ago_" => array("Il y a %n heure","Il y a %n heures"), -"today" => "aujourd'hui", -"yesterday" => "hier", -"_%n day ago_::_%n days ago_" => array("il y a %n jour","il y a %n jours"), -"last month" => "le mois dernier", -"_%n month ago_::_%n months ago_" => array("Il y a %n mois","Il y a %n mois"), -"last year" => "l'année dernière", -"years ago" => "il y a plusieurs années", "Couldn't send reset email. Please contact your administrator." => "Impossible d'envoyer l’émail de réinitialisation. Veuillez contacter votre administrateur.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Le lien permettant de réinitialiser votre mot de passe vous a été transmis à votre adresse email.
    Si vous ne le recevez pas dans un délai raisonnable, vérifier votre boîte de pourriels.
    Au besoin, contactez votre administrateur local.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Vos fichiers sont chiffrés. Si vous n'avez pas activé la clef de récupération, il n'y aura plus aucun moyen de récupérer vos données une fois le mot de passe réinitialisé. Si vous n'êtes pas sûr de ce que vous faites, veuillez contacter votre administrateur avant de continuer. Voulez-vous vraiment continuer ?", diff --git a/core/l10n/fr_CA.php b/core/l10n/fr_CA.php index 2cbbaa45ca7..e012fb1656e 100644 --- a/core/l10n/fr_CA.php +++ b/core/l10n/fr_CA.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/core/l10n/gl.php b/core/l10n/gl.php index eee969ea89b..b5f2c416ece 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -36,16 +36,6 @@ $TRANSLATIONS = array( "Image" => "Imaxe", "Audio" => "Son", "Saving..." => "Gardando...", -"seconds ago" => "segundos atrás", -"_%n minute ago_::_%n minutes ago_" => array("hai %n minuto","vai %n minutos"), -"_%n hour ago_::_%n hours ago_" => array("hai %n hora","vai %n horas"), -"today" => "hoxe", -"yesterday" => "onte", -"_%n day ago_::_%n days ago_" => array("hai %n día","vai %n días"), -"last month" => "último mes", -"_%n month ago_::_%n months ago_" => array("hai %n mes","vai %n meses"), -"last year" => "último ano", -"years ago" => "anos atrás", "Couldn't send reset email. Please contact your administrator." => "Non foi posíbel enviar o coreo do restablecemento. Póñase en contacto co administrador.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "A ligazón para restabelecer o seu contrasinal foi enviada ao seu correo. Se non a recibe nun prazo razoábel de tempo, vexa o seu cartafol de correo lixo.
    Se non está ali pregúntelle ao administrador local.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Os seus ficheiros están cifrados. Se non activou a chave de recuperación, non haberá maneira de recuperar os datos após o restabelecemento do contrasinal.
    Se non está seguro de que facer, póñase en contacto co administrador antes de continuar.
    Confirma que quere?", diff --git a/core/l10n/he.php b/core/l10n/he.php index 8faa691ef9f..e0277c68936 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -22,16 +22,6 @@ $TRANSLATIONS = array( "Settings" => "הגדרות", "Folder" => "תיקייה", "Saving..." => "שמירה…", -"seconds ago" => "שניות", -"_%n minute ago_::_%n minutes ago_" => array("לפני %n דקה","לפני %n דקות"), -"_%n hour ago_::_%n hours ago_" => array("לפני %n שעה","לפני %n שעות"), -"today" => "היום", -"yesterday" => "אתמול", -"_%n day ago_::_%n days ago_" => array("לפני %n יום","לפני %n ימים"), -"last month" => "חודש שעבר", -"_%n month ago_::_%n months ago_" => array("לפני %n חודש","לפני %n חודשים"), -"last year" => "שנה שעברה", -"years ago" => "שנים", "Reset password" => "איפוס ססמה", "No" => "לא", "Yes" => "כן", diff --git a/core/l10n/hi.php b/core/l10n/hi.php index 65b60029d68..0311dd34ab5 100644 --- a/core/l10n/hi.php +++ b/core/l10n/hi.php @@ -20,10 +20,6 @@ $TRANSLATIONS = array( "November" => "नवंबर", "December" => "दिसम्बर", "Settings" => "सेटिंग्स", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "रद्द करें ", "Share" => "साझा करें", diff --git a/core/l10n/hi_IN.php b/core/l10n/hi_IN.php index ffcdde48d47..aff098dff1f 100644 --- a/core/l10n/hi_IN.php +++ b/core/l10n/hi_IN.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/hr.php b/core/l10n/hr.php index a6acf8eb35f..ad2d38f2cae 100644 --- a/core/l10n/hr.php +++ b/core/l10n/hr.php @@ -22,16 +22,6 @@ $TRANSLATIONS = array( "Settings" => "Postavke", "Folder" => "mapa", "Saving..." => "Spremanje...", -"seconds ago" => "sekundi prije", -"_%n minute ago_::_%n minutes ago_" => array("","",""), -"_%n hour ago_::_%n hours ago_" => array("","",""), -"today" => "danas", -"yesterday" => "jučer", -"_%n day ago_::_%n days ago_" => array("","",""), -"last month" => "prošli mjesec", -"_%n month ago_::_%n months ago_" => array("","",""), -"last year" => "prošlu godinu", -"years ago" => "godina", "Reset password" => "Poništavanje lozinke", "No" => "Ne", "Yes" => "Da", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index c5fcdc8556d..3493016282b 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Kép", "Audio" => "Hang", "Saving..." => "Mentés...", -"seconds ago" => "pár másodperce", -"_%n minute ago_::_%n minutes ago_" => array("%n perccel ezelőtt","%n perccel ezelőtt"), -"_%n hour ago_::_%n hours ago_" => array("%n órával ezelőtt","%n órával ezelőtt"), -"today" => "ma", -"yesterday" => "tegnap", -"_%n day ago_::_%n days ago_" => array("%n nappal ezelőtt","%n nappal ezelőtt"), -"last month" => "múlt hónapban", -"_%n month ago_::_%n months ago_" => array("%n hónappal ezelőtt","%n hónappal ezelőtt"), -"last year" => "tavaly", -"years ago" => "több éve", "Couldn't send reset email. Please contact your administrator." => "Visszaállítási e-mail nem küldhető. Kérjük, lépjen kapcsolatba a rendszergazdával.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "A jelszó felülírásához a linket e-mailben elküldtük. Ha a levél elfogadható időn belül nem érkezik meg, ellenőrizze a spam/levélszemét mappát.
    Ha nincs ott, kérdezze meg a helyi rendszergazdát.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Az Ön állományai titkosítva vannak. Ha nem engedélyezte korábban az adatok visszanyeréséhez szükséges kulcs használatát, akkor a jelszó megváltoztatását követően nem fog hozzáférni az adataihoz. Ha nem biztos abban, hogy mit kellene tennie, akkor kérdezze meg a rendszergazdát, mielőtt továbbmenne. Biztos, hogy folytatni kívánja?", diff --git a/core/l10n/hy.php b/core/l10n/hy.php index 29df048fd94..956fe561b5a 100644 --- a/core/l10n/hy.php +++ b/core/l10n/hy.php @@ -19,10 +19,6 @@ $TRANSLATIONS = array( "October" => "Հոկտեմբեր", "November" => "Նոյեմբեր", "December" => "Դեկտեմբեր", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Delete" => "Ջնջել" ); diff --git a/core/l10n/ia.php b/core/l10n/ia.php index ea87fefdb8b..2e84854f586 100644 --- a/core/l10n/ia.php +++ b/core/l10n/ia.php @@ -31,16 +31,6 @@ $TRANSLATIONS = array( "Image" => "Imagine", "Audio" => "Audio", "Saving..." => "Salveguardante...", -"seconds ago" => "secundas passate", -"_%n minute ago_::_%n minutes ago_" => array("%n minuta passate","%n minutas passate"), -"_%n hour ago_::_%n hours ago_" => array("%n hora passate","%n horas passate"), -"today" => "hodie", -"yesterday" => "heri", -"_%n day ago_::_%n days ago_" => array("%n die ante","%n dies ante"), -"last month" => "ultime mense", -"_%n month ago_::_%n months ago_" => array("%n mense ante","%n menses ante"), -"last year" => "ultime anno", -"years ago" => "annos passate", "I know what I'm doing" => "Io sape lo que io es facente", "Reset password" => "Reinitialisar contrasigno", "Password can not be changed. Please contact your administrator." => "Contrasigno non pote esser modificate. Pro favor continge tu administrator.", diff --git a/core/l10n/id.php b/core/l10n/id.php index baf2cfcfc1c..3bdbb1dc576 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -33,16 +33,6 @@ $TRANSLATIONS = array( "Folder" => "Folder", "Image" => "gambar", "Saving..." => "Menyimpan...", -"seconds ago" => "beberapa detik yang lalu", -"_%n minute ago_::_%n minutes ago_" => array("%n menit yang lalu"), -"_%n hour ago_::_%n hours ago_" => array("%n jam yang lalu"), -"today" => "hari ini", -"yesterday" => "kemarin", -"_%n day ago_::_%n days ago_" => array("%n hari yang lalu"), -"last month" => "bulan kemarin", -"_%n month ago_::_%n months ago_" => array("%n bulan yang lalu"), -"last year" => "tahun kemarin", -"years ago" => "beberapa tahun lalu", "Reset password" => "Atur ulang sandi", "No" => "Tidak", "Yes" => "Ya", diff --git a/core/l10n/io.php b/core/l10n/io.php index ffcdde48d47..aff098dff1f 100644 --- a/core/l10n/io.php +++ b/core/l10n/io.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/is.php b/core/l10n/is.php index a3ebb9ea0d8..6c3b1507cf3 100644 --- a/core/l10n/is.php +++ b/core/l10n/is.php @@ -22,16 +22,6 @@ $TRANSLATIONS = array( "Settings" => "Stillingar", "Folder" => "Mappa", "Saving..." => "Er að vista ...", -"seconds ago" => "sek.", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"today" => "í dag", -"yesterday" => "í gær", -"_%n day ago_::_%n days ago_" => array("",""), -"last month" => "síðasta mánuði", -"_%n month ago_::_%n months ago_" => array("",""), -"last year" => "síðasta ári", -"years ago" => "einhverjum árum", "Reset password" => "Endursetja lykilorð", "No" => "Nei", "Yes" => "Já", diff --git a/core/l10n/it.php b/core/l10n/it.php index 0da74fa9615..1b85e41c0c5 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Immagine", "Audio" => "Audio", "Saving..." => "Salvataggio in corso...", -"seconds ago" => "secondi fa", -"_%n minute ago_::_%n minutes ago_" => array("%n minuto fa","%n minuti fa"), -"_%n hour ago_::_%n hours ago_" => array("%n ora fa","%n ore fa"), -"today" => "oggi", -"yesterday" => "ieri", -"_%n day ago_::_%n days ago_" => array("%n giorno fa","%n giorni fa"), -"last month" => "mese scorso", -"_%n month ago_::_%n months ago_" => array("%n mese fa","%n mesi fa"), -"last year" => "anno scorso", -"years ago" => "anni fa", "Couldn't send reset email. Please contact your administrator." => "Impossibile inviare l'email di reimpostazione. Contatta il tuo amministratore.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Il collegamento per reimpostare la password è stato inviato al tuo indirizzo di posta. Se non lo ricevi in tempi ragionevoli, controlla le cartelle della posta indesiderata.
    Se non dovesse essere nemmeno lì, contatta il tuo amministratore locale.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "I tuoi file sono cifrati. Se non hai precedentemente abilitato la chiave di recupero, non sarà più possibile ritrovare i tuoi dati una volta che la password sarà reimpostata.
    Se non sei sicuro, per favore contatta l'amministratore prima di proseguire.
    Vuoi davvero continuare?", diff --git a/core/l10n/ja.php b/core/l10n/ja.php index d10bf0ade8b..1ede67fb976 100644 --- a/core/l10n/ja.php +++ b/core/l10n/ja.php @@ -36,16 +36,6 @@ $TRANSLATIONS = array( "Image" => "画像", "Audio" => "オーディオ", "Saving..." => "保存中...", -"seconds ago" => "数秒前", -"_%n minute ago_::_%n minutes ago_" => array("%n 分前"), -"_%n hour ago_::_%n hours ago_" => array("%n 時間前"), -"today" => "今日", -"yesterday" => "昨日", -"_%n day ago_::_%n days ago_" => array("%n日前"), -"last month" => "1ヶ月前", -"_%n month ago_::_%n months ago_" => array("%nヶ月前"), -"last year" => "1年前", -"years ago" => "数年前", "Couldn't send reset email. Please contact your administrator." => "リセットメールを送信できませんでした。管理者に問い合わせてください。", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "パスワードをリセットする、このリンクをクリックするとメールを送信します。しばらく経ってもメールが届かなかった場合は、スパム/ジャンクフォルダを確認してください。
    それでも見つからなかった場合は、管理者に問合せてください。", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "ファイルが暗号化されています。リカバリーキーが有効でない場合は、パスワードをリセットした後にあなたのデータを元に戻す方法はありません。
    どういうことか分からない場合は、操作を継続する前に管理者に連絡してください。
    続けてよろしいでしょうか?", diff --git a/core/l10n/jv.php b/core/l10n/jv.php index ffcdde48d47..aff098dff1f 100644 --- a/core/l10n/jv.php +++ b/core/l10n/jv.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ka_GE.php b/core/l10n/ka_GE.php index ea9da6ff9c2..872b81ea9dc 100644 --- a/core/l10n/ka_GE.php +++ b/core/l10n/ka_GE.php @@ -23,16 +23,6 @@ $TRANSLATIONS = array( "Folder" => "საქაღალდე", "Image" => "სურათი", "Saving..." => "შენახვა...", -"seconds ago" => "წამის წინ", -"_%n minute ago_::_%n minutes ago_" => array(""), -"_%n hour ago_::_%n hours ago_" => array(""), -"today" => "დღეს", -"yesterday" => "გუშინ", -"_%n day ago_::_%n days ago_" => array(""), -"last month" => "გასულ თვეში", -"_%n month ago_::_%n months ago_" => array(""), -"last year" => "ბოლო წელს", -"years ago" => "წლის წინ", "Reset password" => "პაროლის შეცვლა", "No" => "არა", "Yes" => "კი", diff --git a/core/l10n/km.php b/core/l10n/km.php index 8e7c91ca5a1..c2da871a113 100644 --- a/core/l10n/km.php +++ b/core/l10n/km.php @@ -24,16 +24,6 @@ $TRANSLATIONS = array( "Settings" => "ការកំណត់", "Folder" => "ថត", "Saving..." => "កំពុង​រក្សាទុក", -"seconds ago" => "វិនាទី​មុន", -"_%n minute ago_::_%n minutes ago_" => array("%n នាទី​មុន"), -"_%n hour ago_::_%n hours ago_" => array("%n ម៉ោង​មុន"), -"today" => "ថ្ងៃនេះ", -"yesterday" => "ម្សិលមិញ", -"_%n day ago_::_%n days ago_" => array("%n ថ្ងៃ​មុន"), -"last month" => "ខែមុន", -"_%n month ago_::_%n months ago_" => array("%n ខែ​មុន"), -"last year" => "ឆ្នាំ​មុន", -"years ago" => "ឆ្នាំ​មុន", "Reset password" => "កំណត់​ពាក្យ​សម្ងាត់​ម្ដង​ទៀត", "No" => "ទេ", "Yes" => "ព្រម", diff --git a/core/l10n/kn.php b/core/l10n/kn.php index dbedde7e637..1191769faa7 100644 --- a/core/l10n/kn.php +++ b/core/l10n/kn.php @@ -1,9 +1,5 @@ array(""), -"_%n hour ago_::_%n hours ago_" => array(""), -"_%n day ago_::_%n days ago_" => array(""), -"_%n month ago_::_%n months ago_" => array(""), "_{count} file conflict_::_{count} file conflicts_" => array("") ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/ko.php b/core/l10n/ko.php index ae9ad7eb78d..e6ec7919399 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -33,16 +33,6 @@ $TRANSLATIONS = array( "Folder" => "폴더", "Image" => "그림", "Saving..." => "저장 중...", -"seconds ago" => "초 전", -"_%n minute ago_::_%n minutes ago_" => array("%n분 전 "), -"_%n hour ago_::_%n hours ago_" => array("%n시간 전 "), -"today" => "오늘", -"yesterday" => "어제", -"_%n day ago_::_%n days ago_" => array("%n일 전 "), -"last month" => "지난 달", -"_%n month ago_::_%n months ago_" => array("%n달 전 "), -"last year" => "작년", -"years ago" => "년 전", "Couldn't send reset email. Please contact your administrator." => "재설정 메일을 보낼수 없습니다. 관리자에게 문의하십시오.", "Reset password" => "암호 재설정", "Password can not be changed. Please contact your administrator." => "비밀번호를 변경할수 없습니다. 관리자에게 문의하십시오.", diff --git a/core/l10n/ku_IQ.php b/core/l10n/ku_IQ.php index 49a24012e79..775fdab1f95 100644 --- a/core/l10n/ku_IQ.php +++ b/core/l10n/ku_IQ.php @@ -3,10 +3,6 @@ $TRANSLATIONS = array( "Settings" => "ده‌ستكاری", "Folder" => "بوخچه", "Saving..." => "پاشکه‌وتده‌کات...", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "Reset password" => "دووباره‌ كردنه‌وه‌ی وشه‌ی نهێنی", "No" => "نەخێر", "Yes" => "بەڵێ", diff --git a/core/l10n/lb.php b/core/l10n/lb.php index db697beb493..d5e38405cea 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -29,16 +29,6 @@ $TRANSLATIONS = array( "File" => "Fichier", "Folder" => "Dossier", "Saving..." => "Speicheren...", -"seconds ago" => "Sekonnen hir", -"_%n minute ago_::_%n minutes ago_" => array("%n Minutt hir","%n Minutten hir"), -"_%n hour ago_::_%n hours ago_" => array("",""), -"today" => "haut", -"yesterday" => "gëschter", -"_%n day ago_::_%n days ago_" => array("",""), -"last month" => "leschte Mount", -"_%n month ago_::_%n months ago_" => array("",""), -"last year" => "Lescht Joer", -"years ago" => "Joren hir", "Reset password" => "Passwuert zréck setzen", "No" => "Nee", "Yes" => "Jo", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index a9880f0246b..0f86486a63d 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -32,16 +32,6 @@ $TRANSLATIONS = array( "File" => "Failas", "Folder" => "Katalogas", "Saving..." => "Saugoma...", -"seconds ago" => "prieš sekundę", -"_%n minute ago_::_%n minutes ago_" => array(" prieš %n minutę"," prieš %n minučių"," prieš %n minučių"), -"_%n hour ago_::_%n hours ago_" => array("prieš %n valandą","prieš %n valandų","prieš %n valandų"), -"today" => "šiandien", -"yesterday" => "vakar", -"_%n day ago_::_%n days ago_" => array("prieš %n dieną","prieš %n dienas","prieš %n dienų"), -"last month" => "praeitą mėnesį", -"_%n month ago_::_%n months ago_" => array("prieš %n mėnesį","prieš %n mėnesius","prieš %n mėnesių"), -"last year" => "praeitais metais", -"years ago" => "prieš metus", "Reset password" => "Atkurti slaptažodį", "No" => "Ne", "Yes" => "Taip", diff --git a/core/l10n/lv.php b/core/l10n/lv.php index cd1ec0e0896..1be63923f4f 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -22,16 +22,6 @@ $TRANSLATIONS = array( "Settings" => "Iestatījumi", "Folder" => "Mape", "Saving..." => "Saglabā...", -"seconds ago" => "sekundes atpakaļ", -"_%n minute ago_::_%n minutes ago_" => array("Tagad, %n minūtes","Pirms %n minūtes","Pirms %n minūtēm"), -"_%n hour ago_::_%n hours ago_" => array("Šodien, %n stundas","Pirms %n stundas","Pirms %n stundām"), -"today" => "šodien", -"yesterday" => "vakar", -"_%n day ago_::_%n days ago_" => array("Šodien, %n dienas","Pirms %n dienas","Pirms %n dienām"), -"last month" => "pagājušajā mēnesī", -"_%n month ago_::_%n months ago_" => array("Šomēnes, %n mēneši","Pirms %n mēneša","Pirms %n mēnešiem"), -"last year" => "gājušajā gadā", -"years ago" => "gadus atpakaļ", "Reset password" => "Mainīt paroli", "No" => "Nē", "Yes" => "Jā", diff --git a/core/l10n/mk.php b/core/l10n/mk.php index fa51a5e50cc..cefcf1e989d 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -28,16 +28,6 @@ $TRANSLATIONS = array( "Settings" => "Подесувања", "Folder" => "Папка", "Saving..." => "Снимам...", -"seconds ago" => "пред секунди", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"today" => "денеска", -"yesterday" => "вчера", -"_%n day ago_::_%n days ago_" => array("",""), -"last month" => "минатиот месец", -"_%n month ago_::_%n months ago_" => array("",""), -"last year" => "минатата година", -"years ago" => "пред години", "Reset password" => "Ресетирај лозинка", "No" => "Не", "Yes" => "Да", diff --git a/core/l10n/ml.php b/core/l10n/ml.php index ffcdde48d47..aff098dff1f 100644 --- a/core/l10n/ml.php +++ b/core/l10n/ml.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ml_IN.php b/core/l10n/ml_IN.php index ffcdde48d47..aff098dff1f 100644 --- a/core/l10n/ml_IN.php +++ b/core/l10n/ml_IN.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/mn.php b/core/l10n/mn.php index ffcdde48d47..aff098dff1f 100644 --- a/core/l10n/mn.php +++ b/core/l10n/mn.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ms_MY.php b/core/l10n/ms_MY.php index 3fe6a776e85..8eb766614a8 100644 --- a/core/l10n/ms_MY.php +++ b/core/l10n/ms_MY.php @@ -22,10 +22,6 @@ $TRANSLATIONS = array( "Settings" => "Tetapan", "Folder" => "Folder", "Saving..." => "Simpan...", -"_%n minute ago_::_%n minutes ago_" => array(""), -"_%n hour ago_::_%n hours ago_" => array(""), -"_%n day ago_::_%n days ago_" => array(""), -"_%n month ago_::_%n months ago_" => array(""), "Reset password" => "Penetapan semula kata laluan", "No" => "Tidak", "Yes" => "Ya", diff --git a/core/l10n/my_MM.php b/core/l10n/my_MM.php index d731d2fdae6..d6a6632ecfc 100644 --- a/core/l10n/my_MM.php +++ b/core/l10n/my_MM.php @@ -12,16 +12,6 @@ $TRANSLATIONS = array( "October" => "အောက်တိုဘာ", "November" => "နိုဝင်ဘာ", "December" => "ဒီဇင်ဘာ", -"seconds ago" => "စက္ကန့်အနည်းငယ်က", -"_%n minute ago_::_%n minutes ago_" => array(""), -"_%n hour ago_::_%n hours ago_" => array(""), -"today" => "ယနေ့", -"yesterday" => "မနေ့က", -"_%n day ago_::_%n days ago_" => array(""), -"last month" => "ပြီးခဲ့သောလ", -"_%n month ago_::_%n months ago_" => array(""), -"last year" => "မနှစ်က", -"years ago" => "နှစ် အရင်က", "No" => "မဟုတ်ဘူး", "Yes" => "ဟုတ်", "Choose" => "ရွေးချယ်", diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index 008c5ee3767..21cbf739b67 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Bilde", "Audio" => "Audio", "Saving..." => "Lagrer...", -"seconds ago" => "for få sekunder siden", -"_%n minute ago_::_%n minutes ago_" => array("for %n minutt siden","for %n minutter siden"), -"_%n hour ago_::_%n hours ago_" => array("for %n time siden","for %n timer siden"), -"today" => "i dag", -"yesterday" => "i går", -"_%n day ago_::_%n days ago_" => array("for %n dag siden","for %n dager siden"), -"last month" => "forrige måned", -"_%n month ago_::_%n months ago_" => array("for %n måned siden","for %n måneder siden"), -"last year" => "i fjor", -"years ago" => "årevis siden", "Couldn't send reset email. Please contact your administrator." => "Klarte ikke å sende e-post for tilbakestilling. Kontakt administratoren.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Lenken for tilbakestilling av passordet ditt er sendt til din e-postadresse. Hvis du ikke mottar den innen rimelig tid, sjekk mappen for søppelpost.
    Hvis du ikke finner den der, kontakt din lokale administrator.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Filene dine er kryptert. Hvis du ikke har aktivert gjenopprettingsnøkkelen, vil det være helt umulig å få tilbake dataene dine etter at pasordet ditt er tilbakestilt.
    Hvis du er usikker på hva du skal gjøre, kontakt administratoren din før du fortsetter.
    Vil du virkelig fortsette?", diff --git a/core/l10n/nds.php b/core/l10n/nds.php index ffcdde48d47..aff098dff1f 100644 --- a/core/l10n/nds.php +++ b/core/l10n/nds.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ne.php b/core/l10n/ne.php index ffcdde48d47..aff098dff1f 100644 --- a/core/l10n/ne.php +++ b/core/l10n/ne.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 4eb2b8b988e..f4ba6ae12f5 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Afbeelding", "Audio" => "Audio", "Saving..." => "Opslaan", -"seconds ago" => "seconden geleden", -"_%n minute ago_::_%n minutes ago_" => array("","%n minuten geleden"), -"_%n hour ago_::_%n hours ago_" => array("","%n uur geleden"), -"today" => "vandaag", -"yesterday" => "gisteren", -"_%n day ago_::_%n days ago_" => array("","%n dagen geleden"), -"last month" => "vorige maand", -"_%n month ago_::_%n months ago_" => array("","%n maanden geleden"), -"last year" => "vorig jaar", -"years ago" => "jaar geleden", "Couldn't send reset email. Please contact your administrator." => "Kon herstel e-mail niet versturen. Neem contact op met uw beheerder.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "De link om uw wachtwoord te herstellen is per e-mail naar u verstuurd. Als u dit bericht niet binnen redelijke tijd hebt ontvangen, controleer dan uw spammap.
    Als het daar niet in zit, neem dan contact op met uw beheerder.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Uw bestanden zijn versleuteld. Als u de herstelsleutel niet hebt geactiveerd, is er geen mogelijk om uw gegevens terug te krijgen nadat uw wachtwoord is hersteld.
    Als u niet weet wat u moet doen, neem dan eerst contact op met uw beheerder.
    Wilt u echt verder gaan?", diff --git a/core/l10n/nn_NO.php b/core/l10n/nn_NO.php index 1996299d615..3c58ea6555e 100644 --- a/core/l10n/nn_NO.php +++ b/core/l10n/nn_NO.php @@ -31,16 +31,6 @@ $TRANSLATIONS = array( "Settings" => "Innstillingar", "Folder" => "Mappe", "Saving..." => "Lagrar …", -"seconds ago" => "sekund sidan", -"_%n minute ago_::_%n minutes ago_" => array("%n minutt sidan","%n minutt sidan"), -"_%n hour ago_::_%n hours ago_" => array("%n time sidan","%n timar sidan"), -"today" => "i dag", -"yesterday" => "i går", -"_%n day ago_::_%n days ago_" => array("%n dag sidan","%n dagar sidan"), -"last month" => "førre månad", -"_%n month ago_::_%n months ago_" => array("%n månad sidan","%n månadar sidan"), -"last year" => "i fjor", -"years ago" => "år sidan", "I know what I'm doing" => "Eg veit kva eg gjer", "Reset password" => "Nullstill passord", "No" => "Nei", diff --git a/core/l10n/nqo.php b/core/l10n/nqo.php index dbedde7e637..1191769faa7 100644 --- a/core/l10n/nqo.php +++ b/core/l10n/nqo.php @@ -1,9 +1,5 @@ array(""), -"_%n hour ago_::_%n hours ago_" => array(""), -"_%n day ago_::_%n days ago_" => array(""), -"_%n month ago_::_%n months ago_" => array(""), "_{count} file conflict_::_{count} file conflicts_" => array("") ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/oc.php b/core/l10n/oc.php index cba066819e0..42ea079ec96 100644 --- a/core/l10n/oc.php +++ b/core/l10n/oc.php @@ -22,16 +22,6 @@ $TRANSLATIONS = array( "Settings" => "Configuracion", "Folder" => "Dorsièr", "Saving..." => "Enregistra...", -"seconds ago" => "segonda a", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"today" => "uèi", -"yesterday" => "ièr", -"_%n day ago_::_%n days ago_" => array("",""), -"last month" => "mes passat", -"_%n month ago_::_%n months ago_" => array("",""), -"last year" => "an passat", -"years ago" => "ans a", "Reset password" => "Senhal tornat botar", "No" => "Non", "Yes" => "Òc", diff --git a/core/l10n/or_IN.php b/core/l10n/or_IN.php index ffcdde48d47..aff098dff1f 100644 --- a/core/l10n/or_IN.php +++ b/core/l10n/or_IN.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/pa.php b/core/l10n/pa.php index 254684ad204..820ea0280eb 100644 --- a/core/l10n/pa.php +++ b/core/l10n/pa.php @@ -21,16 +21,6 @@ $TRANSLATIONS = array( "December" => "ਦਸੰਬਰ", "Settings" => "ਸੈਟਿੰਗ", "Saving..." => "...ਸੰਭਾਲਿਆ ਜਾ ਰਿਹਾ ਹੈ", -"seconds ago" => "ਸਕਿੰਟ ਪਹਿਲਾਂ", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"today" => "ਅੱਜ", -"yesterday" => "ਕੱਲ੍ਹ", -"_%n day ago_::_%n days ago_" => array("",""), -"last month" => "ਪਿਛਲੇ ਮਹੀਨੇ", -"_%n month ago_::_%n months ago_" => array("",""), -"last year" => "ਪਿਛਲੇ ਸਾਲ", -"years ago" => "ਸਾਲਾਂ ਪਹਿਲਾਂ", "No" => "ਨਹੀਂ", "Yes" => "ਹਾਂ", "Choose" => "ਚੁਣੋ", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index b112167c2d0..bfd2b6da6ef 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Obraz", "Audio" => "Dźwięk", "Saving..." => "Zapisywanie...", -"seconds ago" => "sekund temu", -"_%n minute ago_::_%n minutes ago_" => array("%n minute temu","%n minut temu","%n minut temu"), -"_%n hour ago_::_%n hours ago_" => array("%n godzine temu","%n godzin temu","%n godzin temu"), -"today" => "dziś", -"yesterday" => "wczoraj", -"_%n day ago_::_%n days ago_" => array("%n dzień temu","%n dni temu","%n dni temu"), -"last month" => "w zeszłym miesiącu", -"_%n month ago_::_%n months ago_" => array("%n miesiąc temu","%n miesięcy temu","%n miesięcy temu"), -"last year" => "w zeszłym roku", -"years ago" => "lat temu", "Couldn't send reset email. Please contact your administrator." => "Nie mogę wysłać maila resetującego. Skontaktuj się z administratorem.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Link do zresetowanego hasła, został wysłany na twój adres e-mail. Jeśli nie dostałeś wiadomości w rozsądnym czasie, sprawdź folder ze spamem.
    Jeśli nie ma wiadomości w tym folderze, skontaktuj się ze swoim administratorem.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Twoje pliki są zaszyfrowane. Jeśli nie włączyłeś klucza odzyskiwania, nie będzie możliwości odszyfrowania tych plików po zresetowaniu hasła.
    Jeśli nie jesteś pewien co zrobić, skontaktuj się ze swoim administratorem, zanim bedziesz kontynuował.
    Czy chcesz kontynuować?\n ", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 3e629689303..79abd1964d6 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Imagem", "Audio" => "Audio", "Saving..." => "Salvando...", -"seconds ago" => "segundos atrás", -"_%n minute ago_::_%n minutes ago_" => array(" há %n minuto","há %n minutos"), -"_%n hour ago_::_%n hours ago_" => array("há %n hora","há %n horas"), -"today" => "hoje", -"yesterday" => "ontem", -"_%n day ago_::_%n days ago_" => array("há %n dia","há %n dias"), -"last month" => "último mês", -"_%n month ago_::_%n months ago_" => array("há %n mês","há %n meses"), -"last year" => "último ano", -"years ago" => "anos atrás", "Couldn't send reset email. Please contact your administrator." => "Não foi possível enviar e-mail de redefinição. Por favor, contate o administrador.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "O link para redefinir sua senha foi enviada para o seu e-mail. Se você não recebê-lo dentro de um período razoável de tempo, verifique suas pastas de spam/lixo.
    Se ele não estiver lá, pergunte ao administrador do local.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Seus arquivos são criptografados. Se você não ativou a chave de recuperação, não haverá maneira de obter seus dados de volta após a sua senha ser redefinida.
    Se você não tem certeza do que fazer, por favor, contate o administrador antes de continuar.
    Você realmente deseja continuar?", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index 8fde831af8e..24f4d0c2f4d 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "Turned off maintenance mode" => "Desactivado o modo de manutenção", "Updated database" => "Base de dados actualizada", "Checked database schema update" => "Atualização do esquema da base de dados verificada.", +"Checked database schema update for apps" => "Atualização do esquema da base de dados verificada.", "Updated \"%s\" to %s" => "Actualizado \"%s\" para %s", "Disabled incompatible apps: %s" => "Apps incompatíveis desativadas: %s", "No image or file provided" => "Não foi selecionado nenhum ficheiro para importar", @@ -37,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Imagem", "Audio" => "Audio", "Saving..." => "A guardar...", -"seconds ago" => "Minutos atrás", -"_%n minute ago_::_%n minutes ago_" => array("%n minuto atrás","%n minutos atrás"), -"_%n hour ago_::_%n hours ago_" => array("%n hora atrás","%n horas atrás"), -"today" => "hoje", -"yesterday" => "ontem", -"_%n day ago_::_%n days ago_" => array("%n dia atrás","%n dias atrás"), -"last month" => "ultímo mês", -"_%n month ago_::_%n months ago_" => array("%n mês atrás","%n meses atrás"), -"last year" => "ano passado", -"years ago" => "anos atrás", "Couldn't send reset email. Please contact your administrator." => "Ocorreu um problema com o envio do e-mail, por favor contactar o administrador.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "O link para fazer reset à sua password foi enviado para o seu e-mail.
    Se não o recebeu dentro um espaço de tempo aceitável, por favor verifique a sua pasta de SPAM.
    Se não o encontrar, por favor contacte o seu administrador.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Os seus ficheiros estão encriptados. Se não activou a chave de recuperação, não vai ser possível recuperar os seus dados no caso da sua password ser reinicializada. Se não tem a certeza do que precisa de fazer, por favor contacte o seu administrador antes de continuar. Tem a certeza que quer continuar?", @@ -190,12 +181,14 @@ $TRANSLATIONS = array( "Thank you for your patience." => "Obrigado pela sua paciência.", "You are accessing the server from an untrusted domain." => "Está a aceder ao servidor a partir de um domínio que não é de confiança.", "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domain\" setting in config/config.php. An example configuration is provided in config/config.sample.php." => "Por favor contacte o seu administrador. Se é um administrador desta instância, configure as definições \"trusted_domain\" em config/config.php. Um exemplo de configuração é fornecido em config/config.sample.php.", +"Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." => "Dependendo da configuração, como administrador, você também pode ser capaz de usar o botão abaixo para confiar neste domínio.", "Add \"%s\" as trusted domain" => "Adicionar \"%s\" como um domínio de confiança", "%s will be updated to version %s." => "O %s irá ser atualizado para a versão %s.", "The following apps will be disabled:" => "As seguintes apps irão ser desativadas:", "The theme %s has been disabled." => "O tema %s foi desativado.", "Please make sure that the database, the config folder and the data folder have been backed up before proceeding." => "Por favor garanta a cópia de segurança da base de dados e das pastas 'config' e 'data' antes de prosseguir.", "Start update" => "Iniciar atualização", +"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" => "Para evitar tempos de espera com instalações maiores, você pode em vez disso, executar o seguinte comando a partir do diretório de instalação:", "This ownCloud instance is currently being updated, which may take a while." => "Esta instância do ownCloud está a ser actualizada, poderá demorar algum tempo.", "Please reload this page after a short time to continue using ownCloud." => "Por favo recarregue esta página após algum tempo para continuar a usar ownCloud." ); diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 030c0fd0044..55f67a032d7 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -33,16 +33,6 @@ $TRANSLATIONS = array( "Image" => "Imagine", "Audio" => "Audio", "Saving..." => "Se salvează...", -"seconds ago" => "secunde în urmă", -"_%n minute ago_::_%n minutes ago_" => array("acum %n minut","acum %n minute","acum %n minute"), -"_%n hour ago_::_%n hours ago_" => array("acum %n oră","acum %n ore","acum %n ore"), -"today" => "astăzi", -"yesterday" => "ieri", -"_%n day ago_::_%n days ago_" => array("acum %n zi","acum %n zile","acum %n zile"), -"last month" => "ultima lună", -"_%n month ago_::_%n months ago_" => array("","","%n luni în urmă"), -"last year" => "ultimul an", -"years ago" => "ani în urmă", "I know what I'm doing" => "Eu știu ce fac", "Reset password" => "Resetează parola", "Password can not be changed. Please contact your administrator." => "Parola nu poate fi modificata. Vă rugăm să contactați administratorul dvs.", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index 3201dc517f7..9cdaced35d5 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Изображение", "Audio" => "Аудио", "Saving..." => "Сохранение...", -"seconds ago" => "только что", -"_%n minute ago_::_%n minutes ago_" => array("%n минуту назад","%n минуты назад","%n минут назад"), -"_%n hour ago_::_%n hours ago_" => array("%n час назад","%n часа назад","%n часов назад"), -"today" => "сегодня", -"yesterday" => "вчера", -"_%n day ago_::_%n days ago_" => array("%n день назад","%n дня назад","%n дней назад"), -"last month" => "месяц назад", -"_%n month ago_::_%n months ago_" => array("%n месяц назад","%n месяца назад","%n месяцев назад"), -"last year" => "год назад", -"years ago" => "несколько лет назад", "Couldn't send reset email. Please contact your administrator." => "Не удалось отправить письмо для сброса пароля. Пожалуйста, свяжитесь с вашим администратором.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Ссылка для восстановления пароля была отправлена на вашу почту. Если вы не получили её, проверьте папку спама.
    Если там письма со ссылкой нет, то обратитесь к локальному администратору.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Ваши файлы зашифрованы. Если вы не включили ключ восстановления, то ваши данные будут недоступны после сброса пароля.
    Если вы не уверены что делать дальше - обратитесь к локальному администратору.
    Вытдействительно хотите продолжить?", diff --git a/core/l10n/si_LK.php b/core/l10n/si_LK.php index 37a70088b67..cad09c5ed10 100644 --- a/core/l10n/si_LK.php +++ b/core/l10n/si_LK.php @@ -23,16 +23,6 @@ $TRANSLATIONS = array( "Folder" => "ෆෝල්ඩරය", "Image" => "පින්තූරය", "Saving..." => "සුරැකෙමින් පවතී...", -"seconds ago" => "තත්පරයන්ට පෙර", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"today" => "අද", -"yesterday" => "ඊයේ", -"_%n day ago_::_%n days ago_" => array("",""), -"last month" => "පෙර මාසයේ", -"_%n month ago_::_%n months ago_" => array("",""), -"last year" => "පෙර අවුරුද්දේ", -"years ago" => "අවුරුදු කීපයකට පෙර", "Reset password" => "මුරපදය ප්‍රත්‍යාරම්භ කරන්න", "No" => "එපා", "Yes" => "ඔව්", diff --git a/core/l10n/sk.php b/core/l10n/sk.php index c0a4ae1257b..74d6a570c09 100644 --- a/core/l10n/sk.php +++ b/core/l10n/sk.php @@ -20,10 +20,6 @@ $TRANSLATIONS = array( "November" => "November", "December" => "December", "Settings" => "Nastavenia", -"_%n minute ago_::_%n minutes ago_" => array("","",""), -"_%n hour ago_::_%n hours ago_" => array("","",""), -"_%n day ago_::_%n days ago_" => array("","",""), -"_%n month ago_::_%n months ago_" => array("","",""), "_{count} file conflict_::_{count} file conflicts_" => array("","",""), "Cancel" => "Zrušiť", "Share" => "Zdieľať", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index b640bd53bdf..847184b3bdb 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -36,16 +36,6 @@ $TRANSLATIONS = array( "Image" => "Obrázok", "Audio" => "Zvuk", "Saving..." => "Ukladám...", -"seconds ago" => "pred sekundami", -"_%n minute ago_::_%n minutes ago_" => array("pred %n minútou","pred %n minútami","pred %n minútami"), -"_%n hour ago_::_%n hours ago_" => array("pred %n hodinou","pred %n hodinami","pred %n hodinami"), -"today" => "dnes", -"yesterday" => "včera", -"_%n day ago_::_%n days ago_" => array("pred %n dňom","pred %n dňami","pred %n dňami"), -"last month" => "minulý mesiac", -"_%n month ago_::_%n months ago_" => array("pred %n mesiacom","pred %n mesiacmi","pred %n mesiacmi"), -"last year" => "minulý rok", -"years ago" => "pred rokmi", "Couldn't send reset email. Please contact your administrator." => "Nemožno poslať email pre obnovu. Kontaktujte prosím vášho administrátora.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Odkaz na obnovu hesla bol odoslaný na váš email. Pokiaľ ho neobdržíte v primeranom čase, skontrolujte spam / priečinok nevyžiadanej pošty.
    Ak tam nie je, kontaktujte svojho administrátora.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Súbory sú zašifrované. Ak ste nepovolili kľúč pre obnovenie, neexistuje žiadny spôsob, ako obnoviť vaše dáta po obnovení vášho hesla.
    Ak si nie ste istí čo urobiť, prosím skôr než budete pokračovať, obráťte sa na administrátora.
    Naozaj chcete pokračovať?", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 77df9870cfc..7212e5a27b3 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Slika", "Audio" => "Zvok", "Saving..." => "Poteka shranjevanje ...", -"seconds ago" => "pred nekaj sekundami", -"_%n minute ago_::_%n minutes ago_" => array("pred %n minuto","pred %n minutama","pred %n minutami","pred %n minutami"), -"_%n hour ago_::_%n hours ago_" => array("pred %n uro","pred %n urama","pred %n urami","pred %n urami"), -"today" => "danes", -"yesterday" => "včeraj", -"_%n day ago_::_%n days ago_" => array("pred %n dnevom","pred %n dnevoma","pred %n dnevi","pred %n dnevi"), -"last month" => "zadnji mesec", -"_%n month ago_::_%n months ago_" => array("pred %n mesecem","pred %n mesecema","pred %n meseci","pred %n meseci"), -"last year" => "lansko leto", -"years ago" => "let nazaj", "Couldn't send reset email. Please contact your administrator." => "Ni mogoče nastaviti elektronskega naslova za ponastavitev. Stopite v stik s skrbnikom sistema.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Povezava za ponastavitev gesla je bila poslana na naveden elektronski naslov. V kolikor sporočila ne dobite v kratkem, preverite tudi mapo neželene pošte.
    Če sporočila ni niti v tej mapi, stopite v stik s skrbnikom.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Datoteke so šifrirane. Če niste omogočili obnovitvenega ključa, po ponastavitvi gesla ne bo mogoč dostop do datotek.
    V primeru, da niste prepričani, kaj storiti, stopite v stik s skrbnikom sistema.
    Ali ste prepričani, da želite nadaljevati?", diff --git a/core/l10n/sq.php b/core/l10n/sq.php index 1ce7cc0e007..498bc7362b8 100644 --- a/core/l10n/sq.php +++ b/core/l10n/sq.php @@ -25,16 +25,6 @@ $TRANSLATIONS = array( "Settings" => "Parametra", "Folder" => "Dosje", "Saving..." => "Duke ruajtur...", -"seconds ago" => "sekonda më parë", -"_%n minute ago_::_%n minutes ago_" => array("%n minut më parë","%n minuta më parë"), -"_%n hour ago_::_%n hours ago_" => array("%n orë më parë","%n orë më parë"), -"today" => "sot", -"yesterday" => "dje", -"_%n day ago_::_%n days ago_" => array("%n ditë më parë","%n ditë më parë"), -"last month" => "muajin e shkuar", -"_%n month ago_::_%n months ago_" => array("%n muaj më parë","%n muaj më parë"), -"last year" => "vitin e shkuar", -"years ago" => "vite më parë", "Reset password" => "Rivendos kodin", "No" => "Jo", "Yes" => "Po", diff --git a/core/l10n/sr.php b/core/l10n/sr.php index aa4e1198618..27df2546c78 100644 --- a/core/l10n/sr.php +++ b/core/l10n/sr.php @@ -22,16 +22,6 @@ $TRANSLATIONS = array( "Settings" => "Поставке", "Folder" => "фасцикла", "Saving..." => "Чување у току...", -"seconds ago" => "пре неколико секунди", -"_%n minute ago_::_%n minutes ago_" => array("","",""), -"_%n hour ago_::_%n hours ago_" => array("","",""), -"today" => "данас", -"yesterday" => "јуче", -"_%n day ago_::_%n days ago_" => array("","",""), -"last month" => "прошлог месеца", -"_%n month ago_::_%n months ago_" => array("","",""), -"last year" => "прошле године", -"years ago" => "година раније", "Reset password" => "Ресетуј лозинку", "No" => "Не", "Yes" => "Да", diff --git a/core/l10n/sr@latin.php b/core/l10n/sr@latin.php index 578341697e4..459d4d812de 100644 --- a/core/l10n/sr@latin.php +++ b/core/l10n/sr@latin.php @@ -23,16 +23,6 @@ $TRANSLATIONS = array( "File" => "Fajl", "Folder" => "Direktorijum", "Image" => "Slika", -"seconds ago" => "Pre par sekundi", -"_%n minute ago_::_%n minutes ago_" => array("pre %n minuta","pre %n minuta","pre %n minuta"), -"_%n hour ago_::_%n hours ago_" => array("pre %n sat","pre %n sati","pre %n sati"), -"today" => "Danas", -"yesterday" => "juče", -"_%n day ago_::_%n days ago_" => array("Pre %n dan.","Pre %n dana.","Pre %n dana."), -"last month" => "prošlog meseca", -"_%n month ago_::_%n months ago_" => array("","",""), -"last year" => "prošle godine", -"years ago" => "pre nekoliko godina", "I know what I'm doing" => "Znam šta radim", "Reset password" => "Resetuj lozinku", "No" => "Ne", diff --git a/core/l10n/su.php b/core/l10n/su.php index dbedde7e637..1191769faa7 100644 --- a/core/l10n/su.php +++ b/core/l10n/su.php @@ -1,9 +1,5 @@ array(""), -"_%n hour ago_::_%n hours ago_" => array(""), -"_%n day ago_::_%n days ago_" => array(""), -"_%n month ago_::_%n months ago_" => array(""), "_{count} file conflict_::_{count} file conflicts_" => array("") ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/sv.php b/core/l10n/sv.php index 126a214197a..caa6ff5eb2d 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -35,16 +35,6 @@ $TRANSLATIONS = array( "Image" => "Bild", "Audio" => "Ljud", "Saving..." => "Sparar...", -"seconds ago" => "sekunder sedan", -"_%n minute ago_::_%n minutes ago_" => array("%n minut sedan","%n minuter sedan"), -"_%n hour ago_::_%n hours ago_" => array("%n timme sedan","%n timmar sedan"), -"today" => "i dag", -"yesterday" => "i går", -"_%n day ago_::_%n days ago_" => array("%n dag sedan","%n dagar sedan"), -"last month" => "förra månaden", -"_%n month ago_::_%n months ago_" => array("%n månad sedan","%n månader sedan"), -"last year" => "förra året", -"years ago" => "år sedan", "Couldn't send reset email. Please contact your administrator." => "Kunde inte skicka återställningsmail. Vänligen kontakta din administratör.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Länken för att återställa ditt lösenord har skickats till din e-mail. Om du inte mottar något inom kort, kontrollera spam/skräpkorgen.
    Om det inte finns något där, vänligen kontakta din lokala administratör.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Dina filer är krypterade. Om du inte angett någon återställningsnyckel, kommer det att vara omöjligt att få tillbaka dina data efter att lösenordet är återställt..
    Om du är osäker på vad du ska göra, vänligen kontakta din administratör innan du fortsätter.
    Är du verkligen helt säker på att du vill fortsätta?", diff --git a/core/l10n/sw_KE.php b/core/l10n/sw_KE.php index ffcdde48d47..aff098dff1f 100644 --- a/core/l10n/sw_KE.php +++ b/core/l10n/sw_KE.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ta_IN.php b/core/l10n/ta_IN.php index da1021cd33e..f363cf0c9bf 100644 --- a/core/l10n/ta_IN.php +++ b/core/l10n/ta_IN.php @@ -1,10 +1,6 @@ "அமைப்புகள்", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Send" => "அனுப்பவும்" ); diff --git a/core/l10n/ta_LK.php b/core/l10n/ta_LK.php index 000a1022f4c..0cd67b00e7d 100644 --- a/core/l10n/ta_LK.php +++ b/core/l10n/ta_LK.php @@ -22,16 +22,6 @@ $TRANSLATIONS = array( "Settings" => "அமைப்புகள்", "Folder" => "கோப்புறை", "Saving..." => "சேமிக்கப்படுகிறது...", -"seconds ago" => "செக்கன்களுக்கு முன்", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"today" => "இன்று", -"yesterday" => "நேற்று", -"_%n day ago_::_%n days ago_" => array("",""), -"last month" => "கடந்த மாதம்", -"_%n month ago_::_%n months ago_" => array("",""), -"last year" => "கடந்த வருடம்", -"years ago" => "வருடங்களுக்கு முன்", "Reset password" => "மீளமைத்த கடவுச்சொல்", "No" => "இல்லை", "Yes" => "ஆம்", diff --git a/core/l10n/te.php b/core/l10n/te.php index 9ca5068bbc1..c8b742c8c90 100644 --- a/core/l10n/te.php +++ b/core/l10n/te.php @@ -21,16 +21,6 @@ $TRANSLATIONS = array( "December" => "డిసెంబర్", "Settings" => "అమరికలు", "Folder" => "సంచయం", -"seconds ago" => "క్షణాల క్రితం", -"_%n minute ago_::_%n minutes ago_" => array("%n నిమిషం క్రితం","%n నిమిషాల క్రితం"), -"_%n hour ago_::_%n hours ago_" => array("%n గంట క్రితం","%n గంటల క్రితం"), -"today" => "ఈరోజు", -"yesterday" => "నిన్న", -"_%n day ago_::_%n days ago_" => array("%n రోజు క్రితం","%n రోజుల క్రితం"), -"last month" => "పోయిన నెల", -"_%n month ago_::_%n months ago_" => array("%n నెల క్రితం","%n నెలల క్రితం"), -"last year" => "పోయిన సంవత్సరం", -"years ago" => "సంవత్సరాల క్రితం", "No" => "కాదు", "Yes" => "అవును", "Ok" => "సరే", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index 3f03b3ff8c2..67a5c34e569 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -23,16 +23,6 @@ $TRANSLATIONS = array( "Folder" => "แฟ้มเอกสาร", "Image" => "รูปภาพ", "Saving..." => "กำลังบันทึกข้อมูล...", -"seconds ago" => "วินาที ก่อนหน้านี้", -"_%n minute ago_::_%n minutes ago_" => array(""), -"_%n hour ago_::_%n hours ago_" => array(""), -"today" => "วันนี้", -"yesterday" => "เมื่อวานนี้", -"_%n day ago_::_%n days ago_" => array(""), -"last month" => "เดือนที่แล้ว", -"_%n month ago_::_%n months ago_" => array(""), -"last year" => "ปีที่แล้ว", -"years ago" => "ปี ที่ผ่านมา", "Reset password" => "เปลี่ยนรหัสผ่าน", "No" => "ไม่ตกลง", "Yes" => "ตกลง", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 30246849a22..762f3d286a0 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Resim", "Audio" => "Ses", "Saving..." => "Kaydediliyor...", -"seconds ago" => "saniyeler önce", -"_%n minute ago_::_%n minutes ago_" => array("%n dakika önce","%n dakika önce"), -"_%n hour ago_::_%n hours ago_" => array("%n saat önce","%n saat önce"), -"today" => "bugün", -"yesterday" => "dün", -"_%n day ago_::_%n days ago_" => array("%n gün önce","%n gün önce"), -"last month" => "geçen ay", -"_%n month ago_::_%n months ago_" => array("%n ay önce","%n ay önce"), -"last year" => "geçen yıl", -"years ago" => "yıllar önce", "Couldn't send reset email. Please contact your administrator." => "Sıfırlama e-postası gönderilemedi. Lütfen yöneticiniz ile iletişime geçin.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Parolanızı değiştirme bağlantısı e-posta adresinize gönderildi. Makul bir süre içerisinde almadıysanız spam/gereksiz klasörlerini kontrol ediniz.
    Bu konumlarda da yoksa yerel sistem yöneticinize sorunuz.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Dosyalarınız şifrelenmiş. Kurtarma anahtarını etkinleştirmemişseniz, parola sıfırlama işleminden sonra verilerinize erişmeniz imkansız olacak.
    Ne yaptığınızdan emin değilseniz, devam etmeden önce sistem yöneticiniz ile iletişime geçin.
    Gerçekten devam etmek istiyor musunuz?", diff --git a/core/l10n/tzm.php b/core/l10n/tzm.php index 7f8ce6cb954..63fd3b90a53 100644 --- a/core/l10n/tzm.php +++ b/core/l10n/tzm.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n == 0 || n == 1 || (n > 10 && n < 100) ? 0 : 1;"; diff --git a/core/l10n/ug.php b/core/l10n/ug.php index 10179c3af48..fb52f5483a2 100644 --- a/core/l10n/ug.php +++ b/core/l10n/ug.php @@ -22,12 +22,6 @@ $TRANSLATIONS = array( "Settings" => "تەڭشەكلەر", "Folder" => "قىسقۇچ", "Saving..." => "ساقلاۋاتىدۇ…", -"_%n minute ago_::_%n minutes ago_" => array(""), -"_%n hour ago_::_%n hours ago_" => array(""), -"today" => "بۈگۈن", -"yesterday" => "تۈنۈگۈن", -"_%n day ago_::_%n days ago_" => array(""), -"_%n month ago_::_%n months ago_" => array(""), "No" => "ياق", "Yes" => "ھەئە", "Ok" => "جەزملە", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index be378b6cd6a..cce88a15938 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -32,16 +32,6 @@ $TRANSLATIONS = array( "File" => "Файл", "Folder" => "Тека", "Saving..." => "Зберігаю...", -"seconds ago" => "секунди тому", -"_%n minute ago_::_%n minutes ago_" => array("%n хвилину тому","%n хвилини тому","%n хвилин тому"), -"_%n hour ago_::_%n hours ago_" => array("%n годину тому","%n години тому","%n годин тому"), -"today" => "сьогодні", -"yesterday" => "вчора", -"_%n day ago_::_%n days ago_" => array("%n день тому","%n дні тому","%n днів тому"), -"last month" => "минулого місяця", -"_%n month ago_::_%n months ago_" => array("%n місяць тому","%n місяці тому","%n місяців тому"), -"last year" => "минулого року", -"years ago" => "роки тому", "Reset password" => "Скинути пароль", "No" => "Ні", "Yes" => "Так", diff --git a/core/l10n/ur.php b/core/l10n/ur.php index ffcdde48d47..aff098dff1f 100644 --- a/core/l10n/ur.php +++ b/core/l10n/ur.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ur_PK.php b/core/l10n/ur_PK.php index f603847ddd4..d82210e5629 100644 --- a/core/l10n/ur_PK.php +++ b/core/l10n/ur_PK.php @@ -28,16 +28,6 @@ $TRANSLATIONS = array( "December" => "دسمبر", "Settings" => "ترتیبات", "Saving..." => "محفوظ ھو رہا ہے ...", -"seconds ago" => "سیکنڈز پہلے", -"_%n minute ago_::_%n minutes ago_" => array("%n منٹس پہلے","%n منٹس پہلے"), -"_%n hour ago_::_%n hours ago_" => array("",""), -"today" => "آج", -"yesterday" => "کل", -"_%n day ago_::_%n days ago_" => array("",""), -"last month" => "پچھلے مہنیے", -"_%n month ago_::_%n months ago_" => array("",""), -"last year" => "پچھلے سال", -"years ago" => "سالوں پہلے", "Reset password" => "ری سیٹ پاسورڈ", "No" => "نہیں", "Yes" => "ہاں", diff --git a/core/l10n/uz.php b/core/l10n/uz.php index dbedde7e637..1191769faa7 100644 --- a/core/l10n/uz.php +++ b/core/l10n/uz.php @@ -1,9 +1,5 @@ array(""), -"_%n hour ago_::_%n hours ago_" => array(""), -"_%n day ago_::_%n days ago_" => array(""), -"_%n month ago_::_%n months ago_" => array(""), "_{count} file conflict_::_{count} file conflicts_" => array("") ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/vi.php b/core/l10n/vi.php index 1da0fbf194b..6ca34d2c8ce 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -31,16 +31,6 @@ $TRANSLATIONS = array( "Settings" => "Cài đặt", "Folder" => "Thư mục", "Saving..." => "Đang lưu...", -"seconds ago" => "vài giây trước", -"_%n minute ago_::_%n minutes ago_" => array("%n phút trước"), -"_%n hour ago_::_%n hours ago_" => array("%n giờ trước"), -"today" => "hôm nay", -"yesterday" => "hôm qua", -"_%n day ago_::_%n days ago_" => array("%n ngày trước"), -"last month" => "tháng trước", -"_%n month ago_::_%n months ago_" => array("%n tháng trước"), -"last year" => "năm trước", -"years ago" => "năm trước", "Reset password" => "Khôi phục mật khẩu", "No" => "Không", "Yes" => "Có", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 920144db740..7cb94219ad7 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -36,16 +36,6 @@ $TRANSLATIONS = array( "Image" => "图像", "Audio" => "声音", "Saving..." => "保存中", -"seconds ago" => "秒前", -"_%n minute ago_::_%n minutes ago_" => array("%n 分钟前"), -"_%n hour ago_::_%n hours ago_" => array("%n 小时前"), -"today" => "今天", -"yesterday" => "昨天", -"_%n day ago_::_%n days ago_" => array("%n 天前"), -"last month" => "上月", -"_%n month ago_::_%n months ago_" => array("%n 月前"), -"last year" => "去年", -"years ago" => "年前", "Couldn't send reset email. Please contact your administrator." => "未能成功发送重置邮件,请联系管理员。", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "密码重置邮件已经发送到您的电子邮箱中。如果您长时间没能收到邮件,请检查您的垃圾/广告邮件箱。
    如果未能收到邮件请联系管理员。", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "您的文件已被加密。如果您没有启用恢复密钥,密码重置后您将无法取回您的文件。
    在继续之前,如果有疑问请联系您的管理员。
    确认继续?", diff --git a/core/l10n/zh_HK.php b/core/l10n/zh_HK.php index c94a18433d6..59b7632ee46 100644 --- a/core/l10n/zh_HK.php +++ b/core/l10n/zh_HK.php @@ -25,16 +25,6 @@ $TRANSLATIONS = array( "Image" => "圖片", "Audio" => "聲音", "Saving..." => "儲存中...", -"seconds ago" => "秒前", -"_%n minute ago_::_%n minutes ago_" => array("%n 分鐘前"), -"_%n hour ago_::_%n hours ago_" => array("%n 小時前"), -"today" => "今日", -"yesterday" => "昨日", -"_%n day ago_::_%n days ago_" => array("%n 日前"), -"last month" => "上個月", -"_%n month ago_::_%n months ago_" => array("%n 月前"), -"last year" => "上年", -"years ago" => "年前", "Reset password" => "重設密碼", "No" => "否", "Yes" => "是", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index e099fbb7bd8..8c68c240135 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "圖片", "Audio" => "音訊", "Saving..." => "儲存中...", -"seconds ago" => "幾秒前", -"_%n minute ago_::_%n minutes ago_" => array("%n 分鐘前"), -"_%n hour ago_::_%n hours ago_" => array("%n 小時前"), -"today" => "今天", -"yesterday" => "昨天", -"_%n day ago_::_%n days ago_" => array("%n 天前"), -"last month" => "上個月", -"_%n month ago_::_%n months ago_" => array("%n 個月前"), -"last year" => "去年", -"years ago" => "幾年前", "Couldn't send reset email. Please contact your administrator." => "無法寄送重設 email ,請聯絡系統管理員", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "重設密碼的連結已經 email 至你的信箱,如果你在一段時間內沒收到,請檢查垃圾郵件資料夾,如果還是找不到,請聯絡系統管理員。", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "您的檔案是加密的,如果您沒有啟用救援金鑰,當您重設密碼之後將無法存取您的資料。
    如果不確定該怎麼做,請聯絡您的系統管理員。
    您確定要繼續嗎?", diff --git a/l10n/ach/core.po b/l10n/ach/core.po index 604f36f1932..8924ece81fd 100644 --- a/l10n/ach/core.po +++ b/l10n/ach/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ach/files_external.po b/l10n/ach/files_external.po index 83bde6be5a6..e76b517c321 100644 --- a/l10n/ach/files_external.po +++ b/l10n/ach/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ady/core.po b/l10n/ady/core.po index 6d848094dac..bb4fa0d3822 100644 --- a/l10n/ady/core.po +++ b/l10n/ady/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ady/files_external.po b/l10n/ady/files_external.po index 89d4007150f..8aaa4d34e36 100644 --- a/l10n/ady/files_external.po +++ b/l10n/ady/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 9829ad304b3..ee582e3be79 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -150,78 +150,30 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Instellings" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Stoor..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "sekondes gelede" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n minute gelede" -msgstr[1] "%n minute gelede" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n ure gelde" -msgstr[1] "%n ure gelede" - -#: js/js.js:1281 -msgid "today" -msgstr "vandag" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "gister" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n dae gelede" -msgstr[1] "%n dae gelede" - -#: js/js.js:1284 -msgid "last month" -msgstr "verlede maand" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n maande gelede" -msgstr[1] "%n maande gelede" - -#: js/js.js:1286 -msgid "last year" -msgstr "verlede jaar" - -#: js/js.js:1287 -msgid "years ago" -msgstr "jare gelede" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/af_ZA/files_external.po b/l10n/af_ZA/files_external.po index 9f54a61d4d5..b67b2a07fd5 100644 --- a/l10n/af_ZA/files_external.po +++ b/l10n/af_ZA/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "Persoonlik" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Gebruikers" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 92d8e588b4a..9608d354b08 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ak/core.po b/l10n/ak/core.po index 21aa33789d3..b67e47f4134 100644 --- a/l10n/ak/core.po +++ b/l10n/ak/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ak/files_external.po b/l10n/ak/files_external.po index 7e430ec00d7..0dac88a1890 100644 --- a/l10n/ak/files_external.po +++ b/l10n/ak/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/am_ET/core.po b/l10n/am_ET/core.po index dfaa2d499c9..d0f12cb58a0 100644 --- a/l10n/am_ET/core.po +++ b/l10n/am_ET/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/am_ET/files_external.po b/l10n/am_ET/files_external.po index a09fbe6ebae..bf813ea50c6 100644 --- a/l10n/am_ET/files_external.po +++ b/l10n/am_ET/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 346524310a4..e4652e1d452 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -151,94 +151,30 @@ msgstr "تشرين الثاني" msgid "December" msgstr "كانون الاول" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "إعدادات" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "ملف" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "مجلد" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "جاري الحفظ..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "منذ ثواني" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: js/js.js:1281 -msgid "today" -msgstr "اليوم" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "يوم أمس" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "الشهر الماضي" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "السنةالماضية" - -#: js/js.js:1287 -msgid "years ago" -msgstr "سنة مضت" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 92febba175b..6ec2c00151e 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index b4125c05159..6adbf2b66b7 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -232,7 +232,15 @@ msgstr "شخصي" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "حفظ" @@ -301,39 +309,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "كل المستخدمين" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "مجموعات" - -#: templates/settings.php:106 -msgid "Users" -msgstr "المستخدمين" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "إلغاء" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index 83a3ec19534..a9cfbbfa210 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 5f1ba373b73..115d558903d 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 6a8dedbd301..59e64f782a6 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+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" @@ -328,7 +328,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "تراجع" @@ -352,27 +352,27 @@ msgstr "إلغاء" msgid "never" msgstr "بتاتا" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "اضافة مجموعة" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "يجب ادخال اسم مستخدم صحيح" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "حصل خطأ اثناء انشاء مستخدم" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "يجب ادخال كلمة مرور صحيحة" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "تحذير: المجلد الرئيسي لـ المستخدم \"{user}\" موجود مسبقا" diff --git a/l10n/ast/core.po b/l10n/ast/core.po index 7c25ec82ce2..e9ec89404bb 100644 --- a/l10n/ast/core.po +++ b/l10n/ast/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -152,78 +152,30 @@ msgstr "Payares" msgid "December" msgstr "Avientu" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Axustes" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Ficheru" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Carpeta" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Imaxe" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Audiu" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Guardando..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "hai segundos" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "hai %n minutu" -msgstr[1] "hai %n minutos" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "hai %n hora" -msgstr[1] "hai %n hores" - -#: js/js.js:1281 -msgid "today" -msgstr "güei" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ayeri" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "hai %n día" -msgstr[1] "hai %n díes" - -#: js/js.js:1284 -msgid "last month" -msgstr "mes caberu" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "fai %n mes" -msgstr[1] "hai %n meses" - -#: js/js.js:1286 -msgid "last year" -msgstr "añu caberu" - -#: js/js.js:1287 -msgid "years ago" -msgstr "hai años" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Nun pudo unviase'l corréu de reaniciu. Por favor, contauta col alministrador." diff --git a/l10n/ast/files.po b/l10n/ast/files.po index 28fc149e0e6..7a4a3b0842f 100644 --- a/l10n/ast/files.po +++ b/l10n/ast/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ast/files_external.po b/l10n/ast/files_external.po index 01e4b876f18..a632b492cc8 100644 --- a/l10n/ast/files_external.po +++ b/l10n/ast/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" -"Last-Translator: Iñigo Varela \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -233,7 +233,15 @@ msgstr "Personal" msgid "System" msgstr "Sistema" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Guardáu" @@ -302,39 +310,23 @@ msgstr "Disponible pa" msgid "Add storage" msgstr "Amestar almacenamientu" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Nengún usuariu o grupu" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Tolos usuarios" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupos" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Usuarios" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Desaniciar" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Habilitar almacenamientu esterno d'usuariu" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Permitir a los usuarios montar el siguiente almacenamientu esternu" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Certificaos raíz SSL" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importar certificáu raíz" diff --git a/l10n/ast/files_trashbin.po b/l10n/ast/files_trashbin.po index 45453c83918..f295707e980 100644 --- a/l10n/ast/files_trashbin.po +++ b/l10n/ast/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ast/lib.po b/l10n/ast/lib.po index f713eda2cdb..64776961a14 100644 --- a/l10n/ast/lib.po +++ b/l10n/ast/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ast/settings.po b/l10n/ast/settings.po index 092d3065bf5..7fe35191202 100644 --- a/l10n/ast/settings.po +++ b/l10n/ast/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -327,7 +327,7 @@ msgstr "Hai d'escribir un nome de grupu válidu" msgid "deleted {groupName}" msgstr "desaniciáu {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "desfacer" @@ -351,27 +351,27 @@ msgstr "Desaniciar" msgid "never" msgstr "enxamás" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "desaniciáu {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "amestar Grupu" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Tien d'apurrise un nome d'usuariu válidu" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Fallu al crear usuariu" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Tien d'apurrise una contraseña válida" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Avisu: el direutoriu d'aniciu pal usuariu \"{user}\" yá esiste." diff --git a/l10n/az/core.po b/l10n/az/core.po index 8ab912754f7..8fc78d97759 100644 --- a/l10n/az/core.po +++ b/l10n/az/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" -"Last-Translator: unixidzero \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -149,78 +149,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Quraşdırmalar" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Qovluq" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Saxlama..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/az/files.po b/l10n/az/files.po index 67aeaecb6cc..e0219662c21 100644 --- a/l10n/az/files.po +++ b/l10n/az/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: unixidzero \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/az/files_external.po b/l10n/az/files_external.po index e599dba6856..d6a3f318617 100644 --- a/l10n/az/files_external.po +++ b/l10n/az/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" -"Last-Translator: unixidzero \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -232,7 +232,15 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Saxlanıldı" @@ -301,39 +309,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "İstifadəçilər" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Sil" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/az/files_trashbin.po b/l10n/az/files_trashbin.po index 7496e84408f..8606e684491 100644 --- a/l10n/az/files_trashbin.po +++ b/l10n/az/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: unixidzero \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/az/lib.po b/l10n/az/lib.po index 7b377af59f9..d16bddb0375 100644 --- a/l10n/az/lib.po +++ b/l10n/az/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: unixidzero \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/az/settings.po b/l10n/az/settings.po index 1b81e5c83b8..e4f10a8b386 100644 --- a/l10n/az/settings.po +++ b/l10n/az/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: unixidzero \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -350,27 +350,27 @@ msgstr "Sil" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/be/core.po b/l10n/be/core.po index a14c72d4a4c..a18ba494009 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -149,86 +149,30 @@ msgstr "Лістапад" msgid "December" msgstr "Снежань" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Налады" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "Секунд таму" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: js/js.js:1281 -msgid "today" -msgstr "Сёння" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "Ўчора" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "У мінулым месяцы" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "У мінулым годзе" - -#: js/js.js:1287 -msgid "years ago" -msgstr "Гадоў таму" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/be/files_external.po b/l10n/be/files_external.po index cc41ee3256d..f2de9d61a2f 100644 --- a/l10n/be/files_external.po +++ b/l10n/be/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index 9c342b23817..e63314d17cb 100644 --- a/l10n/be/lib.po +++ b/l10n/be/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 441cc6ff68e..abfa419941f 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" -"Last-Translator: Ivo\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -150,78 +150,30 @@ msgstr "Ноември" msgid "December" msgstr "Декември" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Настройки" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Файл" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Папка" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Изображение" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Аудио" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Записване..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "преди секунди" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "преди %n минута" -msgstr[1] "преди %n минути" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "преди %n час" -msgstr[1] "преди %n часа" - -#: js/js.js:1281 -msgid "today" -msgstr "днес" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "вчера" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "преди %n ден" -msgstr[1] "преди %n дена" - -#: js/js.js:1284 -msgid "last month" -msgstr "последният месец" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "преди %n месец" -msgstr[1] "преди %n месеца" - -#: js/js.js:1286 -msgid "last year" -msgstr "последната година" - -#: js/js.js:1287 -msgid "years ago" -msgstr "последните години" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Неуспешено изпращане на имейл. Моля, свържи се с администратора." diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 7bf9db48b6c..77afac972b9 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 0ee49441732..b938a83b1c3 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" -"Last-Translator: Ivo\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -232,7 +232,15 @@ msgstr "Личен" msgid "System" msgstr "Системен" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Запазено" @@ -301,39 +309,23 @@ msgstr "Достъпно за" msgid "Add storage" msgstr "Добави дисково пространство" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Липсва потребител или група" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Всички Потребители" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Групи" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Потребители" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Изтрий" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Разреши Потребителско Външно Дисково Пространство" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Разреши на потребителите да прикачват следното външно дисково пространство" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL root сертификати" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Внасяне на Root Сертификат" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index 7f3170a8b3e..61c4dc3326c 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-19 01:54-0400\n" -"PO-Revision-Date: 2014-08-18 20:50+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 13:51+0000\n" "Last-Translator: Ivo\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -30,15 +30,15 @@ msgstr "Невалиден или ненадежден SSL сертификат" msgid "Couldn't add remote share" msgstr "Неуспешно добавяне на отдалечена споделена директория." -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Споделено с теб" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Споделено с други" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Споделено с връзка" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 7e9df0c467d..14b30b9fb13 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: Ivo\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 73cd90ee374..a3cd1883012 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 295c30fcdbc..f9dab2f081a 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: Ivo\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -326,7 +326,7 @@ msgstr "Очаква се валидно име на група" msgid "deleted {groupName}" msgstr "{groupName} изтрит" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "възтановяване" @@ -350,27 +350,27 @@ msgstr "Изтрий" msgid "never" msgstr "никога" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "{userName} изтрит" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "нова група" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Валидно потребителско име трябва да бъде зададено." -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Грешка при създаване на потребител." -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Валидна парола трябва да бъде зададена." -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Предупреждение: Личната директория на потребителя \"{user}\" вече съществува." diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 4065d248a52..6c97eeb64a8 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" -"Last-Translator: azizul \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -149,78 +149,30 @@ msgstr "নভেম্বর" msgid "December" msgstr "ডিসেম্বর" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "ফাইল" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "ফোল্ডার" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "চিত্র" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "অডিও" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "সংরক্ষণ করা হচ্ছে.." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "সেকেন্ড পূর্বে" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "আজ" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "গতকাল" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "গত মাস" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "গত বছর" - -#: js/js.js:1287 -msgid "years ago" -msgstr "বছর পূর্বে" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" @@ -581,7 +533,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:18 msgid "Reset" -msgstr "" +msgstr "পূণঃনির্ধানণ" #: lostpassword/templates/resetpassword.php:5 msgid "New password" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index aaaa76c3c00..342c199d2a7 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: azizul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 76e285b5479..9008a92a7bf 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" -"Last-Translator: azizul \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -232,10 +232,18 @@ msgstr "ব্যক্তিগত" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 -msgid "Saved" +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" msgstr "" +#: js/settings.js:445 js/settings.js:452 +msgid "Saved" +msgstr "সংরক্ষণ করা হলো" + #: lib/config.php:716 msgid "Note: " msgstr "" @@ -301,39 +309,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "সমস্ত ব্যবহারকারী" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "গোষ্ঠীসমূহ" - -#: templates/settings.php:106 -msgid "Users" -msgstr "ব্যবহারকারী" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "মুছে" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "ব্যবহারকারীর বাহ্যিক সংরক্ষণাগার সক্রিয় কর" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL রুট সনদপত্র" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "রুট সনদপত্রটি আমদানি করুন" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index fbd8c833baf..e072022ba9b 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: azizul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 459f09f0028..2bf92429af0 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 1bfb31ba718..e1afcae2286 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -24,7 +24,7 @@ msgstr "" #: admin/controller.php:73 msgid "Saved" -msgstr "" +msgstr "সংরক্ষণ করা হলো" #: admin/controller.php:90 msgid "test email settings" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "ক্রিয়া প্রত্যাহার" @@ -349,27 +349,27 @@ msgstr "মুছে" msgid "never" msgstr "কখনোই নয়" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index a18358286ee..cfbd3497795 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# azizul , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-27 18:51+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-28 18:01+0000\n" +"Last-Translator: azizul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -84,7 +85,7 @@ msgstr "" #: js/settings.js:128 msgid "Success" -msgstr "" +msgstr "সাফল্য" #: js/settings.js:133 msgid "Error" @@ -166,7 +167,7 @@ msgstr "" #: settings.php:52 msgid "Server" -msgstr "" +msgstr "সার্ভার" #: settings.php:53 msgid "User Filter" @@ -326,7 +327,7 @@ msgstr "" #: templates/part.wizardcontrols.php:5 msgid "Back" -msgstr "" +msgstr "পেছনে যাও" #: templates/part.wizardcontrols.php:8 msgid "Continue" @@ -334,7 +335,7 @@ msgstr "চালিয়ে যাও" #: templates/settings.php:7 msgid "Expert" -msgstr "" +msgstr "দক্ষ" #: templates/settings.php:8 msgid "Advanced" diff --git a/l10n/bn_IN/core.po b/l10n/bn_IN/core.po index 1a85e8a84ed..4ebc725d3a5 100644 --- a/l10n/bn_IN/core.po +++ b/l10n/bn_IN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "সেটিংস" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "ফোল্ডার" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "সংরক্ষণ করা হচ্ছে ..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/bn_IN/files.po b/l10n/bn_IN/files.po index 1ee37f3a0e5..6a9f93f1a3d 100644 --- a/l10n/bn_IN/files.po +++ b/l10n/bn_IN/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_IN/files_external.po b/l10n/bn_IN/files_external.po index 24a254377c3..9d734ef3d75 100644 --- a/l10n/bn_IN/files_external.po +++ b/l10n/bn_IN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "সংরক্ষিত" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "মুছে ফেলা" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/bn_IN/files_trashbin.po b/l10n/bn_IN/files_trashbin.po index 943f87f2bfa..68ef3e03eca 100644 --- a/l10n/bn_IN/files_trashbin.po +++ b/l10n/bn_IN/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: ishita mukherjee \n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_IN/lib.po b/l10n/bn_IN/lib.po index 67bec7a7fb7..be5ca50ded2 100644 --- a/l10n/bn_IN/lib.po +++ b/l10n/bn_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_IN/settings.po b/l10n/bn_IN/settings.po index 7601cf1cc36..e5414cdee02 100644 --- a/l10n/bn_IN/settings.po +++ b/l10n/bn_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "মুছে ফেলা" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index de41e69c2b9..6dcbd051a26 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -148,82 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Fasikla" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Spašavam..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/bs/files_external.po b/l10n/bs/files_external.po index 77e440d8572..39269a93b08 100644 --- a/l10n/bs/files_external.po +++ b/l10n/bs/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-14 01:54-0400\n" -"PO-Revision-Date: 2014-08-13 16:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 2246806d7fe..e9a96a6dd37 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -151,78 +151,30 @@ msgstr "Novembre" msgid "December" msgstr "Desembre" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Configuració" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Fitxer" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Carpeta" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Imatge" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Desant..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "segons enrere" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "fa %n minut" -msgstr[1] "fa %n minuts" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "fa %n hora" -msgstr[1] "fa %n hores" - -#: js/js.js:1281 -msgid "today" -msgstr "avui" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ahir" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "fa %n dies" -msgstr[1] "fa %n dies" - -#: js/js.js:1284 -msgid "last month" -msgstr "el mes passat" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "fa %n mes" -msgstr[1] "fa %n mesos" - -#: js/js.js:1286 -msgid "last year" -msgstr "l'any passat" - -#: js/js.js:1287 -msgid "years ago" -msgstr "anys enrere" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "No s'ha pogut restablir el correu. Contacteu amb l'administrador." diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 926f67b7ee5..fc8c680500f 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index f3474ccbaac..b1a626accf5 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -234,7 +234,15 @@ msgstr "Personal" msgid "System" msgstr "Sistema" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Desat" @@ -303,39 +311,23 @@ msgstr "Disponible per" msgid "Add storage" msgstr "Afegeix emmagatzemament" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Sense usuaris o grups" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Tots els usuaris" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grups" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Usuaris" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Esborra" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Habilita l'emmagatzemament extern d'usuari" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Permet als usuaris muntar els dispositius externs següents" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Certificats SSL root" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importa certificat root" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index e7ab832db88..a389300a4af 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 1cff9f5b0c5..6294ae40d0f 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 0f2653b7a99..973b64c1aff 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+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" @@ -329,7 +329,7 @@ msgstr "Heu de facilitar un nom de grup vàlid" msgid "deleted {groupName}" msgstr "eliminat {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "desfés" @@ -353,27 +353,27 @@ msgstr "Esborra" msgid "never" msgstr "mai" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "eliminat {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "afegeix grup" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Heu de facilitar un nom d'usuari vàlid" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Error en crear l'usuari" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Heu de facilitar una contrasenya vàlida" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Avís: la carpeta Home per l'usuari \"{user}\" ja existeix" diff --git a/l10n/ca@valencia/core.po b/l10n/ca@valencia/core.po index 1d3b3c611d9..71e126a0ff7 100644 --- a/l10n/ca@valencia/core.po +++ b/l10n/ca@valencia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (Valencian) (http://www.transifex.com/projects/p/owncloud/language/ca@valencia/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ca@valencia/files_external.po b/l10n/ca@valencia/files_external.po index b3a512951f8..c4ee422dd0b 100644 --- a/l10n/ca@valencia/files_external.po +++ b/l10n/ca@valencia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (Valencian) (http://www.transifex.com/projects/p/owncloud/language/ca@valencia/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index b8f5e48bc27..9830a53df50 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -158,82 +158,30 @@ msgstr "Listopad" msgid "December" msgstr "Prosinec" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Nastavení" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Soubor" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Složka" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Obrázek" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Ukládám..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "před pár vteřinami" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "před %n minutou" -msgstr[1] "před %n minutami" -msgstr[2] "před %n minutami" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "před %n hodinou" -msgstr[1] "před %n hodinami" -msgstr[2] "před %n hodinami" - -#: js/js.js:1281 -msgid "today" -msgstr "dnes" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "včera" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "před %n dnem" -msgstr[1] "před %n dny" -msgstr[2] "před %n dny" - -#: js/js.js:1284 -msgid "last month" -msgstr "minulý měsíc" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "před %n měsícem" -msgstr[1] "před %n měsíci" -msgstr[2] "před %n měsíci" - -#: js/js.js:1286 -msgid "last year" -msgstr "minulý rok" - -#: js/js.js:1287 -msgid "years ago" -msgstr "před lety" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Nepodařilo se odeslat email pro změnu hesla. Kontaktujte vašeho administrátora." @@ -872,12 +820,12 @@ msgstr "Kontaktujte prosím správce. Pokud jste správce této instalace, nasta msgid "" "Depending on your configuration, as an administrator you might also be able " "to use the button below to trust this domain." -msgstr "" +msgstr "V závislosti na vaší konfiguraci vám může být, jako administrátorovi, umožněno použití tlačítka níže a označit tuto doménu jako důvěryhodnou." #: templates/untrustedDomain.php:14 #, php-format msgid "Add \"%s\" as trusted domain" -msgstr "" +msgstr "Přidat \"%s\" jako důvěryhodnou doménu." #: templates/update.admin.php:3 #, php-format diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 82089485e6e..d47d7bc7d4c 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: Petr Šťastný \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index 5ddaf6317d6..30c20e4bc08 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" -"Last-Translator: Petr Šťastný \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -234,7 +234,15 @@ msgstr "Osobní" msgid "System" msgstr "Systém" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Uloženo" @@ -303,39 +311,23 @@ msgstr "Dostupné pro" msgid "Add storage" msgstr "Přidat úložiště" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Žádný uživatel nebo skupina" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Všichni uživatelé" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Skupiny" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Uživatelé" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Smazat" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Zapnout externí uživatelské úložiště" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Povolit uživatelů připojit následující externí úložiště" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Kořenové certifikáty SSL" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importovat kořenového certifikátu" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 50e2a9fd3d0..50cfafbf9a8 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index bf0d13d0d79..41504bf9ebf 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index ef1d470d78c..dd30b19f1e9 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"Last-Translator: Jaroslav Lichtblau \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" @@ -204,11 +204,11 @@ msgstr "Změna hesla se nezdařila" #: js/admin.js:45 msgid "Are you really sure you want add \"{domain}\" as trusted domain?" -msgstr "" +msgstr "Jste si jisti, že chcete přidat \"{domain}\" mezi důvěryhodné domény?" #: js/admin.js:46 msgid "Add trusted domain" -msgstr "" +msgstr "Přidat důvěryhodnou doménu" #: js/admin.js:146 msgid "Sending..." @@ -334,7 +334,7 @@ msgstr "Musíte zadat platný název skupiny" msgid "deleted {groupName}" msgstr "smazána {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "vrátit zpět" @@ -358,27 +358,27 @@ msgstr "Smazat" msgid "never" msgstr "nikdy" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "smazán {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "přidat skupinu" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Musíte zadat platné uživatelské jméno" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Chyba při vytváření užiatele" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Musíte zadat platné heslo" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Varování: Osobní složka uživatele \"{user}\" již existuje." diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index b951cfc2be1..abf43d3f013 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -149,86 +149,30 @@ msgstr "Tachwedd" msgid "December" msgstr "Rhagfyr" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Gosodiadau" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Plygell" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Yn cadw..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "eiliad yn ôl" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: js/js.js:1281 -msgid "today" -msgstr "heddiw" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ddoe" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "mis diwethaf" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "y llynedd" - -#: js/js.js:1287 -msgid "years ago" -msgstr "blwyddyn yn ôl" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index ff92d0b9d1b..2c0ef1c3e68 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index 2127096d623..3ce26e698e3 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "Personol" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grwpiau" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Defnyddwyr" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Dileu" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 46ecc9e3e0a..f7f3efeb6e9 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 592d2bb080f..be21385e40d 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 6dc2400df81..ce5e20ef10b 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "dadwneud" @@ -349,27 +349,27 @@ msgstr "Dileu" msgid "never" msgstr "byth" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/da/core.po b/l10n/da/core.po index 2c7aee8f36c..c109155e5ac 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" -"Last-Translator: Aputsiaĸ Niels Janussen \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -160,78 +160,30 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Indstillinger" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Fil" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Mappe" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Billede" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Lyd" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Gemmer..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "sekunder siden" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n minut siden" -msgstr[1] "%n minutter siden" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n time siden" -msgstr[1] "%n timer siden" - -#: js/js.js:1281 -msgid "today" -msgstr "i dag" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "i går" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n dag siden" -msgstr[1] "%n dage siden" - -#: js/js.js:1284 -msgid "last month" -msgstr "sidste måned" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n måned siden" -msgstr[1] "%n måneder siden" - -#: js/js.js:1286 -msgid "last year" -msgstr "sidste år" - -#: js/js.js:1287 -msgid "years ago" -msgstr "år siden" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Der opstod et problem under afsending af reset-emailen. Kontakt venligst systemadministratoren." diff --git a/l10n/da/files.po b/l10n/da/files.po index 52d29318694..02ce61bff72 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: Aputsiaĸ Niels Janussen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index 31a2ece4871..77ce2c7ce8f 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -234,7 +234,15 @@ msgstr "Personligt" msgid "System" msgstr "System" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Gemt" @@ -303,39 +311,23 @@ msgstr "Tilgængelig for" msgid "Add storage" msgstr "Tilføj lager" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Ingen bruger eller gruppe" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Alle brugere" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupper" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Brugere" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Slet" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Aktiver ekstern opbevaring for brugere" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Tillad brugere at montere følgende som eksternt lager" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL-rodcertifikater" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importer rodcertifikat" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 8de535b81f2..ec8f63056f0 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 15113fedeff..061936b6ce7 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: Aputsiaĸ Niels Janussen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 261f98dfe31..7681b34c40e 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: Aputsiaĸ Niels Janussen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -331,7 +331,7 @@ msgstr "Et gyldigt gruppenavn skal angives " msgid "deleted {groupName}" msgstr "slettede {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "fortryd" @@ -355,27 +355,27 @@ msgstr "Slet" msgid "never" msgstr "aldrig" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "slettede {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "Tilføj gruppe" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Et gyldigt brugernavn skal angives" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Fejl ved oprettelse af bruger" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "En gyldig adgangskode skal angives" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Advarsel: Hjemmemappen for bruger \"{user}\" findes allerede" diff --git a/l10n/de/core.po b/l10n/de/core.po index 6c8d1da1741..319463ffc2d 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -159,78 +159,30 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Datei" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Ordner" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Bild" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Speichern..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "Gerade eben" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "Vor %n Minute" -msgstr[1] "Vor %n Minuten" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "Vor %n Stunde" -msgstr[1] "Vor %n Stunden" - -#: js/js.js:1281 -msgid "today" -msgstr "Heute" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "Gestern" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "Vor %n Tag" -msgstr[1] "Vor %n Tagen" - -#: js/js.js:1284 -msgid "last month" -msgstr "Letzten Monat" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "Vor %n Monat" -msgstr[1] "Vor %n Monaten" - -#: js/js.js:1286 -msgid "last year" -msgstr "Letztes Jahr" - -#: js/js.js:1287 -msgid "years ago" -msgstr "Vor Jahren" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Die E-Mail zum Zurücksetzen konnte nicht versendet werden. Bitte kontaktiere Deinen Administrator." diff --git a/l10n/de/files.po b/l10n/de/files.po index 2ce75acfdcd..970a4d26253 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+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" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index 04bf295e3c1..3ade851ca53 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -235,7 +235,15 @@ msgstr "Persönlich" msgid "System" msgstr "System" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Gespeichert" @@ -304,39 +312,23 @@ msgstr "Verfügbar für" msgid "Add storage" msgstr "Speicher hinzufügen" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Kein Nutzer oder Gruppe" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Alle Benutzer" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Gruppen" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Benutzer" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Löschen" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Externen Speicher für Benutzer aktivieren" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Erlaube es Benutzern, den folgenden externen Speicher einzubinden" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL-Root-Zertifikate" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Root-Zertifikate importieren" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 8fc166477a9..a7feee64857 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 8cdd817befb..a4e26960a25 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+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" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 6c6bab14529..c2363cc4a99 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -335,7 +335,7 @@ msgstr "Ein gültiger Gruppenname muss angegeben werden" msgid "deleted {groupName}" msgstr "{groupName} gelöscht" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "rückgängig machen" @@ -359,27 +359,27 @@ msgstr "Löschen" msgid "never" msgstr "niemals" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "{userName} gelöscht" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "Gruppe hinzufügen" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Beim Anlegen des Benutzers ist ein Fehler aufgetreten" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Warnung: Das Benutzerverzeichnis für den Benutzer \"{user}\" existiert bereits" diff --git a/l10n/de_AT/core.po b/l10n/de_AT/core.po index a70f45952bb..444b819ee69 100644 --- a/l10n/de_AT/core.po +++ b/l10n/de_AT/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -149,78 +149,30 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/de_AT/files.po b/l10n/de_AT/files.po index ad4b0c8e35b..0e8510a2e5b 100644 --- a/l10n/de_AT/files.po +++ b/l10n/de_AT/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_AT/files_external.po b/l10n/de_AT/files_external.po index ba724cd1f5d..20ddb551c34 100644 --- a/l10n/de_AT/files_external.po +++ b/l10n/de_AT/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "Persönlich" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Löschen" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/de_AT/files_trashbin.po b/l10n/de_AT/files_trashbin.po index 3514ed4a992..c7bf88b8b9f 100644 --- a/l10n/de_AT/files_trashbin.po +++ b/l10n/de_AT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_AT/lib.po b/l10n/de_AT/lib.po index 785be59c5f8..2ef50738508 100644 --- a/l10n/de_AT/lib.po +++ b/l10n/de_AT/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_AT/settings.po b/l10n/de_AT/settings.po index 43cb47f7300..c5c02597dd7 100644 --- a/l10n/de_AT/settings.po +++ b/l10n/de_AT/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -350,27 +350,27 @@ msgstr "Löschen" msgid "never" msgstr "niemals" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index cd9fda5c330..0346910ae91 100644 --- a/l10n/de_CH/core.po +++ b/l10n/de_CH/core.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -158,78 +158,30 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Datei" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Ordner" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Speichern..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "Gerade eben" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "Vor %n Minute" -msgstr[1] "Vor %n Minuten" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "Vor %n Stunde" -msgstr[1] "Vor %n Stunden" - -#: js/js.js:1281 -msgid "today" -msgstr "Heute" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "Gestern" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "Vor %n Tag" -msgstr[1] "Vor %n Tagen" - -#: js/js.js:1284 -msgid "last month" -msgstr "Letzten Monat" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "Vor %n Monat" -msgstr[1] "Vor %n Monaten" - -#: js/js.js:1286 -msgid "last year" -msgstr "Letztes Jahr" - -#: js/js.js:1287 -msgid "years ago" -msgstr "Vor Jahren" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po index a72e265a80f..0671f8cf51b 100644 --- a/l10n/de_CH/files.po +++ b/l10n/de_CH/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_CH/files_external.po b/l10n/de_CH/files_external.po index 29a3462aecb..926879c51a7 100644 --- a/l10n/de_CH/files_external.po +++ b/l10n/de_CH/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -232,7 +232,15 @@ msgstr "Persönlich" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Gespeichert" @@ -301,39 +309,23 @@ msgstr "" msgid "Add storage" msgstr "Speicher hinzufügen" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Alle Benutzer" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Gruppen" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Benutzer" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Löschen" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Externen Speicher für Benutzer aktivieren" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL-Root-Zertifikate" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Root-Zertifikate importieren" diff --git a/l10n/de_CH/files_trashbin.po b/l10n/de_CH/files_trashbin.po index a87d0964bfc..8f98f92d175 100644 --- a/l10n/de_CH/files_trashbin.po +++ b/l10n/de_CH/files_trashbin.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_CH/lib.po b/l10n/de_CH/lib.po index ecfa663eff4..33f0503c845 100644 --- a/l10n/de_CH/lib.po +++ b/l10n/de_CH/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_CH/settings.po b/l10n/de_CH/settings.po index 5d6f2857813..192f5ea7cad 100644 --- a/l10n/de_CH/settings.po +++ b/l10n/de_CH/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -334,7 +334,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "rückgängig machen" @@ -358,27 +358,27 @@ msgstr "Löschen" msgid "never" msgstr "niemals" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "Gruppe hinzufügen" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Beim Erstellen des Benutzers ist ein Fehler aufgetreten" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 03a926ea658..e7be1cc2ea3 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -159,78 +159,30 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Datei" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Ordner" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Bild" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Speichern..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "Gerade eben" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "Vor %n Minute" -msgstr[1] "Vor %n Minuten" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "Vor %n Stunde" -msgstr[1] "Vor %n Stunden" - -#: js/js.js:1281 -msgid "today" -msgstr "Heute" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "Gestern" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "Vor %n Tag" -msgstr[1] "Vor %n Tagen" - -#: js/js.js:1284 -msgid "last month" -msgstr "Letzten Monat" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "Vor %n Monat" -msgstr[1] "Vor %n Monaten" - -#: js/js.js:1286 -msgid "last year" -msgstr "Letztes Jahr" - -#: js/js.js:1287 -msgid "years ago" -msgstr "Vor Jahren" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Die E-Mail zum Zurücksetzen konnte nicht versendet werden. Bitte kontaktieren Sie Ihren Administrator." diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 3f26b3800bd..24a0dfce7d2 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 9a10d4eea67..d5770fce2e6 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -236,7 +236,15 @@ msgstr "Persönlich" msgid "System" msgstr "System" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Gespeichert" @@ -305,39 +313,23 @@ msgstr "Verfügbar für" msgid "Add storage" msgstr "Speicher hinzufügen" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Kein Nutzer oder Gruppe" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Alle Benutzer" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Gruppen" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Benutzer" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Löschen" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Externen Speicher für Benutzer aktivieren" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Erlauben Sie Benutzern, folgende externe Speicher einzubinden" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL-Root-Zertifikate" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Root-Zertifikate importieren" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index c42477f5471..953cd2bccc8 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 26437a9ffe9..cc593201872 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 2105b8fa96e..b15a0c9b652 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -337,7 +337,7 @@ msgstr "Ein gültiger Gruppenname muss angegeben werden" msgid "deleted {groupName}" msgstr "{groupName} gelöscht" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "rückgängig machen" @@ -361,27 +361,27 @@ msgstr "Löschen" msgid "never" msgstr "niemals" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "{userName} gelöscht" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "Gruppe hinzufügen" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Beim Erstellen des Benutzers ist ein Fehler aufgetreten" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Warnung: Das Benutzerverzeichnis für den Benutzer \"{user}\" existiert bereits" diff --git a/l10n/el/core.po b/l10n/el/core.po index 05fee4a172b..a074320cb05 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" -"Last-Translator: evigiannakou \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -160,78 +160,30 @@ msgstr "Νοέμβριος" msgid "December" msgstr "Δεκέμβριος" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Αρχείο" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Φάκελος" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Εικόνα" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Ήχος" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Γίνεται αποθήκευση..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "δευτερόλεπτα πριν" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n λεπτό πριν" -msgstr[1] "%n λεπτά πριν" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n ώρα πριν" -msgstr[1] "%n ώρες πριν" - -#: js/js.js:1281 -msgid "today" -msgstr "σήμερα" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "χτες" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n ημέρα πριν" -msgstr[1] "%n ημέρες πριν" - -#: js/js.js:1284 -msgid "last month" -msgstr "τελευταίο μήνα" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n μήνας πριν" -msgstr[1] "%n μήνες πριν" - -#: js/js.js:1286 -msgid "last year" -msgstr "τελευταίο χρόνο" - -#: js/js.js:1287 -msgid "years ago" -msgstr "χρόνια πριν" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Αδυναμία αποστολής ηλ. μηνύματος επαναφοράς. Παρακαλώ επικοινωνήστε με το διαχειριστή σας." diff --git a/l10n/el/files.po b/l10n/el/files.po index d99b61d43d6..acc523c7558 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: evigiannakou \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index 23e113e4152..f5dc997d3b9 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -236,7 +236,15 @@ msgstr "Προσωπικά" msgid "System" msgstr "Σύστημα" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Αποθηκεύτηκαν" @@ -305,39 +313,23 @@ msgstr "Διαθέσιμο για" msgid "Add storage" msgstr "Προσθηκη αποθηκευσης" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Μη διαθέσιμος χρήστης ή ομάδα" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Όλοι οι Χρήστες" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Ομάδες" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Χρήστες" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Διαγραφή" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Ενεργοποίηση Εξωτερικού Αποθηκευτικού Χώρου Χρήστη" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Χορήγηση άδειας στους χρήστες να συνδέσουν τα παρακάτω εξωτερικά μέσα αποθήκευσης" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Πιστοποιητικά SSL root" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Εισαγωγή Πιστοποιητικού Root" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index e194855f47c..abfc957abc0 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: Vassilis Kehayas \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 765af3eb879..13c04b4c681 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: evigiannakou \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 666e3e37960..443f279b200 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: evigiannakou \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -336,7 +336,7 @@ msgstr "Πρέπει να δοθεί ένα έγκυρο όνομα ομάδας msgid "deleted {groupName}" msgstr "διαγραφή {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "αναίρεση" @@ -360,27 +360,27 @@ msgstr "Διαγραφή" msgid "never" msgstr "ποτέ" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "διαγραφή {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "προσθήκη ομάδας" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Πρέπει να δοθεί έγκυρο όνομα χρήστη" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Σφάλμα δημιουργίας χρήστη" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Πρέπει να δοθεί έγκυρο συνθηματικό" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Προειδοποίηση: Ο μητρικός κατάλογος του χρήστη \"{user}\" υπάρχει ήδη" diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index 796bce7c936..22041ec7d61 100644 --- a/l10n/en@pirate/core.po +++ b/l10n/en@pirate/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -149,78 +149,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/en@pirate/files_external.po b/l10n/en@pirate/files_external.po index 7d45b2fdbde..437c2019741 100644 --- a/l10n/en@pirate/files_external.po +++ b/l10n/en@pirate/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po index e12e22a3e4c..eb185fc0f2c 100644 --- a/l10n/en_GB/core.po +++ b/l10n/en_GB/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" -"Last-Translator: Darren Richardson \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -149,78 +149,30 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Settings" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "File" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Folder" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Image" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Saving..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "seconds ago" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n minute ago" -msgstr[1] "%n minutes ago" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n hour ago" -msgstr[1] "%n hours ago" - -#: js/js.js:1281 -msgid "today" -msgstr "today" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "yesterday" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n day ago" -msgstr[1] "%n days ago" - -#: js/js.js:1284 -msgid "last month" -msgstr "last month" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n month ago" -msgstr[1] "%n months ago" - -#: js/js.js:1286 -msgid "last year" -msgstr "last year" - -#: js/js.js:1287 -msgid "years ago" -msgstr "years ago" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Couldn't send reset email. Please contact your administrator." diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index 0bdd86adf9d..c8a13ff58ff 100644 --- a/l10n/en_GB/files.po +++ b/l10n/en_GB/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en_GB/files_external.po b/l10n/en_GB/files_external.po index df3019b87ea..51fbad9859d 100644 --- a/l10n/en_GB/files_external.po +++ b/l10n/en_GB/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -232,7 +232,15 @@ msgstr "Personal" msgid "System" msgstr "System" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Saved" @@ -301,39 +309,23 @@ msgstr "Available for" msgid "Add storage" msgstr "Add storage" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "No user or group" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "All Users" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Groups" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Users" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Delete" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Enable User External Storage" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Allow users to mount the following external storage" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL root certificates" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Import Root Certificate" diff --git a/l10n/en_GB/files_trashbin.po b/l10n/en_GB/files_trashbin.po index 64d275d9e5e..13160286965 100644 --- a/l10n/en_GB/files_trashbin.po +++ b/l10n/en_GB/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en_GB/lib.po b/l10n/en_GB/lib.po index ae4a6e5d2a1..94777a7ffe7 100644 --- a/l10n/en_GB/lib.po +++ b/l10n/en_GB/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index 4da459f2715..71956761d62 100644 --- a/l10n/en_GB/settings.po +++ b/l10n/en_GB/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: Darren Richardson \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -326,7 +326,7 @@ msgstr "A valid group name must be provided" msgid "deleted {groupName}" msgstr "deleted {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "undo" @@ -350,27 +350,27 @@ msgstr "Delete" msgid "never" msgstr "never" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "deleted {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "add group" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "A valid username must be provided" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Error creating user" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "A valid password must be provided" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Warning: Home directory for user \"{user}\" already exists" diff --git a/l10n/en_NZ/core.po b/l10n/en_NZ/core.po index f4643ddfa96..7782b9b75f8 100644 --- a/l10n/en_NZ/core.po +++ b/l10n/en_NZ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (New Zealand) (http://www.transifex.com/projects/p/owncloud/language/en_NZ/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/en_NZ/files_external.po b/l10n/en_NZ/files_external.po index 11f28d242a8..5ecde6e6c04 100644 --- a/l10n/en_NZ/files_external.po +++ b/l10n/en_NZ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (New Zealand) (http://www.transifex.com/projects/p/owncloud/language/en_NZ/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 8a7e167a1db..a062f111ee5 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -150,78 +150,30 @@ msgstr "Novembro" msgid "December" msgstr "Decembro" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Agordo" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Dosiero" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Dosierujo" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Bildo" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Konservante..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "sekundoj antaŭe" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "antaŭ %n minuto" -msgstr[1] "antaŭ %n minutoj" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "antaŭ %n horo" -msgstr[1] "antaŭ %n horoj" - -#: js/js.js:1281 -msgid "today" -msgstr "hodiaŭ" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "hieraŭ" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "antaŭ %n tago" -msgstr[1] "antaŭ %n tagoj" - -#: js/js.js:1284 -msgid "last month" -msgstr "lastamonate" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "antaŭ %n monato" -msgstr[1] "antaŭ %n monatoj" - -#: js/js.js:1286 -msgid "last year" -msgstr "lastajare" - -#: js/js.js:1287 -msgid "years ago" -msgstr "jaroj antaŭe" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index e3ac0ebec23..07b58d098a9 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index e24c2e14ae9..de4cc2fa2de 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -232,7 +232,15 @@ msgstr "Persona" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Konservita" @@ -301,39 +309,23 @@ msgstr "Disponebla por" msgid "Add storage" msgstr "Aldoni memorilon" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Neniu uzanto aŭ grupo" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Ĉiuj uzantoj" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupoj" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Uzantoj" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Forigi" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Kapabligi malenan memorilon de uzanto" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Permesi uzantojn munti la jenajn malenajn memorilojn" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Radikaj SSL-atestoj" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Enporti radikan ateston" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index e13ba9ef4c7..8ea3c8476c1 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index d9ca3108e21..b3cc3d1d277 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 537048a3766..8764f04d201 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+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" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "{groupName} foriĝis" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "malfari" @@ -350,27 +350,27 @@ msgstr "Forigi" msgid "never" msgstr "neniam" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "{userName} foriĝis" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "aldoni grupon" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Valida uzantonomo devas proviziĝi" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Eraris kreo de uzanto" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Valida pasvorto devas proviziĝi" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Averto: hejmdosierujo por la uzanto “{user”} jam ekzistas" diff --git a/l10n/es/core.po b/l10n/es/core.po index 11d99c25239..c698ddfd39f 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -33,9 +33,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" -"Last-Translator: Artopal \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -174,78 +174,30 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Ajustes" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Archivo" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Carpeta" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Imagen" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Guardando..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "hace segundos" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "Hace %n minuto" -msgstr[1] "hace %n minutos" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "Hace %n hora" -msgstr[1] "hace %n horas" - -#: js/js.js:1281 -msgid "today" -msgstr "hoy" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ayer" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "Hace %n día" -msgstr[1] "hace %n días" - -#: js/js.js:1284 -msgid "last month" -msgstr "el mes pasado" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "Hace %n mes" -msgstr[1] "hace %n meses" - -#: js/js.js:1286 -msgid "last year" -msgstr "el año pasado" - -#: js/js.js:1287 -msgid "years ago" -msgstr "hace años" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "La reiniciación de este correo electrónico no pudo ser enviada. Por favor, contacte a su administrador." diff --git a/l10n/es/files.po b/l10n/es/files.po index 34d50e568aa..104240f09ce 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index 7b688b0ab51..ab3e7cea174 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" -"Last-Translator: victormce \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -236,7 +236,15 @@ msgstr "Personal" msgid "System" msgstr "Sistema" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Guardado" @@ -305,39 +313,23 @@ msgstr "Disponible para" msgid "Add storage" msgstr "Añadir almacenamiento" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Ningún usuario o grupo" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Todos los usuarios" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupos" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Usuarios" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Eliminar" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Habilitar almacenamiento externo de usuario" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Permitir a los usuarios montar el siguiente almacenamiento externo" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Certificados raíz SSL" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importar certificado raíz" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 19a4a157ff2..3766f4abf28 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index a0863ee19d8..1aafedeeaee 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 6b412afb5c1..c3fb09c634e 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -25,8 +25,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: Artopal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -343,7 +343,7 @@ msgstr "Se debe dar un nombre válido para el grupo " msgid "deleted {groupName}" msgstr "borrado {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "deshacer" @@ -367,27 +367,27 @@ msgstr "Eliminar" msgid "never" msgstr "nunca" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "borrado {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "añadir Grupo" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Se debe proporcionar un nombre de usuario válido" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Error al crear usuario" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Se debe proporcionar una contraseña válida" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Atención: el directorio de inicio para el usuario \"{user}\" ya existe." diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 2f48cfb3e26..66a963a7856 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -150,78 +150,30 @@ msgstr "noviembre" msgid "December" msgstr "diciembre" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Configuración" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Archivo" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Carpeta" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Imagen" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Guardando..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "segundos atrás" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "Hace %n minuto" -msgstr[1] "Hace %n minutos" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "Hace %n hora" -msgstr[1] "Hace %n horas" - -#: js/js.js:1281 -msgid "today" -msgstr "hoy" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ayer" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "Hace %n día" -msgstr[1] "Hace %n días" - -#: js/js.js:1284 -msgid "last month" -msgstr "el mes pasado" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "Hace %n mes" -msgstr[1] "Hace %n meses" - -#: js/js.js:1286 -msgid "last year" -msgstr "el año pasado" - -#: js/js.js:1287 -msgid "years ago" -msgstr "años atrás" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 2a5573de6c8..3bff106fe2f 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index 5f4c007cb0e..7df211b087b 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -232,7 +232,15 @@ msgstr "Personal" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Guardado" @@ -301,39 +309,23 @@ msgstr "" msgid "Add storage" msgstr "Añadir almacenamiento" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Todos los usuarios" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupos" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Usuarios" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Borrar" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Habilitar almacenamiento de usuario externo" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "certificados SSL raíz" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importar certificado raíz" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 6dc165bcb50..3c6e6efdb51 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 32bbf594e10..6ceced0e219 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 2ad7df69b00..0c1c2cc675c 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -329,7 +329,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "deshacer" @@ -353,27 +353,27 @@ msgstr "Borrar" msgid "never" msgstr "nunca" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "agregar grupo" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Debe ingresar un nombre de usuario válido" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Error creando usuario" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Debe ingresar una contraseña válida" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Advertencia: El directorio Home del usuario \"{user}\" ya existe" diff --git a/l10n/es_BO/core.po b/l10n/es_BO/core.po index 3cab62ed1a1..3800ac86a49 100644 --- a/l10n/es_BO/core.po +++ b/l10n/es_BO/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Bolivia) (http://www.transifex.com/projects/p/owncloud/language/es_BO/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/es_BO/files_external.po b/l10n/es_BO/files_external.po index b1c7926822b..03f0d760688 100644 --- a/l10n/es_BO/files_external.po +++ b/l10n/es_BO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Bolivia) (http://www.transifex.com/projects/p/owncloud/language/es_BO/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/es_CL/core.po b/l10n/es_CL/core.po index e9f154c98ca..f8470d6874d 100644 --- a/l10n/es_CL/core.po +++ b/l10n/es_CL/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -149,78 +149,30 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Configuración" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "segundos antes" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "hoy" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ayer" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "mes anterior" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "último año" - -#: js/js.js:1287 -msgid "years ago" -msgstr "años anteriores" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/es_CL/files_external.po b/l10n/es_CL/files_external.po index c9fd7daa92f..6e96be88156 100644 --- a/l10n/es_CL/files_external.po +++ b/l10n/es_CL/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-31 01:54-0400\n" -"PO-Revision-Date: 2014-07-30 21:11+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "Personal" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Usuarios" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/es_CL/lib.po b/l10n/es_CL/lib.po index d6d8e375a5e..968ab769cc3 100644 --- a/l10n/es_CL/lib.po +++ b/l10n/es_CL/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_CO/core.po b/l10n/es_CO/core.po index 21d7e9d9259..b9691cfec3d 100644 --- a/l10n/es_CO/core.po +++ b/l10n/es_CO/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/projects/p/owncloud/language/es_CO/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/es_CO/files_external.po b/l10n/es_CO/files_external.po index fd596681aaf..38ab770e345 100644 --- a/l10n/es_CO/files_external.po +++ b/l10n/es_CO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/projects/p/owncloud/language/es_CO/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/es_CR/core.po b/l10n/es_CR/core.po index b7356c342cf..a9a8f39e045 100644 --- a/l10n/es_CR/core.po +++ b/l10n/es_CR/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/es_CR/files_external.po b/l10n/es_CR/files_external.po index dd46911c1a1..e72df440623 100644 --- a/l10n/es_CR/files_external.po +++ b/l10n/es_CR/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/es_EC/core.po b/l10n/es_EC/core.po index 5754c8a14ba..ee6b07bcc73 100644 --- a/l10n/es_EC/core.po +++ b/l10n/es_EC/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Ecuador) (http://www.transifex.com/projects/p/owncloud/language/es_EC/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/es_EC/files_external.po b/l10n/es_EC/files_external.po index f6e87773e4e..53d61c6bde3 100644 --- a/l10n/es_EC/files_external.po +++ b/l10n/es_EC/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Ecuador) (http://www.transifex.com/projects/p/owncloud/language/es_EC/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/es_MX/core.po b/l10n/es_MX/core.po index 8c7400a0abb..3f61e0e2550 100644 --- a/l10n/es_MX/core.po +++ b/l10n/es_MX/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Ajustes" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Archivo" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Carpeta" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Guardando..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "segundos antes" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "Hace %n minuto" -msgstr[1] "Hace %n minutos" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "Hace %n hora" -msgstr[1] "Hace %n horas" - -#: js/js.js:1281 -msgid "today" -msgstr "hoy" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ayer" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "Hace %n día" -msgstr[1] "Hace %n días" - -#: js/js.js:1284 -msgid "last month" -msgstr "el mes pasado" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "Hace %n mes" -msgstr[1] "Hace %n meses" - -#: js/js.js:1286 -msgid "last year" -msgstr "el año pasado" - -#: js/js.js:1287 -msgid "years ago" -msgstr "años antes" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/es_MX/files.po b/l10n/es_MX/files.po index a74989e5770..bf7bd695dea 100644 --- a/l10n/es_MX/files.po +++ b/l10n/es_MX/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_MX/files_external.po b/l10n/es_MX/files_external.po index b45935f11a3..36e43601849 100644 --- a/l10n/es_MX/files_external.po +++ b/l10n/es_MX/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "Personal" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "Añadir almacenamiento" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Todos los usuarios" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupos" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Usuarios" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Eliminar" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Habilitar almacenamiento externo de usuario" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Certificados raíz SSL" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importar certificado raíz" diff --git a/l10n/es_MX/files_trashbin.po b/l10n/es_MX/files_trashbin.po index b541f5f6068..5fca2c2a0ec 100644 --- a/l10n/es_MX/files_trashbin.po +++ b/l10n/es_MX/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_MX/lib.po b/l10n/es_MX/lib.po index 51b783d7494..f7c1cd7df09 100644 --- a/l10n/es_MX/lib.po +++ b/l10n/es_MX/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_MX/settings.po b/l10n/es_MX/settings.po index e100e8e8810..684d7593c8e 100644 --- a/l10n/es_MX/settings.po +++ b/l10n/es_MX/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "deshacer" @@ -349,27 +349,27 @@ msgstr "Eliminar" msgid "never" msgstr "nunca" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "añadir Grupo" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Se debe proporcionar un nombre de usuario válido" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Error al crear usuario" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Se debe proporcionar una contraseña válida" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Atención: el directorio de inicio para el usuario \"{user}\" ya existe." diff --git a/l10n/es_PE/core.po b/l10n/es_PE/core.po index 29b9d936b7b..a4032e94649 100644 --- a/l10n/es_PE/core.po +++ b/l10n/es_PE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Peru) (http://www.transifex.com/projects/p/owncloud/language/es_PE/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/es_PE/files_external.po b/l10n/es_PE/files_external.po index bb6b167f234..327c9f2236d 100644 --- a/l10n/es_PE/files_external.po +++ b/l10n/es_PE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Peru) (http://www.transifex.com/projects/p/owncloud/language/es_PE/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/es_PY/core.po b/l10n/es_PY/core.po index e9472ecd5df..d8916d960fe 100644 --- a/l10n/es_PY/core.po +++ b/l10n/es_PY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Paraguay) (http://www.transifex.com/projects/p/owncloud/language/es_PY/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/es_PY/files_external.po b/l10n/es_PY/files_external.po index b7869ac80cd..29010203c9f 100644 --- a/l10n/es_PY/files_external.po +++ b/l10n/es_PY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Paraguay) (http://www.transifex.com/projects/p/owncloud/language/es_PY/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/es_US/core.po b/l10n/es_US/core.po index ef268f6f26c..7599c67c21a 100644 --- a/l10n/es_US/core.po +++ b/l10n/es_US/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (United States) (http://www.transifex.com/projects/p/owncloud/language/es_US/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/es_US/files_external.po b/l10n/es_US/files_external.po index 85e434013a7..c9e7707dbe2 100644 --- a/l10n/es_US/files_external.po +++ b/l10n/es_US/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (United States) (http://www.transifex.com/projects/p/owncloud/language/es_US/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/es_UY/core.po b/l10n/es_UY/core.po index 06fcbf3e44f..67334998235 100644 --- a/l10n/es_UY/core.po +++ b/l10n/es_UY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Uruguay) (http://www.transifex.com/projects/p/owncloud/language/es_UY/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/es_UY/files_external.po b/l10n/es_UY/files_external.po index 055921fa585..8a9ef13f76d 100644 --- a/l10n/es_UY/files_external.po +++ b/l10n/es_UY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Uruguay) (http://www.transifex.com/projects/p/owncloud/language/es_UY/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index a9e83e16b03..f2b6cc362ae 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -150,78 +150,30 @@ msgstr "November" msgid "December" msgstr "Detsember" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Seaded" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Fail" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Kaust" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Pilt" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Helid" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Salvestamine..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "sekundit tagasi" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n minut tagasi" -msgstr[1] "%n minutit tagasi" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n tund tagasi" -msgstr[1] "%n tundi tagasi" - -#: js/js.js:1281 -msgid "today" -msgstr "täna" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "eile" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n päev tagasi" -msgstr[1] "%n päeva tagasi" - -#: js/js.js:1284 -msgid "last month" -msgstr "viimasel kuul" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n kuu tagasi" -msgstr[1] "%n kuud tagasi" - -#: js/js.js:1286 -msgid "last year" -msgstr "viimasel aastal" - -#: js/js.js:1287 -msgid "years ago" -msgstr "aastat tagasi" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Ei suutnud lähtestada e-maili. Palun kontakteeru süsteemihalduriga." diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 5e98dd3aefd..7ea73c0d322 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index e096a9a4295..ae4a45cb5df 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -233,7 +233,15 @@ msgstr "Isiklik" msgid "System" msgstr "Süsteem" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Salvestatud" @@ -302,39 +310,23 @@ msgstr "Saadaval" msgid "Add storage" msgstr "Lisa andmehoidla" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Ühtki kasutajat või gruppi" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Kõik kasutajad" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupid" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Kasutajad" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Kustuta" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Luba kasutajatele väline salvestamine" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Võimalda kasutajatel ühendada järgmist välist andmehoidlat" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL root sertifikaadid" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Impordi root sertifikaadid" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index e19799f531d..c9c24732b34 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 0537e045f2a..d673d1213ef 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index b14c1a59c07..7cfad404111 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+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" @@ -327,7 +327,7 @@ msgstr "Sisesta nõuetele vastav grupi nimi" msgid "deleted {groupName}" msgstr "kustutatud {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "tagasi" @@ -351,27 +351,27 @@ msgstr "Kustuta" msgid "never" msgstr "mitte kunagi" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "kustutatud {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "lisa grupp" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Sisesta nõuetele vastav kasutajatunnus" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Viga kasutaja loomisel" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Sisesta nõuetele vastav parool" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Hoiatus: kasutaja \"{user}\" kodukataloog on juba olemas" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index eae61170a2d..a3560017e07 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" -"Last-Translator: Alexander Gabilondo \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -152,78 +152,30 @@ msgstr "Azaroa" msgid "December" msgstr "Abendua" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Fitxategia" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Karpeta" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Irudia" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Gordetzen..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "segundu" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "orain dela minutu %n" -msgstr[1] "orain dela %n minutu" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "orain dela ordu %n" -msgstr[1] "orain dela %n ordu" - -#: js/js.js:1281 -msgid "today" -msgstr "gaur" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "atzo" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "orain dela egun %n" -msgstr[1] "orain dela %n egun" - -#: js/js.js:1284 -msgid "last month" -msgstr "joan den hilabetean" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "orain dela hilabete %n" -msgstr[1] "orain dela %n hilabete" - -#: js/js.js:1286 -msgid "last year" -msgstr "joan den urtean" - -#: js/js.js:1287 -msgid "years ago" -msgstr "urte" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Ezin da berrezartzeko eposta bidali. Mesedez jarri harremetan zure administradorearekin." diff --git a/l10n/eu/files.po b/l10n/eu/files.po index bc379c250e5..8adfb4b1896 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 480f75f28b2..c9b43aeac2e 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -234,7 +234,15 @@ msgstr "Pertsonala" msgid "System" msgstr "Sistema" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Gordeta" @@ -303,39 +311,23 @@ msgstr "Hauentzat eskuragarri" msgid "Add storage" msgstr "Gehitu biltegiratzea" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Talde edo erabiltzailerik ez" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Erabiltzaile guztiak" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Taldeak" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Erabiltzaileak" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Ezabatu" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Gaitu erabiltzaileentzako kanpo biltegiratzea" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Baimendu erabiltzaileak hurrengo kanpo biltegiratzeak muntatzen" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL erro ziurtagiriak" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Inportatu erro ziurtagiria" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 629328b9866..0ef7937e4bf 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 47c1b4b06b0..67308cd9262 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index c6f64820b61..f3c5e857c89 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: Alexander Gabilondo \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -330,7 +330,7 @@ msgstr "Baliozko talde izena eman behar da" msgid "deleted {groupName}" msgstr "{groupName} ezbatuta" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "desegin" @@ -354,27 +354,27 @@ msgstr "Ezabatu" msgid "never" msgstr "inoiz" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "{userName} ezabatuta" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "gehitu taldea" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Baliozko erabiltzaile izena eman behar da" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Errore bat egon da erabiltzailea sortzean" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Baliozko pasahitza eman behar da" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Abisua: \"{user}\" erabiltzailearen Home karpeta dagoeneko exisititzen da" diff --git a/l10n/eu_ES/core.po b/l10n/eu_ES/core.po index 84f46882fab..2f54f4914b2 100644 --- a/l10n/eu_ES/core.po +++ b/l10n/eu_ES/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/eu_ES/files.po b/l10n/eu_ES/files.po index 4624a43ed92..6e6b2515085 100644 --- a/l10n/eu_ES/files.po +++ b/l10n/eu_ES/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/eu_ES/files_external.po b/l10n/eu_ES/files_external.po index 97c8dc39d10..4296ffafe10 100644 --- a/l10n/eu_ES/files_external.po +++ b/l10n/eu_ES/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "Pertsonala" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Ezabatu" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/eu_ES/files_trashbin.po b/l10n/eu_ES/files_trashbin.po index 92254ba75e2..e44703e93e4 100644 --- a/l10n/eu_ES/files_trashbin.po +++ b/l10n/eu_ES/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/eu_ES/settings.po b/l10n/eu_ES/settings.po index 05131b6805f..e32771d8f79 100644 --- a/l10n/eu_ES/settings.po +++ b/l10n/eu_ES/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "Ezabatu" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index b9fd6566723..ca0aadf939c 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -153,74 +153,30 @@ msgstr "نوامبر" msgid "December" msgstr "دسامبر" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "تنظیمات" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "فایل" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "پوشه" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "تصویر" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "صدا" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "در حال ذخیره سازی..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "ثانیه‌ها پیش" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n دقیقه قبل" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n ساعت قبل" - -#: js/js.js:1281 -msgid "today" -msgstr "امروز" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "دیروز" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n روز قبل" - -#: js/js.js:1284 -msgid "last month" -msgstr "ماه قبل" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n ماه قبل" - -#: js/js.js:1286 -msgid "last year" -msgstr "سال قبل" - -#: js/js.js:1287 -msgid "years ago" -msgstr "سال‌های قبل" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "ارسال ایمیل مجدد با مشکل مواجه شد . لطفا با مدیر سیستم تماس بگیرید ." diff --git a/l10n/fa/files.po b/l10n/fa/files.po index e39bb28d237..5a7ca0d26d1 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index a77bd02d834..cb67bcf986c 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -232,7 +232,15 @@ msgstr "شخصی" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "ذخیره شد" @@ -301,39 +309,23 @@ msgstr "" msgid "Add storage" msgstr "اضافه کردن حافظه" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "تمام کاربران" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "گروه ها" - -#: templates/settings.php:106 -msgid "Users" -msgstr "کاربران" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "حذف" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "فعال سازی حافظه خارجی کاربر" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "گواهی های اصلی SSL " -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "وارد کردن گواهی اصلی" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 7d9a3734bc2..d63f5f98222 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: Mohammad \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 92b66aac18d..75e82df1712 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 16dd9833401..81bcf65d2ba 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+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" @@ -329,7 +329,7 @@ msgstr "نام کاربری معتبر می بایست وارد شود" msgid "deleted {groupName}" msgstr "گروه {groupName} حذف شد" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "بازگشت" @@ -353,27 +353,27 @@ msgstr "حذف" msgid "never" msgstr "هرگز" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "کاربر {userName} حذف شد" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "افزودن گروه" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "نام کاربری صحیح باید وارد شود" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "خطا در ایجاد کاربر" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "رمز عبور صحیح باید وارد شود" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "اخطار: پوشه‌ی خانه برای کاربر \"{user}\" در حال حاضر وجود دارد" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index c30d70af04f..84930888a95 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" -"Last-Translator: ioxo \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -151,78 +151,30 @@ msgstr "marraskuu" msgid "December" msgstr "joulukuu" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Asetukset" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Tiedosto" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Kansio" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Kuva" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Ääni" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Tallennetaan..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "sekuntia sitten" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n minuutti sitten" -msgstr[1] "%n minuuttia sitten" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n tunti sitten" -msgstr[1] "%n tuntia sitten" - -#: js/js.js:1281 -msgid "today" -msgstr "tänään" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "eilen" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n päivä sitten" -msgstr[1] "%n päivää sitten" - -#: js/js.js:1284 -msgid "last month" -msgstr "viime kuussa" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n kuukausi sitten" -msgstr[1] "%n kuukautta sitten" - -#: js/js.js:1286 -msgid "last year" -msgstr "viime vuonna" - -#: js/js.js:1287 -msgid "years ago" -msgstr "vuotta sitten" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Palautussähköpostin lähettäminen ei onnistunut. Ota yhteys ylläpitäjään." diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 3e3a996403e..0ceecea57de 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 07112194f88..9b9a6e0e292 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -232,7 +232,15 @@ msgstr "Henkilökohtainen" msgid "System" msgstr "Järjestelmä" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Tallennettu" @@ -301,39 +309,23 @@ msgstr "Saatavuus" msgid "Add storage" msgstr "Lisää tallennustila" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Ei käyttäjää tai ryhmää" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Kaikki käyttäjät" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Ryhmät" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Käyttäjät" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Poista" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Ota käyttöön ulkopuoliset tallennuspaikat" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Salli käyttäjien liittää seuraavat erilliset tallennusvälineet" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL-juurivarmenteet" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Tuo juurivarmenne" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 8816fa1f042..1e55557c31b 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 41695272777..407628c64ea 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 2fc45c679bf..0c6bd0d4bd2 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+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" @@ -326,7 +326,7 @@ msgstr "Anna kelvollinen ryhmän nimi" msgid "deleted {groupName}" msgstr "poistettu {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "kumoa" @@ -350,27 +350,27 @@ msgstr "Poista" msgid "never" msgstr "ei koskaan" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "poistettu {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "lisää ryhmä" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Anna kelvollinen käyttäjätunnus" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Virhe käyttäjää luotaessa" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Anna kelvollinen salasana" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Varoitus: käyttäjällä \"{user}\" on jo olemassa kotikansio" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 71049ddbc26..b24eac526b6 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -160,78 +160,30 @@ msgstr "novembre" msgid "December" msgstr "décembre" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Paramètres" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Fichier" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Dossier" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Image" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Enregistrement..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "il y a quelques secondes" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "il y a %n minute" -msgstr[1] "il y a %n minutes" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "Il y a %n heure" -msgstr[1] "Il y a %n heures" - -#: js/js.js:1281 -msgid "today" -msgstr "aujourd'hui" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "hier" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "il y a %n jour" -msgstr[1] "il y a %n jours" - -#: js/js.js:1284 -msgid "last month" -msgstr "le mois dernier" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "Il y a %n mois" -msgstr[1] "Il y a %n mois" - -#: js/js.js:1286 -msgid "last year" -msgstr "l'année dernière" - -#: js/js.js:1287 -msgid "years ago" -msgstr "il y a plusieurs années" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Impossible d'envoyer l’émail de réinitialisation. Veuillez contacter votre administrateur." diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 2b2b6d031b9..24fea12e32d 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index f981717e94c..4f2b4c86f8a 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -239,7 +239,15 @@ msgstr "Personnel" msgid "System" msgstr "Système" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Sauvegarder" @@ -308,39 +316,23 @@ msgstr "Disponible pour" msgid "Add storage" msgstr "Ajouter un support de stockage" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Aucun utilisateur ou groupe" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Tous les utilisateurs" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Groupes" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Utilisateurs" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Supprimer" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Activer le stockage externe pour les utilisateurs" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Autorise les utilisateurs à monter les stockage externes suivants" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Certificats racine SSL" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importer un certificat racine" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index bbec2be92fe..7378459aeb5 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index ebc3008515a..cda5d6a2b32 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 7155fb5646d..43085950f5e 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -23,8 +23,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+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" @@ -341,7 +341,7 @@ msgstr "Vous devez spécifier un nom de groupe valide" msgid "deleted {groupName}" msgstr "{groupName} supprimé" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "annuler" @@ -365,27 +365,27 @@ msgstr "Supprimer" msgid "never" msgstr "jamais" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "{userName} supprimé" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "ajouter un groupe" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Un nom d'utilisateur valide doit être saisi" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Erreur lors de la création de l'utilisateur" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Un mot de passe valide doit être saisi" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Attention : Le dossier Home pour l'utilisateur \"{user}\" existe déjà" diff --git a/l10n/fr_CA/core.po b/l10n/fr_CA/core.po index 430fc8070a3..86fb4d36246 100644 --- a/l10n/fr_CA/core.po +++ b/l10n/fr_CA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/fr_CA/files_external.po b/l10n/fr_CA/files_external.po index e9896408855..86eb1b40031 100644 --- a/l10n/fr_CA/files_external.po +++ b/l10n/fr_CA/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 42734c447ee..bc47c1bb3e0 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -150,78 +150,30 @@ msgstr "novembro" msgid "December" msgstr "decembro" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Axustes" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Ficheiro" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Cartafol" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Imaxe" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Son" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Gardando..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "segundos atrás" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "hai %n minuto" -msgstr[1] "vai %n minutos" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "hai %n hora" -msgstr[1] "vai %n horas" - -#: js/js.js:1281 -msgid "today" -msgstr "hoxe" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "onte" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "hai %n día" -msgstr[1] "vai %n días" - -#: js/js.js:1284 -msgid "last month" -msgstr "último mes" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "hai %n mes" -msgstr[1] "vai %n meses" - -#: js/js.js:1286 -msgid "last year" -msgstr "último ano" - -#: js/js.js:1287 -msgid "years ago" -msgstr "anos atrás" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Non foi posíbel enviar o coreo do restablecemento. Póñase en contacto co administrador." diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 5f3dbf0f4ce..006f35eaef7 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index cc56824e5b6..5e0deebff2e 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" -"Last-Translator: Miguel Anxo Bouzada \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -232,7 +232,15 @@ msgstr "Persoal" msgid "System" msgstr "Sistema" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Gardado" @@ -301,39 +309,23 @@ msgstr "Dispoñíbel para" msgid "Add storage" msgstr "Engadir almacenamento" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Non hai usuario ou grupo" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Todos os usuarios" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupos" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Usuarios" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Eliminar" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Activar o almacenamento externo do usuario" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Permitirlle aos usuarios montar o seguinte almacenamento externo" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Certificados raíz SSL" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importar o certificado raíz" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index 0210cefb710..8290c466943 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: Miguel Anxo Bouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 9c67c5c70b4..f351260ef4a 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index f106d8528a2..d28cbb47648 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+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" @@ -327,7 +327,7 @@ msgstr "Debe fornecer un nome de grupo" msgid "deleted {groupName}" msgstr "{groupName} foi eliminado" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "desfacer" @@ -351,27 +351,27 @@ msgstr "Eliminar" msgid "never" msgstr "nunca" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "{userName} foi eliminado" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "engadir un grupo" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Debe fornecer un nome de usuario" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Produciuse un erro ao crear o usuario" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Debe fornecer un contrasinal" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Aviso: O directorio persoal para o usuario «{user}» xa existe" diff --git a/l10n/he/core.po b/l10n/he/core.po index 6cba56e60ee..8c67b94e7d7 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -150,78 +150,30 @@ msgstr "נובמבר" msgid "December" msgstr "דצמבר" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "הגדרות" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "תיקייה" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "שמירה…" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "שניות" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "לפני %n דקה" -msgstr[1] "לפני %n דקות" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "לפני %n שעה" -msgstr[1] "לפני %n שעות" - -#: js/js.js:1281 -msgid "today" -msgstr "היום" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "אתמול" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "לפני %n יום" -msgstr[1] "לפני %n ימים" - -#: js/js.js:1284 -msgid "last month" -msgstr "חודש שעבר" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "לפני %n חודש" -msgstr[1] "לפני %n חודשים" - -#: js/js.js:1286 -msgid "last year" -msgstr "שנה שעברה" - -#: js/js.js:1287 -msgid "years ago" -msgstr "שנים" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/he/files.po b/l10n/he/files.po index 47685c6b92f..a8ea2357b53 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index 3667c795159..809d5a82c5d 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "אישי" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "נשמר" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "כל המשתמשים" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "קבוצות" - -#: templates/settings.php:106 -msgid "Users" -msgstr "משתמשים" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "מחיקה" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "הפעלת אחסון חיצוני למשתמשים" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "שורש אישורי אבטחת SSL " -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "ייבוא אישור אבטחת שורש" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index 5e4ca536253..5bbe4a01304 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 78688230bc6..8f5a369df4e 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index dd916f1b7fc..5efbad0316d 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+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" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "ביטול" @@ -350,27 +350,27 @@ msgstr "מחיקה" msgid "never" msgstr "לעולם לא" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "הוספת קבוצה" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "יש לספק שם משתמש תקני" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "יצירת המשתמש נכשלה" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "יש לספק ססמה תקנית" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index d4f42e73e6c..407c37a9d2c 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -150,78 +150,30 @@ msgstr "नवंबर" msgid "December" msgstr "दिसम्बर" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "सेटिंग्स" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/hi/files_external.po b/l10n/hi/files_external.po index b1978e7a694..882518060d9 100644 --- a/l10n/hi/files_external.po +++ b/l10n/hi/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-18 01:54-0400\n" -"PO-Revision-Date: 2014-08-17 07:20+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "यक्तिगत" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "उपयोगकर्ता" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index ddbf03f99d0..3652128f944 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 466995a1083..bfbf98c76c8 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/hi_IN/core.po b/l10n/hi_IN/core.po index 715360c1aa4..39c71f04bb4 100644 --- a/l10n/hi_IN/core.po +++ b/l10n/hi_IN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (India) (http://www.transifex.com/projects/p/owncloud/language/hi_IN/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/hi_IN/files_external.po b/l10n/hi_IN/files_external.po index 88a668e8c1f..eac7084c70c 100644 --- a/l10n/hi_IN/files_external.po +++ b/l10n/hi_IN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (India) (http://www.transifex.com/projects/p/owncloud/language/hi_IN/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 9ccb8b78f19..e20598d4f61 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -148,82 +148,30 @@ msgstr "Studeni" msgid "December" msgstr "Prosinac" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Postavke" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "mapa" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Spremanje..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "sekundi prije" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1281 -msgid "today" -msgstr "danas" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "jučer" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "prošli mjesec" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "prošlu godinu" - -#: js/js.js:1287 -msgid "years ago" -msgstr "godina" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 43e046e0568..7af0d35974e 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index 2f900913b89..b7aff410ffd 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" -"Last-Translator: Dubravko Penezic \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -232,7 +232,15 @@ msgstr "Osobno" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Snimljeno" @@ -301,39 +309,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupe" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Korisnici" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Obriši" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 5d806fda3f8..e26faf83572 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 36c2b650168..983602718f4 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index c26f812c8b9..931e6ae984d 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "vrati" @@ -349,27 +349,27 @@ msgstr "Obriši" msgid "never" msgstr "nikad" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 9e78931a09a..8d0bd66e12c 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -154,78 +154,30 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Beállítások" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Fájl" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Mappa" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Kép" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Hang" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Mentés..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "pár másodperce" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n perccel ezelőtt" -msgstr[1] "%n perccel ezelőtt" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n órával ezelőtt" -msgstr[1] "%n órával ezelőtt" - -#: js/js.js:1281 -msgid "today" -msgstr "ma" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "tegnap" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n nappal ezelőtt" -msgstr[1] "%n nappal ezelőtt" - -#: js/js.js:1284 -msgid "last month" -msgstr "múlt hónapban" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n hónappal ezelőtt" -msgstr[1] "%n hónappal ezelőtt" - -#: js/js.js:1286 -msgid "last year" -msgstr "tavaly" - -#: js/js.js:1287 -msgid "years ago" -msgstr "több éve" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Visszaállítási e-mail nem küldhető. Kérjük, lépjen kapcsolatba a rendszergazdával." diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 1d198e814ee..ddff74582a6 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 0ccbe49e8d1..5a186a240ce 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -232,7 +232,15 @@ msgstr "Személyes" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Elmentve" @@ -301,39 +309,23 @@ msgstr "" msgid "Add storage" msgstr "Tároló becsatolása" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Az összes felhasználó" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Csoportok" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Felhasználók" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Törlés" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Külső tárolók engedélyezése a felhasználók részére" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL tanúsítványok" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "SSL tanúsítványok importálása" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index 80375c4533c..c6b6280016e 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index c60b33a8e65..d56e9e98bc3 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index cb7a4fee378..6afb82dca3e 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -329,7 +329,7 @@ msgstr "Érvényes csoportnevet kell megadni" msgid "deleted {groupName}" msgstr "törölve: {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "visszavonás" @@ -353,27 +353,27 @@ msgstr "Törlés" msgid "never" msgstr "soha" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "törölve: {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "csoport hozzáadása" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Érvényes felhasználónevet kell megadnia" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "A felhasználó nem hozható létre" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Érvényes jelszót kell megadnia" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Figyelmeztetés: A felhasználó \"{user}\" kezdő könyvtára már létezik" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index 10ccb127d7b..1062dae3750 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "Նոյեմբեր" msgid "December" msgstr "Դեկտեմբեր" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 8cb3ddc381a..677061404b3 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index dd07b910a8d..59ded924776 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Ջնջել" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index 2e672ab7655..624823c0bbd 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 8f2bf991f0f..40eb06af385 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "Ջնջել" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index f3df3b967b6..45387240939 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -149,78 +149,30 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Configurationes" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "File" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Dossier" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Imagine" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Salveguardante..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "secundas passate" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n minuta passate" -msgstr[1] "%n minutas passate" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n hora passate" -msgstr[1] "%n horas passate" - -#: js/js.js:1281 -msgid "today" -msgstr "hodie" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "heri" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n die ante" -msgstr[1] "%n dies ante" - -#: js/js.js:1284 -msgid "last month" -msgstr "ultime mense" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n mense ante" -msgstr[1] "%n menses ante" - -#: js/js.js:1286 -msgid "last year" -msgstr "ultime anno" - -#: js/js.js:1287 -msgid "years ago" -msgstr "annos passate" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index bdc1b97c88b..a5a26d248da 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index 728b5294863..57ea0c214df 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "Personal" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Gruppos" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Usatores" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Deler" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index 8986987a49f..ad6e92d86aa 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 2d30dd16f43..637b8f77814 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index a1f76a583b2..4dd992bfaa1 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "Deler" msgid "never" msgstr "nunquam" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/id/core.po b/l10n/id/core.po index e6292c9517a..774ba028bef 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -149,74 +149,30 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Pengaturan" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Berkas" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Folder" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "gambar" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Menyimpan..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "beberapa detik yang lalu" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n menit yang lalu" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n jam yang lalu" - -#: js/js.js:1281 -msgid "today" -msgstr "hari ini" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "kemarin" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n hari yang lalu" - -#: js/js.js:1284 -msgid "last month" -msgstr "bulan kemarin" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n bulan yang lalu" - -#: js/js.js:1286 -msgid "last year" -msgstr "tahun kemarin" - -#: js/js.js:1287 -msgid "years ago" -msgstr "beberapa tahun lalu" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/id/files.po b/l10n/id/files.po index 15d4524ca69..ea5dccafce9 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index f501c3774d8..dc16312fcbc 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -232,7 +232,15 @@ msgstr "Pribadi" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Disimpan" @@ -301,39 +309,23 @@ msgstr "Tersedia untuk" msgid "Add storage" msgstr "Tambahkan penyimpanan" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Tidak ada pengguna dan grup" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Semua Pengguna" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grup" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Pengguna" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Hapus" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Aktifkan Penyimpanan Eksternal Pengguna" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Izinkan pengguna untuk mengaitkan penyimpanan eksternal berikut" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Sertifikat root SSL" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Impor Sertifikat Root" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index 4166b14eb97..6e33e71251c 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 69ba9795808..4863f054335 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 8d7621f9f7f..c93854dae13 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+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" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "urungkan" @@ -350,27 +350,27 @@ msgstr "Hapus" msgid "never" msgstr "tidak pernah" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "tambah grup" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Tuliskan nama pengguna yang valid" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Gagal membuat pengguna" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Tuliskan sandi yang valid" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Peringatan: Direktori home untuk pengguna \"{user}\" sudah ada" diff --git a/l10n/io/core.po b/l10n/io/core.po index 8e1cb420ccc..d03b8e9583f 100644 --- a/l10n/io/core.po +++ b/l10n/io/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Ido (http://www.transifex.com/projects/p/owncloud/language/io/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/io/files_external.po b/l10n/io/files_external.po index cd3cc3c3d28..66b2040de10 100644 --- a/l10n/io/files_external.po +++ b/l10n/io/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-29 01:54-0400\n" -"PO-Revision-Date: 2013-04-26 08:01+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Ido (http://www.transifex.com/projects/p/owncloud/language/io/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/is/core.po b/l10n/is/core.po index 4846bcd613a..41d226dbb2f 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -149,78 +149,30 @@ msgstr "Nóvember" msgid "December" msgstr "Desember" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Stillingar" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Mappa" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Er að vista ..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "sek." - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "í dag" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "í gær" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "síðasta mánuði" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "síðasta ári" - -#: js/js.js:1287 -msgid "years ago" -msgstr "einhverjum árum" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/is/files.po b/l10n/is/files.po index d171a895a71..3074ca01cb2 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index 782af581b3d..9baef836b6e 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "Um mig" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Allir notendur" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Hópar" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Notendur" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Eyða" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Virkja ytra gagnasvæði notenda" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL rótar skilríki" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Flytja inn rótar skilríki" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index 3f7468bf8ad..a6db00a2a95 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index f42b25833ef..790e5359eb4 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index b79fc8d4eab..7280b5b3160 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "afturkalla" @@ -350,27 +350,27 @@ msgstr "Eyða" msgid "never" msgstr "aldrei" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/it/core.po b/l10n/it/core.po index 3358a80ea4d..85bf01c1f0a 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -152,78 +152,30 @@ msgstr "Novembre" msgid "December" msgstr "Dicembre" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Impostazioni" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "File" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Cartella" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Immagine" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Salvataggio in corso..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "secondi fa" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n minuto fa" -msgstr[1] "%n minuti fa" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n ora fa" -msgstr[1] "%n ore fa" - -#: js/js.js:1281 -msgid "today" -msgstr "oggi" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ieri" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n giorno fa" -msgstr[1] "%n giorni fa" - -#: js/js.js:1284 -msgid "last month" -msgstr "mese scorso" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n mese fa" -msgstr[1] "%n mesi fa" - -#: js/js.js:1286 -msgid "last year" -msgstr "anno scorso" - -#: js/js.js:1287 -msgid "years ago" -msgstr "anni fa" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Impossibile inviare l'email di reimpostazione. Contatta il tuo amministratore." diff --git a/l10n/it/files.po b/l10n/it/files.po index 01a25daf0ed..a478bca8959 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 54f8d1093aa..6298c956092 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -235,7 +235,15 @@ msgstr "Personale" msgid "System" msgstr "Sistema" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Salvato" @@ -304,39 +312,23 @@ msgstr "Disponibile per" msgid "Add storage" msgstr "Aggiungi archiviazione" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Nessun utente o gruppo" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Tutti gli utenti" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Gruppi" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Utenti" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Elimina" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Abilita la memoria esterna dell'utente" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Consenti agli utenti di montare la seguente memoria esterna" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Certificati SSL radice" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importa certificato radice" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 38cce881cd4..e5694b172d3 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 78d72c80501..b60b5e279db 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 1e976a19877..a27f76f34e4 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+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" @@ -329,7 +329,7 @@ msgstr "Deve essere fornito un nome valido per il gruppo" msgid "deleted {groupName}" msgstr "{groupName} eliminato" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "annulla" @@ -353,27 +353,27 @@ msgstr "Elimina" msgid "never" msgstr "mai" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "{userName} eliminato" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "aggiungi gruppo" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Deve essere fornito un nome utente valido" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Errore durante la creazione dell'utente" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Deve essere fornita una password valida" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Avviso: la cartella home dell'utente \"{user}\" esiste già" diff --git a/l10n/ja/core.po b/l10n/ja/core.po index 9a11431b2ff..96eca47705d 100644 --- a/l10n/ja/core.po +++ b/l10n/ja/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -155,74 +155,30 @@ msgstr "11月" msgid "December" msgstr "12月" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "設定" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "ファイル" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "フォルダー" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "画像" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "オーディオ" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "保存中..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "数秒前" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n 分前" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n 時間前" - -#: js/js.js:1281 -msgid "today" -msgstr "今日" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "昨日" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n日前" - -#: js/js.js:1284 -msgid "last month" -msgstr "1ヶ月前" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%nヶ月前" - -#: js/js.js:1286 -msgid "last year" -msgstr "1年前" - -#: js/js.js:1287 -msgid "years ago" -msgstr "数年前" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "リセットメールを送信できませんでした。管理者に問い合わせてください。" diff --git a/l10n/ja/files.po b/l10n/ja/files.po index 38d2ca7894b..7856d7a1e9a 100644 --- a/l10n/ja/files.po +++ b/l10n/ja/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/ja/files_external.po b/l10n/ja/files_external.po index 54e06d8f743..4ac1332cb8d 100644 --- a/l10n/ja/files_external.po +++ b/l10n/ja/files_external.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" -"Last-Translator: kuromabo \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -235,7 +235,15 @@ msgstr "個人" msgid "System" msgstr "システム" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "保存されました" @@ -304,39 +312,23 @@ msgstr "以下が利用可能" msgid "Add storage" msgstr "ストレージを追加" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "ユーザーもしくはグループがありません" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "すべてのユーザー" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "グループ" - -#: templates/settings.php:106 -msgid "Users" -msgstr "ユーザー" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "削除" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "ユーザーの外部ストレージを有効にする" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "ユーザーに以下の外部ストレージのマウントを許可する" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSLルート証明書" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "ルート証明書をインポート" diff --git a/l10n/ja/files_trashbin.po b/l10n/ja/files_trashbin.po index 5e6ef7271ba..7fd6bbf5fd5 100644 --- a/l10n/ja/files_trashbin.po +++ b/l10n/ja/files_trashbin.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja/lib.po b/l10n/ja/lib.po index bca97c43025..a7a2db4c7d8 100644 --- a/l10n/ja/lib.po +++ b/l10n/ja/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja/settings.po b/l10n/ja/settings.po index 8be2fe114bf..ba0eac097b4 100644 --- a/l10n/ja/settings.po +++ b/l10n/ja/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+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" @@ -331,7 +331,7 @@ msgstr "有効なグループ名を指定する必要があります" msgid "deleted {groupName}" msgstr "{groupName} を削除しました" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "元に戻す" @@ -355,27 +355,27 @@ msgstr "削除" msgid "never" msgstr "なし" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "{userName} を削除しました" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "グループを追加" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "有効なユーザー名を指定する必要があります" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "ユーザー作成エラー" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "有効なパスワードを指定する必要があります" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "警告: ユーザー \"{user}\" のホームディレクトリはすでに存在します" diff --git a/l10n/jv/core.po b/l10n/jv/core.po index be472387c98..f0188a06538 100644 --- a/l10n/jv/core.po +++ b/l10n/jv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/jv/files_external.po b/l10n/jv/files_external.po index 1aede815ad2..aaab9c77617 100644 --- a/l10n/jv/files_external.po +++ b/l10n/jv/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 9bc16ce9b5a..2625e432b42 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -148,74 +148,30 @@ msgstr "ნოემბერი" msgid "December" msgstr "დეკემბერი" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "პარამეტრები" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "საქაღალდე" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "სურათი" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "შენახვა..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "წამის წინ" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" - -#: js/js.js:1281 -msgid "today" -msgstr "დღეს" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "გუშინ" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "გასულ თვეში" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "ბოლო წელს" - -#: js/js.js:1287 -msgid "years ago" -msgstr "წლის წინ" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index ba5a5f6a021..f344d8ffb18 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index 1aad3c51eea..b501f565dfb 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "პირადი" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "საცავის დამატება" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "ყველა მომხმარებელი" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "ჯგუფები" - -#: templates/settings.php:106 -msgid "Users" -msgstr "მომხმარებელი" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "წაშლა" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "მომხმარებლის ექსტერნალ საცავის აქტივირება" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL root სერთიფიკატები" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Root სერთიფიკატის იმპორტირება" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index ce5675d7a2a..12171a6bd31 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index fc24469139f..4061d4bc625 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index b8f98a91807..e400a71a336 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "დაბრუნება" @@ -350,27 +350,27 @@ msgstr "წაშლა" msgid "never" msgstr "არასდროს" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "ჯგუფის დამატება" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "უნდა მიუთითოთ არსებული მომხმარებლის სახელი" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "შეცდომა მომხმარებლის შექმნისას" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "უნდა მიუთითოთ არსებული პაროლი" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/km/core.po b/l10n/km/core.po index ea9321e821a..9d5e3d29630 100644 --- a/l10n/km/core.po +++ b/l10n/km/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -149,74 +149,30 @@ msgstr "ខែវិច្ឆិកា" msgid "December" msgstr "ខែធ្នូ" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "ការកំណត់" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "ថត" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "កំពុង​រក្សាទុក" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "វិនាទី​មុន" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n នាទី​មុន" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n ម៉ោង​មុន" - -#: js/js.js:1281 -msgid "today" -msgstr "ថ្ងៃនេះ" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ម្សិលមិញ" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n ថ្ងៃ​មុន" - -#: js/js.js:1284 -msgid "last month" -msgstr "ខែមុន" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n ខែ​មុន" - -#: js/js.js:1286 -msgid "last year" -msgstr "ឆ្នាំ​មុន" - -#: js/js.js:1287 -msgid "years ago" -msgstr "ឆ្នាំ​មុន" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/km/files.po b/l10n/km/files.po index fd00f609e5f..1e2e10ee3d7 100644 --- a/l10n/km/files.po +++ b/l10n/km/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/km/files_external.po b/l10n/km/files_external.po index edc98218ee6..c4359ec7476 100644 --- a/l10n/km/files_external.po +++ b/l10n/km/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -232,7 +232,15 @@ msgstr "ផ្ទាល់​ខ្លួន" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "បាន​រក្សាទុក" @@ -301,39 +309,23 @@ msgstr "" msgid "Add storage" msgstr "បន្ថែម​ឃ្លាំងផ្ទុក" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "អ្នក​ប្រើ​ទាំងអស់" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "ក្រុ" - -#: templates/settings.php:106 -msgid "Users" -msgstr "អ្នកប្រើ" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "លុប" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/km/files_trashbin.po b/l10n/km/files_trashbin.po index 3d61f74fcae..a15dbfae6d3 100644 --- a/l10n/km/files_trashbin.po +++ b/l10n/km/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/km/lib.po b/l10n/km/lib.po index a02700083d1..87e298a5057 100644 --- a/l10n/km/lib.po +++ b/l10n/km/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/km/settings.po b/l10n/km/settings.po index 1abe64a6438..665530eabd7 100644 --- a/l10n/km/settings.po +++ b/l10n/km/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -327,7 +327,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "មិន​ធ្វើ​វិញ" @@ -351,27 +351,27 @@ msgstr "លុប" msgid "never" msgstr "មិនដែរ" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "បន្ថែម​ក្រុម" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "ត្រូវ​ផ្ដល់​ឈ្មោះ​អ្នក​ប្រើ​ឲ្យ​បាន​ត្រឹម​ត្រូវ" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "មាន​កំហុស​ក្នុង​ការ​បង្កើត​អ្នក​ប្រើ" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "ត្រូវ​ផ្ដល់​ពាក្យ​សម្ងាត់​ឲ្យ​បាន​ត្រឹម​ត្រូវ" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/kn/core.po b/l10n/kn/core.po index fde8053138b..a11594d599b 100644 --- a/l10n/kn/core.po +++ b/l10n/kn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -148,74 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/kn/files_external.po b/l10n/kn/files_external.po index a4e670aae08..89a62dc205c 100644 --- a/l10n/kn/files_external.po +++ b/l10n/kn/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 63e5b142496..f644c1482e3 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -155,74 +155,30 @@ msgstr "11월" msgid "December" msgstr "12월" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "설정" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "파일" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "폴더" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "그림" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "저장 중..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "초 전" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n분 전 " - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n시간 전 " - -#: js/js.js:1281 -msgid "today" -msgstr "오늘" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "어제" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n일 전 " - -#: js/js.js:1284 -msgid "last month" -msgstr "지난 달" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n달 전 " - -#: js/js.js:1286 -msgid "last year" -msgstr "작년" - -#: js/js.js:1287 -msgid "years ago" -msgstr "년 전" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "재설정 메일을 보낼수 없습니다. 관리자에게 문의하십시오." diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 52989994412..9c96d0205e0 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index 13391579288..6699b421bd0 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -233,7 +233,15 @@ msgstr "개인" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "저장됨" @@ -302,39 +310,23 @@ msgstr "" msgid "Add storage" msgstr "저장소 추가" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "모든 사용자" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "그룹" - -#: templates/settings.php:106 -msgid "Users" -msgstr "사용자" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "삭제" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "사용자 외부 저장소 사용" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL 루트 인증서" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "루트 인증서 가져오기" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 1e9bafe1871..793257c5f57 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 28fcc3a6a34..ebed72bb50c 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index bb66ab9ff6e..eb73b92baef 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+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" @@ -330,7 +330,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "{groupName} 삭제됨" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "실행 취소" @@ -354,27 +354,27 @@ msgstr "삭제" msgid "never" msgstr "없음" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "{userName} 삭제됨" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "그룹 추가" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "올바른 사용자 이름을 입력해야 함" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "사용자 생성 오류" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "올바른 암호를 입력해야 함" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "경고: 사용자 \"{user}\"의 홈 디렉터리가 이미 존재합니다" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 89f9bf88e58..3d9064fa60a 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "ده‌ستكاری" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "بوخچه" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "پاشکه‌وتده‌کات..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ku_IQ/files_external.po b/l10n/ku_IQ/files_external.po index 86c05106493..614292af19d 100644 --- a/l10n/ku_IQ/files_external.po +++ b/l10n/ku_IQ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "به‌كارهێنه‌ر" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 7f6fd80fbae..94846efa7fd 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 9279220122f..2b5b2d57692 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -150,78 +150,30 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Astellungen" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Fichier" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Dossier" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Speicheren..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "Sekonnen hir" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n Minutt hir" -msgstr[1] "%n Minutten hir" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "haut" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "gëschter" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "leschte Mount" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "Lescht Joer" - -#: js/js.js:1287 -msgid "years ago" -msgstr "Joren hir" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 1efab607942..3e063bb511e 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index 334ace31513..b7e0720780c 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "Perséinlech" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Gruppen" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Benotzer" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Läschen" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index d3f4801b3bf..6e4933107ac 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index dc6e3fb83d2..86802bf4836 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index a96168590dc..f00ac64771c 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+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" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "réckgängeg man" @@ -350,27 +350,27 @@ msgstr "Läschen" msgid "never" msgstr "ni" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 85b93a10fa2..2fdcb3f9eca 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -153,82 +153,30 @@ msgstr "Lapkritis" msgid "December" msgstr "Gruodis" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Nustatymai" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Failas" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Katalogas" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Saugoma..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "prieš sekundę" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] " prieš %n minutę" -msgstr[1] " prieš %n minučių" -msgstr[2] " prieš %n minučių" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "prieš %n valandą" -msgstr[1] "prieš %n valandų" -msgstr[2] "prieš %n valandų" - -#: js/js.js:1281 -msgid "today" -msgstr "šiandien" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "vakar" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "prieš %n dieną" -msgstr[1] "prieš %n dienas" -msgstr[2] "prieš %n dienų" - -#: js/js.js:1284 -msgid "last month" -msgstr "praeitą mėnesį" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "prieš %n mėnesį" -msgstr[1] "prieš %n mėnesius" -msgstr[2] "prieš %n mėnesių" - -#: js/js.js:1286 -msgid "last year" -msgstr "praeitais metais" - -#: js/js.js:1287 -msgid "years ago" -msgstr "prieš metus" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index f41bfc346b3..690c22472f3 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index f48144d2d3c..9ca921de9db 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -232,7 +232,15 @@ msgstr "Asmeniniai" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -301,39 +309,23 @@ msgstr "" msgid "Add storage" msgstr "Pridėti saugyklą" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Visi vartotojai" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupės" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Vartotojai" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Ištrinti" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Įjungti vartotojų išorines saugyklas" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL sertifikatas" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Įkelti pagrindinį sertifikatą" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 2bf47f184bf..034764edb16 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index c27cc81e0a7..c6a2e9936b4 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 4890b38624f..cf397890b34 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+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" @@ -331,7 +331,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "anuliuoti" @@ -355,27 +355,27 @@ msgstr "Ištrinti" msgid "never" msgstr "niekada" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "pridėti grupę" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Vartotojo vardas turi būti tinkamas" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Klaida kuriant vartotoją" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Slaptažodis turi būti tinkamas" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Įspėjimas: Vartotojo \"{user}\" namų aplankas jau egzistuoja" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 26701c1c867..2ceaba08f86 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -149,82 +149,30 @@ msgstr "Novembris" msgid "December" msgstr "Decembris" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Mape" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Saglabā..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "sekundes atpakaļ" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "Tagad, %n minūtes" -msgstr[1] "Pirms %n minūtes" -msgstr[2] "Pirms %n minūtēm" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "Šodien, %n stundas" -msgstr[1] "Pirms %n stundas" -msgstr[2] "Pirms %n stundām" - -#: js/js.js:1281 -msgid "today" -msgstr "šodien" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "vakar" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "Šodien, %n dienas" -msgstr[1] "Pirms %n dienas" -msgstr[2] "Pirms %n dienām" - -#: js/js.js:1284 -msgid "last month" -msgstr "pagājušajā mēnesī" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "Šomēnes, %n mēneši" -msgstr[1] "Pirms %n mēneša" -msgstr[2] "Pirms %n mēnešiem" - -#: js/js.js:1286 -msgid "last year" -msgstr "gājušajā gadā" - -#: js/js.js:1287 -msgid "years ago" -msgstr "gadus atpakaļ" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 609243ef151..b27a1061035 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index 989718a2f12..1c51f7d501e 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -232,7 +232,15 @@ msgstr "Personīgi" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -301,39 +309,23 @@ msgstr "" msgid "Add storage" msgstr "Pievienot krātuvi" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Visi lietotāji" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupas" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Lietotāji" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Dzēst" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Aktivēt lietotāja ārējo krātuvi" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL saknes sertifikāti" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importēt saknes sertifikātus" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 1934c45d750..1ac61c793f3 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index e963fd111ea..c8699cd186a 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index e578391a9c3..ab19a1de4c6 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+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" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "atsaukt" @@ -350,27 +350,27 @@ msgstr "Dzēst" msgid "never" msgstr "nekad" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "pievienot grupu" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Jānorāda derīgs lietotājvārds" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Kļūda, veidojot lietotāju" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Jānorāda derīga parole" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 5179dbeabd9..d84d678083d 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -149,78 +149,30 @@ msgstr "Ноември" msgid "December" msgstr "Декември" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Подесувања" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Папка" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Снимам..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "пред секунди" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "денеска" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "вчера" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "минатиот месец" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "минатата година" - -#: js/js.js:1287 -msgid "years ago" -msgstr "пред години" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index d5c7f6106bc..e9e50ad8fca 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index c01f5e6f4ad..2d381ebb616 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "Лично" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Снимено" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Сите корисници" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Групи" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Корисници" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Избриши" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Овозможи надворешни за корисници" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL root сертификати" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Увези" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index b707d80a246..3f060785f65 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 9a0bfbe4aed..d38177eb744 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 0f31782c373..b6ef9fdbb84 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+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" @@ -326,7 +326,7 @@ msgstr "Мора да се обезбеди валидно име на груп msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "врати" @@ -350,27 +350,27 @@ msgstr "Избриши" msgid "never" msgstr "никогаш" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "додади група" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Мора да се обезбеди валидно корисничко име " -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Грешка при креирање на корисникот" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Мора да се обезбеди валидна лозинка" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/ml/core.po b/l10n/ml/core.po index c41f631300d..c67847cef25 100644 --- a/l10n/ml/core.po +++ b/l10n/ml/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ml/files_external.po b/l10n/ml/files_external.po index f9bcf3c3b36..8a90058a0eb 100644 --- a/l10n/ml/files_external.po +++ b/l10n/ml/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ml_IN/core.po b/l10n/ml_IN/core.po index 0d92a4a3801..fe4aa587834 100644 --- a/l10n/ml_IN/core.po +++ b/l10n/ml_IN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ml_IN/files_external.po b/l10n/ml_IN/files_external.po index 51c893edb6d..352d803b5c8 100644 --- a/l10n/ml_IN/files_external.po +++ b/l10n/ml_IN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/mn/core.po b/l10n/mn/core.po index 063657f6abf..bc829f55340 100644 --- a/l10n/mn/core.po +++ b/l10n/mn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/mn/files_external.po b/l10n/mn/files_external.po index 30a6e2a5622..55c2de66f3d 100644 --- a/l10n/mn/files_external.po +++ b/l10n/mn/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 7a0b377fe67..f97db6a3925 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -148,74 +148,30 @@ msgstr "November" msgid "December" msgstr "Disember" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Tetapan" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Folder" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Simpan..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 087628b1728..38c9ec08977 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index 8fbd6f9a0ca..d92e7cc6485 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "Peribadi" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Kumpulan" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Pengguna" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Padam" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index 35006db6dad..dc87f52a384 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: ervinnnchai \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index ccf1cd07e35..43e360ca751 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index a1ea2a6db52..90d3d6edafd 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "Padam" msgid "never" msgstr "jangan" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index f39ff3adef4..a8b6ac5e912 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -148,74 +148,30 @@ msgstr "နိုဝင်ဘာ" msgid "December" msgstr "ဒီဇင်ဘာ" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "စက္ကန့်အနည်းငယ်က" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" - -#: js/js.js:1281 -msgid "today" -msgstr "ယနေ့" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "မနေ့က" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "ပြီးခဲ့သောလ" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "မနှစ်က" - -#: js/js.js:1287 -msgid "years ago" -msgstr "နှစ် အရင်က" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/my_MM/files_external.po b/l10n/my_MM/files_external.po index 27be55cdc57..a7129867c76 100644 --- a/l10n/my_MM/files_external.po +++ b/l10n/my_MM/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "သုံးစွဲသူ" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 6308d36b7fb..7ff5d973b9c 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" -"Last-Translator: vidaren \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -152,78 +152,30 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Innstillinger" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Fil" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Mappe" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Bilde" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Lagrer..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "for få sekunder siden" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "for %n minutt siden" -msgstr[1] "for %n minutter siden" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "for %n time siden" -msgstr[1] "for %n timer siden" - -#: js/js.js:1281 -msgid "today" -msgstr "i dag" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "i går" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "for %n dag siden" -msgstr[1] "for %n dager siden" - -#: js/js.js:1284 -msgid "last month" -msgstr "forrige måned" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "for %n måned siden" -msgstr[1] "for %n måneder siden" - -#: js/js.js:1286 -msgid "last year" -msgstr "i fjor" - -#: js/js.js:1287 -msgid "years ago" -msgstr "årevis siden" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Klarte ikke å sende e-post for tilbakestilling. Kontakt administratoren." diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 7b347574006..30852c5d7fa 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: vidaren \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index ebde36f2881..03a60d84162 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -234,7 +234,15 @@ msgstr "Personlig" msgid "System" msgstr "System" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Lagret" @@ -303,39 +311,23 @@ msgstr "Tilgjengelig for" msgid "Add storage" msgstr "Legg til lagringsplass" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Ingen bruker eller gruppe" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Alle brukere" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupper" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Brukere" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Slett" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Aktiver ekstern lagring for bruker" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Tillat brukere å koble opp følgende eksterne lagring" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL rotsertifikater" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importer rotsertifikat" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index 795beaa69dd..c74cfe1de0e 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index c29b108da4c..6ad3ea1808d 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: vidaren \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 9841c28a798..f59a5fb26c3 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: vidaren \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -329,7 +329,7 @@ msgstr "Et gyldig gruppenavn må oppgis" msgid "deleted {groupName}" msgstr "slettet {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "angre" @@ -353,27 +353,27 @@ msgstr "Slett" msgid "never" msgstr "aldri" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "slettet {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "legg til gruppe" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Oppgi et gyldig brukernavn" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Feil ved oppretting av bruker" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Oppgi et gyldig passord" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Advarsel: Hjemmemappe for bruker \"{user}\" eksisterer allerede" diff --git a/l10n/nds/core.po b/l10n/nds/core.po index 2efa3db5666..089bac612bb 100644 --- a/l10n/nds/core.po +++ b/l10n/nds/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/nds/files_external.po b/l10n/nds/files_external.po index 4002387fe24..99a88cb4859 100644 --- a/l10n/nds/files_external.po +++ b/l10n/nds/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ne/core.po b/l10n/ne/core.po index d2ec39638a3..8480df65dac 100644 --- a/l10n/ne/core.po +++ b/l10n/ne/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ne/files_external.po b/l10n/ne/files_external.po index f490c36b1ba..f940b6f552b 100644 --- a/l10n/ne/files_external.po +++ b/l10n/ne/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 481b8402793..d26f70bb2a1 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" -"Last-Translator: Koen Willems \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -151,78 +151,30 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Instellingen" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Bestand" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Map" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Afbeelding" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Opslaan" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "seconden geleden" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "%n minuten geleden" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "%n uur geleden" - -#: js/js.js:1281 -msgid "today" -msgstr "vandaag" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "gisteren" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "%n dagen geleden" - -#: js/js.js:1284 -msgid "last month" -msgstr "vorige maand" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "%n maanden geleden" - -#: js/js.js:1286 -msgid "last year" -msgstr "vorig jaar" - -#: js/js.js:1287 -msgid "years ago" -msgstr "jaar geleden" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Kon herstel e-mail niet versturen. Neem contact op met uw beheerder." diff --git a/l10n/nl/files.po b/l10n/nl/files.po index f2fd285a320..6009e554778 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 15ce6a304d2..2d35280384f 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -232,7 +232,15 @@ msgstr "Persoonlijk" msgid "System" msgstr "Systeem" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Bewaard" @@ -301,39 +309,23 @@ msgstr "Beschikbaar voor" msgid "Add storage" msgstr "Toevoegen opslag" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Geen gebruiker of groep" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Alle gebruikers" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Groepen" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Gebruikers" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Verwijder" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Externe opslag voor gebruikers activeren" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Sta gebruikers toe de volgende externe opslag aan te koppelen" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL root certificaten" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importeer root certificaat" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 5e9f66f7ffa..82d3d64083b 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 9056b655ab3..a8428b2a5e4 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 083b7d1adf2..663ed6f712f 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: Koen Willems \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -329,7 +329,7 @@ msgstr "Er moet een geldige groepsnaam worden opgegeven" msgid "deleted {groupName}" msgstr "verwijderd {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "ongedaan maken" @@ -353,27 +353,27 @@ msgstr "Verwijder" msgid "never" msgstr "geen" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "verwijderd {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "toevoegen groep" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Er moet een geldige gebruikersnaam worden opgegeven" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Fout bij aanmaken gebruiker" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Er moet een geldig wachtwoord worden opgegeven" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Waarschuwing: Home directory voor gebruiker \"{user}\" bestaat al" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index f2c40f31f3e..f5241ef7190 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" -"Last-Translator: Kevin Brubeck Unhammer \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -152,78 +152,30 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Innstillingar" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Mappe" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Lagrar …" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "sekund sidan" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n minutt sidan" -msgstr[1] "%n minutt sidan" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n time sidan" -msgstr[1] "%n timar sidan" - -#: js/js.js:1281 -msgid "today" -msgstr "i dag" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "i går" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n dag sidan" -msgstr[1] "%n dagar sidan" - -#: js/js.js:1284 -msgid "last month" -msgstr "førre månad" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n månad sidan" -msgstr[1] "%n månadar sidan" - -#: js/js.js:1286 -msgid "last year" -msgstr "i fjor" - -#: js/js.js:1287 -msgid "years ago" -msgstr "år sidan" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index e2e5a911415..21f49a72c98 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index f715a77d310..a0bd44497c6 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "Personleg" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupper" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Brukarar" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Slett" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index ad8cdc45934..a8b451bcc2b 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 4ce735bfcac..f8231de9ac4 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 9d56f93a2da..7675daa7754 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+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" @@ -328,7 +328,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "angra" @@ -352,27 +352,27 @@ msgstr "Slett" msgid "never" msgstr "aldri" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "legg til gruppe" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Du må oppgje eit gyldig brukarnamn" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Feil ved oppretting av brukar" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Du må oppgje eit gyldig passord" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/nqo/core.po b/l10n/nqo/core.po index 1afed8ba6b5..f06abdd5011 100644 --- a/l10n/nqo/core.po +++ b/l10n/nqo/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -148,74 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/nqo/files_external.po b/l10n/nqo/files_external.po index db9b13e14d2..40313a0cf16 100644 --- a/l10n/nqo/files_external.po +++ b/l10n/nqo/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 20b1c1ddc16..6a8a740ae98 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Configuracion" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Dorsièr" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Enregistra..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "segonda a" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "uèi" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ièr" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "mes passat" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "an passat" - -#: js/js.js:1287 -msgid "years ago" -msgstr "ans a" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 984c3da5531..582e5bcd3e6 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index c542799b0ad..57e5b278db5 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "Personal" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grops" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Usancièrs" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Escafa" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 1b6fc20e59c..2d7b9af88f0 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 9efe06d9bfe..b8e3fa8b5b9 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index ca72fb98518..848f79e9376 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "defar" @@ -349,27 +349,27 @@ msgstr "Escafa" msgid "never" msgstr "jamai" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/or_IN/core.po b/l10n/or_IN/core.po index e52633e44af..6e5d0343cb4 100644 --- a/l10n/or_IN/core.po +++ b/l10n/or_IN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/or_IN/files_external.po b/l10n/or_IN/files_external.po index c2f9ab6090b..1d095c72ba4 100644 --- a/l10n/or_IN/files_external.po +++ b/l10n/or_IN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/pa/core.po b/l10n/pa/core.po index 86ddef639b8..316b68ace51 100644 --- a/l10n/pa/core.po +++ b/l10n/pa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -149,78 +149,30 @@ msgstr "ਨਵੰਬ" msgid "December" msgstr "ਦਸੰਬਰ" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "ਸੈਟਿੰਗ" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "...ਸੰਭਾਲਿਆ ਜਾ ਰਿਹਾ ਹੈ" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "ਸਕਿੰਟ ਪਹਿਲਾਂ" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "ਅੱਜ" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ਕੱਲ੍ਹ" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "ਪਿਛਲੇ ਮਹੀਨੇ" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "ਪਿਛਲੇ ਸਾਲ" - -#: js/js.js:1287 -msgid "years ago" -msgstr "ਸਾਲਾਂ ਪਹਿਲਾਂ" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/pa/files.po b/l10n/pa/files.po index 421b3c21cec..b12131698cc 100644 --- a/l10n/pa/files.po +++ b/l10n/pa/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pa/files_external.po b/l10n/pa/files_external.po index 65ee2aaf5bf..4bc1ab7e033 100644 --- a/l10n/pa/files_external.po +++ b/l10n/pa/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "ਗਰੁੱਪ" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "ਹਟਾਓ" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/pa/files_trashbin.po b/l10n/pa/files_trashbin.po index 3ac5c7f9263..c8cc97ef6a3 100644 --- a/l10n/pa/files_trashbin.po +++ b/l10n/pa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pa/lib.po b/l10n/pa/lib.po index 0c7c6a77909..4bc61afc079 100644 --- a/l10n/pa/lib.po +++ b/l10n/pa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pa/settings.po b/l10n/pa/settings.po index 65207763e85..d7649e265e7 100644 --- a/l10n/pa/settings.po +++ b/l10n/pa/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "ਵਾਪਸ" @@ -350,27 +350,27 @@ msgstr "ਹਟਾਓ" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "ਗਰੁੱਪ ਸ਼ਾਮਲ" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index d0a62734e1d..f59b45781d7 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" -"Last-Translator: Maciej Przybecki \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -153,82 +153,30 @@ msgstr "Listopad" msgid "December" msgstr "Grudzień" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Plik" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Folder" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Obraz" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Dźwięk" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Zapisywanie..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "sekund temu" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n minute temu" -msgstr[1] "%n minut temu" -msgstr[2] "%n minut temu" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n godzine temu" -msgstr[1] "%n godzin temu" -msgstr[2] "%n godzin temu" - -#: js/js.js:1281 -msgid "today" -msgstr "dziś" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "wczoraj" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n dzień temu" -msgstr[1] "%n dni temu" -msgstr[2] "%n dni temu" - -#: js/js.js:1284 -msgid "last month" -msgstr "w zeszłym miesiącu" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n miesiąc temu" -msgstr[1] "%n miesięcy temu" -msgstr[2] "%n miesięcy temu" - -#: js/js.js:1286 -msgid "last year" -msgstr "w zeszłym roku" - -#: js/js.js:1287 -msgid "years ago" -msgstr "lat temu" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Nie mogę wysłać maila resetującego. Skontaktuj się z administratorem." diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 888b731ccf5..821783f84dd 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: Maciej Przybecki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 17f758cffdc..d7fdf568aa7 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" -"Last-Translator: Krzysztof Łojowski \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -234,7 +234,15 @@ msgstr "Osobiste" msgid "System" msgstr "System" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Zapisano" @@ -303,39 +311,23 @@ msgstr "Dostępne przez" msgid "Add storage" msgstr "Dodaj zasoby dyskowe" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Brak użytkownika lub grupy" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Wszyscy uzytkownicy" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupy" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Użytkownicy" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Usuń" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Włącz zewnętrzne zasoby dyskowe użytkownika" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Pozwól użytkownikom montować następujące zewnętrzne zasoby dyskowe" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Główny certyfikat SSL" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importuj główny certyfikat" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 967abb4c2d4..5a3230c288d 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: Maciej Przybecki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 7132204a8dd..952557d917e 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 270614b3fa2..f514dee55ea 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: Maciej Przybecki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -331,7 +331,7 @@ msgstr "Należy podać prawidłową nazwę grupy" msgid "deleted {groupName}" msgstr "usunięto {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "cofnij" @@ -355,27 +355,27 @@ msgstr "Usuń" msgid "never" msgstr "nigdy" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "usunięto {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "dodaj grupę" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Należy podać prawidłową nazwę użytkownika" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Błąd podczas tworzenia użytkownika" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Należy podać prawidłowe hasło" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Ostrzeżenie: Katalog domowy dla użytkownika \"{user}\" już istnieje" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index df22b78a56e..817e3fc4f2f 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -151,78 +151,30 @@ msgstr "Novembro" msgid "December" msgstr "Dezembro" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Configurações" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Arquivo" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Pasta" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Imagem" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Salvando..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "segundos atrás" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] " há %n minuto" -msgstr[1] "há %n minutos" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "há %n hora" -msgstr[1] "há %n horas" - -#: js/js.js:1281 -msgid "today" -msgstr "hoje" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ontem" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "há %n dia" -msgstr[1] "há %n dias" - -#: js/js.js:1284 -msgid "last month" -msgstr "último mês" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "há %n mês" -msgstr[1] "há %n meses" - -#: js/js.js:1286 -msgid "last year" -msgstr "último ano" - -#: js/js.js:1287 -msgid "years ago" -msgstr "anos atrás" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Não foi possível enviar e-mail de redefinição. Por favor, contate o administrador." diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index baa5648788e..3597fc82ea0 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: dudanogueira \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index b84c740f4da..ace5979c10f 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -232,7 +232,15 @@ msgstr "Pessoal" msgid "System" msgstr "Sistema" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Salvo" @@ -301,39 +309,23 @@ msgstr "Disponível para" msgid "Add storage" msgstr "Adicionar Armazenamento" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Nenhum usuário ou grupo" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Todos os Usuários" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupos" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Usuários" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Excluir" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Habilitar Armazenamento Externo do Usuário" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Permitir que usuários montem o seguinte armazenamento externo" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Certificados SSL raíz" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importar Certificado Raíz" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 690dcaadd5a..d77370da82d 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 6f5cde2845c..7217d53e753 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 3ba5dbc254d..9b4c06f33dd 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -328,7 +328,7 @@ msgstr "Um nome de grupo válido deve ser fornecido" msgid "deleted {groupName}" msgstr "eliminado {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "desfazer" @@ -352,27 +352,27 @@ msgstr "Excluir" msgid "never" msgstr "nunca" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "eliminado {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "adicionar grupo" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Forneça um nome de usuário válido" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Erro ao criar usuário" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Forneça uma senha válida" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Aviso: O diretório home para o usuário \"{user}\" já existe" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 9cd63ec6805..8bfad028d88 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,7 +52,7 @@ msgstr "Atualização do esquema da base de dados verificada." #: ajax/update.php:22 msgid "Checked database schema update for apps" -msgstr "" +msgstr "Atualização do esquema da base de dados verificada." #: ajax/update.php:25 #, php-format @@ -160,78 +160,30 @@ msgstr "Novembro" msgid "December" msgstr "Dezembro" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Configurações" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Ficheiro" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Pasta" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Imagem" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "A guardar..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "Minutos atrás" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n minuto atrás" -msgstr[1] "%n minutos atrás" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n hora atrás" -msgstr[1] "%n horas atrás" - -#: js/js.js:1281 -msgid "today" -msgstr "hoje" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ontem" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n dia atrás" -msgstr[1] "%n dias atrás" - -#: js/js.js:1284 -msgid "last month" -msgstr "ultímo mês" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n mês atrás" -msgstr[1] "%n meses atrás" - -#: js/js.js:1286 -msgid "last year" -msgstr "ano passado" - -#: js/js.js:1287 -msgid "years ago" -msgstr "anos atrás" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Ocorreu um problema com o envio do e-mail, por favor contactar o administrador." @@ -869,7 +821,7 @@ msgstr "Por favor contacte o seu administrador. Se é um administrador desta ins msgid "" "Depending on your configuration, as an administrator you might also be able " "to use the button below to trust this domain." -msgstr "" +msgstr "Dependendo da configuração, como administrador, você também pode ser capaz de usar o botão abaixo para confiar neste domínio." #: templates/untrustedDomain.php:14 #, php-format @@ -904,7 +856,7 @@ msgstr "Iniciar atualização" msgid "" "To avoid timeouts with larger installations, you can instead run the " "following command from your installation directory:" -msgstr "" +msgstr "Para evitar tempos de espera com instalações maiores, você pode em vez disso, executar o seguinte comando a partir do diretório de instalação:" #: templates/update.user.php:3 msgid "" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index b69ad3a73bb..c33fb26517d 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index cde59315e42..871c98476eb 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -237,7 +237,15 @@ msgstr "Pessoal" msgid "System" msgstr "Sistema" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Guardado" @@ -306,39 +314,23 @@ msgstr "Disponível para " msgid "Add storage" msgstr "Adicionar armazenamento" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Sem utilizador nem grupo" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Todos os utilizadores" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupos" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Utilizadores" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Eliminar" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Activar Armazenamento Externo para o Utilizador" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Permitir que os utilizadores montem o seguinte armazenamento externo" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Certificados SSL de raiz" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importar Certificado Root" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 77db1615b89..4e84d511f49 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index e24064eb7e9..1c609f28548 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"Last-Translator: Nelson Rosado \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" @@ -49,14 +49,14 @@ msgstr "Isto pode ser resolvido normalmente %sdando ao servidor web direitos de #: base.php:578 msgid "Sample configuration detected" -msgstr "" +msgstr "Exemplo de configuração detectada" #: base.php:579 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " "before performing changes on config.php" -msgstr "" +msgstr "Foi detectado que a configuração de amostra foi copiada. Isso pode danificar a sua instalação e não é suportado. Por favor, leia a documentação antes de realizar mudanças no config.php" #: private/app.php:374 msgid "Help" @@ -529,7 +529,7 @@ msgstr "Definindo local para %s falhado" msgid "" "Please install one of these locales on your system and restart your " "webserver." -msgstr "" +msgstr "Por favor instale um destes locais no seu sistema e reinicie o seu servidor web." #: private/util.php:494 msgid "Please ask your server administrator to install the module." diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 0ef3bd11ce9..c279275a163 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"Last-Translator: Nelson Rosado \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" @@ -207,11 +207,11 @@ msgstr "Não foi possível alterar a sua password" #: js/admin.js:45 msgid "Are you really sure you want add \"{domain}\" as trusted domain?" -msgstr "" +msgstr "Você tem certeza que quer adicionar \"{domain}\" como domínio confiável?" #: js/admin.js:46 msgid "Add trusted domain" -msgstr "" +msgstr "Adicionar domínio confiável " #: js/admin.js:146 msgid "Sending..." @@ -337,7 +337,7 @@ msgstr "Um nome válido do grupo tem de ser fornecido" msgid "deleted {groupName}" msgstr "apagar {Nome do grupo}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "desfazer" @@ -361,27 +361,27 @@ msgstr "Eliminar" msgid "never" msgstr "nunca" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "apagar{utilizador}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "Adicionar grupo" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Um nome de utilizador válido deve ser fornecido" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Erro a criar utilizador" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Uma password válida deve ser fornecida" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Atenção: a pasta pessoal do utilizador \"{user}\" já existe" @@ -514,14 +514,14 @@ msgstr "A sua versão do PHP está ultrapassada. Recomendamos que actualize para #: templates/admin.php:151 msgid "PHP charset is not set to UTF-8" -msgstr "" +msgstr "PHP charset não está definido para UTF-8" #: templates/admin.php:154 msgid "" "PHP charset is not set to UTF-8. This can cause major issues with non-ASCII " "characters in file names. We highly recommend to change the value of " "'default_charset' php.ini to 'UTF-8'." -msgstr "" +msgstr "PHP charset não está definido como UTF-8. Isso pode causar grandes problemas com caracteres não-ASCII em nomes de arquivo. Recomendamos para alterar o valor de php.ini 'default_charset' para 'UTF-8'." #: templates/admin.php:165 msgid "Locale not working" @@ -559,7 +559,7 @@ msgstr "Este servidor ownCloud não tem uma ligação de internet a funcionar. I #: templates/admin.php:203 msgid "URL generation in notification emails" -msgstr "" +msgstr "Geração URL em e-mails de notificação" #: templates/admin.php:206 #, php-format @@ -568,7 +568,7 @@ msgid "" "system cron, there can be issues with the URL generation. To avoid these " "problems, please set the \"overwritewebroot\" option in your config.php file" " to the webroot path of your installation (Suggested: \"%s\")" -msgstr "" +msgstr "Se a sua instalação não está instalada na raiz do domínio e usa o sistema cron, pode haver problemas com a geração de URL. Para evitar esses problemas, por favor, defina a opção \"overwritewebroot\" no ficheiro config.php para o caminho webroot da sua instalação (sugestão: \"%s\")" #: templates/admin.php:220 msgid "Cron" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index a80a849ef70..5e107a0cd9f 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -154,82 +154,30 @@ msgstr "Noiembrie" msgid "December" msgstr "Decembrie" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Setări" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Fişier " -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Dosar" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Imagine" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Se salvează..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "secunde în urmă" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "acum %n minut" -msgstr[1] "acum %n minute" -msgstr[2] "acum %n minute" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "acum %n oră" -msgstr[1] "acum %n ore" -msgstr[2] "acum %n ore" - -#: js/js.js:1281 -msgid "today" -msgstr "astăzi" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ieri" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "acum %n zi" -msgstr[1] "acum %n zile" -msgstr[2] "acum %n zile" - -#: js/js.js:1284 -msgid "last month" -msgstr "ultima lună" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "%n luni în urmă" - -#: js/js.js:1286 -msgid "last year" -msgstr "ultimul an" - -#: js/js.js:1287 -msgid "years ago" -msgstr "ani în urmă" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 48cbb8e80ad..09b91f43d14 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index a0146241569..836603ceab0 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -233,7 +233,15 @@ msgstr "Personal" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Salvat" @@ -302,39 +310,23 @@ msgstr "" msgid "Add storage" msgstr "Adauga stocare" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Toți utilizatorii" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupuri" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Utilizatori" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Șterge" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Permite stocare externă pentru utilizatori" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Permite utilizatorilor să monteze următoarea unitate de stocare" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Certificate SSL root" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importă certificat root" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 8f469462855..83c2663d526 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index c60433645ca..69c81ddfbd3 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index ede63dbc006..33d3a73064d 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+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" @@ -328,7 +328,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "Anulează ultima acțiune" @@ -352,27 +352,27 @@ msgstr "Șterge" msgid "never" msgstr "niciodată" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "adăugaţi grupul" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Trebuie să furnizaţi un nume de utilizator valid" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Eroare la crearea utilizatorului" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Trebuie să furnizaţi o parolă validă" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Avertizare: Dosarul Acasă pentru utilizatorul \"{user}\" deja există" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 85f4c1209b0..d1b96c10485 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -33,9 +33,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" -"Last-Translator: sad2shade \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -174,82 +174,30 @@ msgstr "Ноябрь" msgid "December" msgstr "Декабрь" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Настройки" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Файл" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Каталог" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Изображение" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Аудио" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Сохранение..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "только что" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n минуту назад" -msgstr[1] "%n минуты назад" -msgstr[2] "%n минут назад" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n час назад" -msgstr[1] "%n часа назад" -msgstr[2] "%n часов назад" - -#: js/js.js:1281 -msgid "today" -msgstr "сегодня" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "вчера" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n день назад" -msgstr[1] "%n дня назад" -msgstr[2] "%n дней назад" - -#: js/js.js:1284 -msgid "last month" -msgstr "месяц назад" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n месяц назад" -msgstr[1] "%n месяца назад" -msgstr[2] "%n месяцев назад" - -#: js/js.js:1286 -msgid "last year" -msgstr "год назад" - -#: js/js.js:1287 -msgid "years ago" -msgstr "несколько лет назад" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Не удалось отправить письмо для сброса пароля. Пожалуйста, свяжитесь с вашим администратором." diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 4d1e18b21cb..1a9db594d12 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -25,8 +25,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: sad2shade \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index ddb58e90fee..909008d131b 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" -"Last-Translator: wiracle\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -240,7 +240,15 @@ msgstr "Личное" msgid "System" msgstr "Система" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Сохранено" @@ -309,39 +317,23 @@ msgstr "Доступно для" msgid "Add storage" msgstr "Добавить хранилище" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Нет пользователя или группы" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Все пользователи" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Группы" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Пользователи" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Удалить" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Включить пользовательские внешние носители" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Разрешить пользователям монтировать следующее внешнее хранилище данных" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Корневые сертификаты SSL" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Импортировать корневые сертификаты" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index f2ab953ae52..6ad4323effb 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index db4b0a31f09..f07f7222e82 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: sad2shade \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 822021204dd..54ca1645789 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -32,8 +32,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: sad2shade \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -350,7 +350,7 @@ msgstr "Введите правильное имя группы" msgid "deleted {groupName}" msgstr "удалено {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "отмена" @@ -374,27 +374,27 @@ msgstr "Удалить" msgid "never" msgstr "никогда" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "удалён {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "добавить группу" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Укажите правильное имя пользователя" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Ошибка создания пользователя" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Укажите валидный пароль" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Предупреждение: домашняя папка пользователя \"{user}\" уже существует" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index aa645222f3e..5888feaa2ef 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "නොවැම්බර්" msgid "December" msgstr "දෙසැම්බර්" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "සිටුවම්" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "ෆෝල්ඩරය" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "පින්තූරය" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "සුරැකෙමින් පවතී..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "තත්පරයන්ට පෙර" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "අද" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ඊයේ" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "පෙර මාසයේ" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "පෙර අවුරුද්දේ" - -#: js/js.js:1287 -msgid "years ago" -msgstr "අවුරුදු කීපයකට පෙර" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 93e23d86a1a..15f80bfb0d5 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index 7e0f08b2f0d..928f8516b87 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "පෞද්ගලික" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "සියළු පරිශීලකයන්" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "කණ්ඩායම්" - -#: templates/settings.php:106 -msgid "Users" -msgstr "පරිශීලකයන්" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "මකා දමන්න" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "පරිශීලක භාහිර ගබඩාවන් සක්‍රිය කරන්න" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL මූල සහතිකයන්" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "මූල සහතිකය ආයාත කරන්න" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index 563eac8afe1..4a37b94f797 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 97b06129f3a..08f19611abc 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index d273705e3f2..247b479dc0d 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "නිෂ්ප්‍රභ කරන්න" @@ -349,27 +349,27 @@ msgstr "මකා දමන්න" msgid "never" msgstr "කවදාවත්" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/sk/core.po b/l10n/sk/core.po index 46377407232..41d72125351 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -148,82 +148,30 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/sk/files.po b/l10n/sk/files.po index 5b7bd0ee557..ee3e1e1cfdd 100644 --- a/l10n/sk/files.po +++ b/l10n/sk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/files_external.po b/l10n/sk/files_external.po index 9fd1be7c12d..f8331a9e456 100644 --- a/l10n/sk/files_external.po +++ b/l10n/sk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "Osobné" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Odstrániť" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/sk/files_trashbin.po b/l10n/sk/files_trashbin.po index 0788de3233d..40f89a2ea23 100644 --- a/l10n/sk/files_trashbin.po +++ b/l10n/sk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index a01af22fa90..68be5332c3e 100644 --- a/l10n/sk/lib.po +++ b/l10n/sk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po index 15603fa8073..159c5c4422c 100644 --- a/l10n/sk/settings.po +++ b/l10n/sk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "Odstrániť" msgid "never" msgstr "nikdy" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index eaeda539caa..d84d1cb2543 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -150,82 +150,30 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Súbor" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Priečinok" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Obrázok" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Zvuk" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Ukladám..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "pred sekundami" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "pred %n minútou" -msgstr[1] "pred %n minútami" -msgstr[2] "pred %n minútami" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "pred %n hodinou" -msgstr[1] "pred %n hodinami" -msgstr[2] "pred %n hodinami" - -#: js/js.js:1281 -msgid "today" -msgstr "dnes" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "včera" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "pred %n dňom" -msgstr[1] "pred %n dňami" -msgstr[2] "pred %n dňami" - -#: js/js.js:1284 -msgid "last month" -msgstr "minulý mesiac" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "pred %n mesiacom" -msgstr[1] "pred %n mesiacmi" -msgstr[2] "pred %n mesiacmi" - -#: js/js.js:1286 -msgid "last year" -msgstr "minulý rok" - -#: js/js.js:1287 -msgid "years ago" -msgstr "pred rokmi" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Nemožno poslať email pre obnovu. Kontaktujte prosím vášho administrátora." diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 324f0ca1135..1ce183b190a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 03eb1a465cb..44c991098d8 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" -"Last-Translator: helix84 \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -233,7 +233,15 @@ msgstr "Osobné" msgid "System" msgstr "Systém" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Uložené" @@ -302,39 +310,23 @@ msgstr "K dispozícii pre" msgid "Add storage" msgstr "Pridať úložisko" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Žiadny používateľ alebo skupina" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Všetci používatelia" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Skupiny" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Používatelia" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Zmazať" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Povoliť externé úložisko" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Povoliť používateľom pripojiť tieto externé úložiská" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Koreňové SSL certifikáty" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importovať koreňový certifikát" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 3581df01fa4..b56b94d8ec5 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: Marián Hvolka \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 88cc2035cec..d1444570461 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index ad063292c06..504a0041695 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+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" @@ -328,7 +328,7 @@ msgstr "Musíte zadať platný názov skupiny" msgid "deleted {groupName}" msgstr "vymazaná {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "vrátiť" @@ -352,27 +352,27 @@ msgstr "Zmazať" msgid "never" msgstr "nikdy" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "vymazané {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "pridať skupinu" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Musíte zadať platné používateľské meno" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Chyba pri vytváraní používateľa" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Musíte zadať platné heslo" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Upozornenie: Domovský priečinok používateľa \"{user}\" už existuje" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 7498084455e..a38a4adf678 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" -"Last-Translator: Matej Urbančič <>\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -150,86 +150,30 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Datoteka" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Mapa" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Slika" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Zvok" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Poteka shranjevanje ..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "pred nekaj sekundami" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "pred %n minuto" -msgstr[1] "pred %n minutama" -msgstr[2] "pred %n minutami" -msgstr[3] "pred %n minutami" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "pred %n uro" -msgstr[1] "pred %n urama" -msgstr[2] "pred %n urami" -msgstr[3] "pred %n urami" - -#: js/js.js:1281 -msgid "today" -msgstr "danes" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "včeraj" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "pred %n dnevom" -msgstr[1] "pred %n dnevoma" -msgstr[2] "pred %n dnevi" -msgstr[3] "pred %n dnevi" - -#: js/js.js:1284 -msgid "last month" -msgstr "zadnji mesec" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "pred %n mesecem" -msgstr[1] "pred %n mesecema" -msgstr[2] "pred %n meseci" -msgstr[3] "pred %n meseci" - -#: js/js.js:1286 -msgid "last year" -msgstr "lansko leto" - -#: js/js.js:1287 -msgid "years ago" -msgstr "let nazaj" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Ni mogoče nastaviti elektronskega naslova za ponastavitev. Stopite v stik s skrbnikom sistema." diff --git a/l10n/sl/files.po b/l10n/sl/files.po index fc098325a3e..7d2a85b81fd 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 47ea9eb3d29..9190ecc4d1e 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" -"Last-Translator: Matej Urbančič <>\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -232,7 +232,15 @@ msgstr "Osebno" msgid "System" msgstr "Sistem" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Shranjeno" @@ -301,39 +309,23 @@ msgstr "Na voljo za" msgid "Add storage" msgstr "Dodaj shrambo" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Ni uporabnika ali skupine" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Vsi uporabniki" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Skupine" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Uporabniki" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Izbriši" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Omogoči zunanjo uporabniško podatkovno shrambo" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Dovoli uporabnikom priklapljanje navedenih zunanjih shramb." -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Korenska potrdila SSL" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Uvozi korensko potrdilo" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index aea3c5e81d5..a9a30f3595d 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 3fd3ad8b220..799198b33c5 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index f29a976c938..a4e89454332 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: Matej Urbančič <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -327,7 +327,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "razveljavi" @@ -351,27 +351,27 @@ msgstr "Izbriši" msgid "never" msgstr "nikoli" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "dodaj skupino" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Navedeno mora biti veljavno uporabniško ime" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Napaka ustvarjanja uporabnika" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Navedeno mora biti veljavno geslo" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Opozorilo: osebna mapa uporabnika \"{user}\" že obstaja" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 633cbd9c28a..33a36a9bcc0 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -150,78 +150,30 @@ msgstr "Nëntor" msgid "December" msgstr "Dhjetor" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Parametra" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Dosje" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Duke ruajtur..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "sekonda më parë" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n minut më parë" -msgstr[1] "%n minuta më parë" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n orë më parë" -msgstr[1] "%n orë më parë" - -#: js/js.js:1281 -msgid "today" -msgstr "sot" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "dje" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n ditë më parë" -msgstr[1] "%n ditë më parë" - -#: js/js.js:1284 -msgid "last month" -msgstr "muajin e shkuar" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n muaj më parë" -msgstr[1] "%n muaj më parë" - -#: js/js.js:1286 -msgid "last year" -msgstr "vitin e shkuar" - -#: js/js.js:1287 -msgid "years ago" -msgstr "vite më parë" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 5c0f60770c7..30bc6f18d23 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index 4d66331c879..a79055c719c 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "Personale" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "U ruajt" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupet" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Përdoruesit" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Elimino" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index f8a8063a55d..2481622c2a9 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 302448b0f47..266c01f44c0 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 591d0af50ba..9a3eeefbb72 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "u fshi {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "anullo veprimin" @@ -350,27 +350,27 @@ msgstr "Fshi" msgid "never" msgstr "asnjëherë" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "u fshi {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "shto grup" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Duhet të jepni një emër të vlefshëm përdoruesi" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Gabim gjatë krijimit të përdoruesit" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Duhet të jepni një fjalëkalim te vlefshëm" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 7b22779db3d..00a179dcbaf 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -148,82 +148,30 @@ msgstr "Новембар" msgid "December" msgstr "Децембар" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Поставке" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "фасцикла" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Чување у току..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "пре неколико секунди" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1281 -msgid "today" -msgstr "данас" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "јуче" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "прошлог месеца" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "прошле године" - -#: js/js.js:1287 -msgid "years ago" -msgstr "година раније" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index ee8abbe0ec6..73ced54750f 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index ac445f770a0..312642d540f 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "Лично" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Групе" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Корисници" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Обриши" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index edc3c3f80f3..8f606276be0 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 2b818758f85..77726188469 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 4179e352aa8..f814ab0a8c5 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "опозови" @@ -349,27 +349,27 @@ msgstr "Обриши" msgid "never" msgstr "никада" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "додај групу" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Морате унети исправно корисничко име" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Грешка при прављењу корисника" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Морате унети исправну лозинку" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index c6ca6ee55f9..3674e90373f 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -151,82 +151,30 @@ msgstr "Novembar" msgid "December" msgstr "Decembar" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Podešavanja" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Fajl" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Direktorijum" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Slika" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "Pre par sekundi" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "pre %n minuta" -msgstr[1] "pre %n minuta" -msgstr[2] "pre %n minuta" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "pre %n sat" -msgstr[1] "pre %n sati" -msgstr[2] "pre %n sati" - -#: js/js.js:1281 -msgid "today" -msgstr "Danas" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "juče" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "Pre %n dan." -msgstr[1] "Pre %n dana." -msgstr[2] "Pre %n dana." - -#: js/js.js:1284 -msgid "last month" -msgstr "prošlog meseca" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "prošle godine" - -#: js/js.js:1287 -msgid "years ago" -msgstr "pre nekoliko godina" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index a86c6dc4c8b..003da16a8e0 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index 55b11511770..67f371b09d9 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "Lično" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupe" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Korisnici" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Obriši" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 9e82d6de6ea..6c4b4037b0a 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 2d24b60a598..9008c9478ec 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 5628d042039..25a0e098732 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "Obriši" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/su/core.po b/l10n/su/core.po index 1fb887bf7c3..48f3d3bf194 100644 --- a/l10n/su/core.po +++ b/l10n/su/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -148,74 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/su/files_external.po b/l10n/su/files_external.po index 11c327e5770..c970650ddef 100644 --- a/l10n/su/files_external.po +++ b/l10n/su/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 595db157eb5..1815f91accb 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -157,78 +157,30 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Inställningar" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Fil" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Mapp" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Bild" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Ljud" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Sparar..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "sekunder sedan" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n minut sedan" -msgstr[1] "%n minuter sedan" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n timme sedan" -msgstr[1] "%n timmar sedan" - -#: js/js.js:1281 -msgid "today" -msgstr "i dag" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "i går" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n dag sedan" -msgstr[1] "%n dagar sedan" - -#: js/js.js:1284 -msgid "last month" -msgstr "förra månaden" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n månad sedan" -msgstr[1] "%n månader sedan" - -#: js/js.js:1286 -msgid "last year" -msgstr "förra året" - -#: js/js.js:1287 -msgid "years ago" -msgstr "år sedan" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Kunde inte skicka återställningsmail. Vänligen kontakta din administratör." diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 22001817bae..8165d962da2 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index f58b4655c50..705b710fac6 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -237,7 +237,15 @@ msgstr "Personligt" msgid "System" msgstr "System" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Sparad" @@ -306,39 +314,23 @@ msgstr "Tillgänglig för" msgid "Add storage" msgstr "Lägg till lagring" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Ingen användare eller grupp" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Alla användare" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupper" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Användare" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Radera" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Aktivera extern lagring för användare" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Tillåt användare att montera följande extern lagring" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL rotcertifikat" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importera rotcertifikat" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 2ca283bda67..f03fc96e615 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index ec31781ed6e..a41bb0d6353 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 5088ba3b35b..46599364e26 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+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" @@ -338,7 +338,7 @@ msgstr "Ett giltigt gruppnamn måste anges" msgid "deleted {groupName}" msgstr "raderade {groupName} " -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "ångra" @@ -362,27 +362,27 @@ msgstr "Radera" msgid "never" msgstr "aldrig" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "raderade {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "lägg till grupp" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Ett giltigt användarnamn måste anges" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Fel vid skapande av användare" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Ett giltigt lösenord måste anges" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Varning: Hem katalogen för varje användare \"{användare}\" finns redan" diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index 59ac8a99153..6b5f70abfda 100644 --- a/l10n/sw_KE/core.po +++ b/l10n/sw_KE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/sw_KE/files_external.po b/l10n/sw_KE/files_external.po index 2e3e59ef264..3c2762b69ae 100644 --- a/l10n/sw_KE/files_external.po +++ b/l10n/sw_KE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ta_IN/core.po b/l10n/ta_IN/core.po index 5953db9f078..3f80e1019ac 100644 --- a/l10n/ta_IN/core.po +++ b/l10n/ta_IN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (India) (http://www.transifex.com/projects/p/owncloud/language/ta_IN/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ta_IN/files_external.po b/l10n/ta_IN/files_external.po index 18c7482b583..45d259ec1d5 100644 --- a/l10n/ta_IN/files_external.po +++ b/l10n/ta_IN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (India) (http://www.transifex.com/projects/p/owncloud/language/ta_IN/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ta_IN/lib.po b/l10n/ta_IN/lib.po index 752175ffb86..3b4e987f94c 100644 --- a/l10n/ta_IN/lib.po +++ b/l10n/ta_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (India) (http://www.transifex.com/projects/p/owncloud/language/ta_IN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_IN/settings.po b/l10n/ta_IN/settings.po index a5157ca1efb..4316c78d89d 100644 --- a/l10n/ta_IN/settings.po +++ b/l10n/ta_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (India) (http://www.transifex.com/projects/p/owncloud/language/ta_IN/)\n" "MIME-Version: 1.0\n" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index dab80dba8df..954b369343d 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "கார்த்திகை" msgid "December" msgstr "மார்கழி" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "கோப்புறை" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "சேமிக்கப்படுகிறது..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "செக்கன்களுக்கு முன்" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "இன்று" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "நேற்று" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "கடந்த மாதம்" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "கடந்த வருடம்" - -#: js/js.js:1287 -msgid "years ago" -msgstr "வருடங்களுக்கு முன்" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 57f9aa46e57..eb3651b10bf 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index 380efde1e9c..a7080cae5fd 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "தனிப்பட்ட" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "பயனாளர்கள் எல்லாம்" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "குழுக்கள்" - -#: templates/settings.php:106 -msgid "Users" -msgstr "பயனாளர்" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "நீக்குக" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "பயனாளர் வெளி சேமிப்பை இயலுமைப்படுத்துக" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL வேர் சான்றிதழ்கள்" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "வேர் சான்றிதழை இறக்குமதி செய்க" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 218f4a9996e..68704a7d00d 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index eafb80dab18..ba38c4f133c 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 3578cf25279..2e9a3442416 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "முன் செயல் நீக்கம் " @@ -349,27 +349,27 @@ msgstr "நீக்குக" msgid "never" msgstr "ஒருபோதும்" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/te/core.po b/l10n/te/core.po index ffd0cd5ca5c..7daaab5196b 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -149,78 +149,30 @@ msgstr "నవంబర్" msgid "December" msgstr "డిసెంబర్" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "అమరికలు" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "సంచయం" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "క్షణాల క్రితం" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n నిమిషం క్రితం" -msgstr[1] "%n నిమిషాల క్రితం" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n గంట క్రితం" -msgstr[1] "%n గంటల క్రితం" - -#: js/js.js:1281 -msgid "today" -msgstr "ఈరోజు" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "నిన్న" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n రోజు క్రితం" -msgstr[1] "%n రోజుల క్రితం" - -#: js/js.js:1284 -msgid "last month" -msgstr "పోయిన నెల" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n నెల క్రితం" -msgstr[1] "%n నెలల క్రితం" - -#: js/js.js:1286 -msgid "last year" -msgstr "పోయిన సంవత్సరం" - -#: js/js.js:1287 -msgid "years ago" -msgstr "సంవత్సరాల క్రితం" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/te/files.po b/l10n/te/files.po index ed9ec178760..4ecffff14ce 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index 4a956b90f16..793a46dcbc3 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "వ్యక్తిగతం" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "వాడుకరులు" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "తొలగించు" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index 2c99e6dd04d..1d820fe6821 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 712a9d82737..080060994e6 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index e2764853886..777b7a0d2a7 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "తొలగించు" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 2cd08f4dca5..bb6b9698a3b 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -149,78 +149,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index b40fc226ab6..827f0a8b5df 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index e0d654c3884..1ba052eb261 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 95e6be99331..a89d0a0839d 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -231,7 +231,15 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 1e40951edd5..c139ad34f0f 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index c17d3740114..d2d3dffedc9 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 16e4b59f401..7970567e439 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 6406025d9ac..dd04e14924f 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 985d71cad3f..842ce4ba22d 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index b5724696862..51fe7b009b4 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -324,7 +324,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -348,27 +348,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 636efce7d7d..a7159eb4d61 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 3972afa282b..e9285a1ebdc 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index a126ea75370..465b10237b6 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -148,74 +148,30 @@ msgstr "พฤศจิกายน" msgid "December" msgstr "ธันวาคม" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "แฟ้มเอกสาร" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "รูปภาพ" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "กำลังบันทึกข้อมูล..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "วินาที ก่อนหน้านี้" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" - -#: js/js.js:1281 -msgid "today" -msgstr "วันนี้" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "เมื่อวานนี้" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "เดือนที่แล้ว" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "ปีที่แล้ว" - -#: js/js.js:1287 -msgid "years ago" -msgstr "ปี ที่ผ่านมา" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 934ccab9249..2876d491f9e 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index 0b8a8b0f269..b36b1c12c54 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "ส่วนตัว" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "ผู้ใช้งานทั้งหมด" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "กลุ่ม" - -#: templates/settings.php:106 -msgid "Users" -msgstr "ผู้ใช้งาน" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "ลบ" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "เปิดให้มีการใช้พื้นที่จัดเก็บข้อมูลของผู้ใช้งานจากภายนอกได้" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "ใบรับรองความปลอดภัยด้วยระบบ SSL จาก Root" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "นำเข้าข้อมูลใบรับรองความปลอดภัยจาก Root" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index 52440f76f7d..fa9325b95bc 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 112b47ce802..aaf56f98842 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index b77266e90b8..d42eaf57f70 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+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" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "เลิกทำ" @@ -349,27 +349,27 @@ msgstr "ลบ" msgid "never" msgstr "ไม่ต้องเลย" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 08b17bfac9d..10b37d941e7 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" -"Last-Translator: Volkan Gezer \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -152,78 +152,30 @@ msgstr "Kasım" msgid "December" msgstr "Aralık" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Dosya" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Klasör" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "Resim" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "Ses" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Kaydediliyor..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "saniyeler önce" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n dakika önce" -msgstr[1] "%n dakika önce" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n saat önce" -msgstr[1] "%n saat önce" - -#: js/js.js:1281 -msgid "today" -msgstr "bugün" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "dün" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n gün önce" -msgstr[1] "%n gün önce" - -#: js/js.js:1284 -msgid "last month" -msgstr "geçen ay" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n ay önce" -msgstr[1] "%n ay önce" - -#: js/js.js:1286 -msgid "last year" -msgstr "geçen yıl" - -#: js/js.js:1287 -msgid "years ago" -msgstr "yıllar önce" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Sıfırlama e-postası gönderilemedi. Lütfen yöneticiniz ile iletişime geçin." diff --git a/l10n/tr/files.po b/l10n/tr/files.po index cb2a8eb6a0d..c6cfb5a311a 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index 57d8c2e04ef..d6fe17b5601 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -232,7 +232,15 @@ msgstr "Kişisel" msgid "System" msgstr "Sistem" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Kaydedildi" @@ -301,39 +309,23 @@ msgstr "Kullanabilenler" msgid "Add storage" msgstr "Depo ekle" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Kullanıcı veya grup yok" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Tüm Kullanıcılar" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Gruplar" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Kullanıcılar" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Sil" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Kullanıcılar için Harici Depolamayı Etkinleştir" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Kullanıcıların aşağıdaki harici depolamayı bağlamalarına izin ver" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL kök sertifikaları" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Kök Sertifikalarını İçe Aktar" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index cfda26b7aca..bd6e31cd34f 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: Volkan Gezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 8df19fbbf43..2a1842f80d8 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index b538dfc1dde..43f64890f4b 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: Volkan Gezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -329,7 +329,7 @@ msgstr "Geçerli bir grup adı mutlaka sağlanmalı" msgid "deleted {groupName}" msgstr "{groupName} silindi" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "geri al" @@ -353,27 +353,27 @@ msgstr "Sil" msgid "never" msgstr "hiçbir zaman" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "{userName} silindi" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "grup ekle" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Geçerli bir kullanıcı adı mutlaka sağlanmalı" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Kullanıcı oluşturulurken hata" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Geçerli bir parola mutlaka sağlanmalı" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Uyarı: \"{user}\" kullanıcısı için zaten bir Ev dizini mevcut" diff --git a/l10n/tzm/core.po b/l10n/tzm/core.po index 61c73f43c9b..d68fbd82f86 100644 --- a/l10n/tzm/core.po +++ b/l10n/tzm/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/tzm/files_external.po b/l10n/tzm/files_external.po index aad0ba274ef..2fea8a494ba 100644 --- a/l10n/tzm/files_external.po +++ b/l10n/tzm/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 6d74fb54cc9..0c662135c24 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -148,74 +148,30 @@ msgstr "ئوغلاق" msgid "December" msgstr "كۆنەك" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "تەڭشەكلەر" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "قىسقۇچ" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "ساقلاۋاتىدۇ…" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" - -#: js/js.js:1281 -msgid "today" -msgstr "بۈگۈن" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "تۈنۈگۈن" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 6d9bc1a3a52..6cb1550a066 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index 225d4edb14c..f52ff352c9e 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "شەخسىي" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "گۇرۇپپا" - -#: templates/settings.php:106 -msgid "Users" -msgstr "ئىشلەتكۈچىلەر" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "ئۆچۈر" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index e715c8b1c09..e36cf9d0f9a 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 26cd3a3d0da..909d512d2af 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 66148cd691f..ef3169aaa5f 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "يېنىۋال" @@ -350,27 +350,27 @@ msgstr "ئۆچۈر" msgid "never" msgstr "ھەرگىز" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "گۇرۇپپا قوش" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "چوقۇم ئىناۋەتلىك ئىشلەتكۈچى ئىسمىدىن بىرنى تەمىنلەش كېرەك" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "ئىشلەتكۈچى قۇرۇۋاتقاندا خاتالىق كۆرۈلدى" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "چوقۇم ئىناۋەتلىك ئىم تەمىنلەش كېرەك" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index fb91f74aa70..87aa213d941 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -150,82 +150,30 @@ msgstr "Листопад" msgid "December" msgstr "Грудень" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Налаштування" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "Файл" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Тека" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Зберігаю..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "секунди тому" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n хвилину тому" -msgstr[1] "%n хвилини тому" -msgstr[2] "%n хвилин тому" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n годину тому" -msgstr[1] "%n години тому" -msgstr[2] "%n годин тому" - -#: js/js.js:1281 -msgid "today" -msgstr "сьогодні" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "вчора" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n день тому" -msgstr[1] "%n дні тому" -msgstr[2] "%n днів тому" - -#: js/js.js:1284 -msgid "last month" -msgstr "минулого місяця" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n місяць тому" -msgstr[1] "%n місяці тому" -msgstr[2] "%n місяців тому" - -#: js/js.js:1286 -msgid "last year" -msgstr "минулого року" - -#: js/js.js:1287 -msgid "years ago" -msgstr "роки тому" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 64eda9679a8..da4bbccd488 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index 3385d3baaa6..395ab97d006 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -232,7 +232,15 @@ msgstr "Особисте" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -301,39 +309,23 @@ msgstr "" msgid "Add storage" msgstr "Додати сховище" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Усі користувачі" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Групи" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Користувачі" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Видалити" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Активувати користувацькі зовнішні сховища" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL корневі сертифікати" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Імпортувати корневі сертифікати" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 340cc18996d..d8f6c5ce909 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: v_2e \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index bc20241e615..de9b3db6479 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index bd58c77927a..b30cf34e3d2 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+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" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "відмінити" @@ -350,27 +350,27 @@ msgstr "Видалити" msgid "never" msgstr "ніколи" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "додати групу" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Потрібно задати вірне ім'я користувача" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Помилка при створенні користувача" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Потрібно задати вірний пароль" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/ur/core.po b/l10n/ur/core.po index bab8528c7f1..48370788f05 100644 --- a/l10n/ur/core.po +++ b/l10n/ur/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ur/files_external.po b/l10n/ur/files_external.po index 67a31557590..f2b59dc72b4 100644 --- a/l10n/ur/files_external.po +++ b/l10n/ur/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index 193a4967763..2ef861bd877 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -149,78 +149,30 @@ msgstr "نومبر" msgid "December" msgstr "دسمبر" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "ترتیبات" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "محفوظ ھو رہا ہے ..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "سیکنڈز پہلے" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n منٹس پہلے" -msgstr[1] "%n منٹس پہلے" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "آج" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "کل" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "پچھلے مہنیے" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "پچھلے سال" - -#: js/js.js:1287 -msgid "years ago" -msgstr "سالوں پہلے" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index db6a4104093..b13e1167aea 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_external.po b/l10n/ur_PK/files_external.po index c0f9b476633..fdf9b621357 100644 --- a/l10n/ur_PK/files_external.po +++ b/l10n/ur_PK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "شخصی" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "یوزرز" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "حذف کریں" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index b7f905befa6..e18acdda948 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: Ahmed Waqar Shah \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 87c2da7715e..176b6990de6 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 38733f6874a..54a1c6bce61 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "حذف کریں" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/uz/core.po b/l10n/uz/core.po index aa6ad7de146..0b0cdc632d8 100644 --- a/l10n/uz/core.po +++ b/l10n/uz/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -148,74 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/uz/files_external.po b/l10n/uz/files_external.po index 073b4534b5c..05774cac616 100644 --- a/l10n/uz/files_external.po +++ b/l10n/uz/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -231,33 +231,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:716 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:726 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:748 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:750 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:752 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 18a33d061dd..2b3fb89582c 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -152,74 +152,30 @@ msgstr "Tháng 11" msgid "December" msgstr "Tháng 12" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "Cài đặt" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Thư mục" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Đang lưu..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "vài giây trước" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n phút trước" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n giờ trước" - -#: js/js.js:1281 -msgid "today" -msgstr "hôm nay" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "hôm qua" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n ngày trước" - -#: js/js.js:1284 -msgid "last month" -msgstr "tháng trước" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n tháng trước" - -#: js/js.js:1286 -msgid "last year" -msgstr "năm trước" - -#: js/js.js:1287 -msgid "years ago" -msgstr "năm trước" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index ae97d8c6304..bffdafd3c5e 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index 5372fe049c7..a733be3a875 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -232,7 +232,15 @@ msgstr "Cá nhân" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "" @@ -301,39 +309,23 @@ msgstr "" msgid "Add storage" msgstr "Thêm bộ nhớ" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Tất cả người dùng" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Nhóm" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Người dùng" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Xóa" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Kích hoạt tính năng lưu trữ ngoài" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Chứng chỉ SSL root" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Nhập Root Certificate" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index 7f053fa3607..f7e5f8b133b 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 1a441a30f59..8f19a9d15be 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index dd7e88ff285..2b6bd0ff29e 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+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" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "lùi lại" @@ -350,27 +350,27 @@ msgstr "Xóa" msgid "never" msgstr "không thay đổi" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 5d518d03201..e3210cf63ce 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -156,74 +156,30 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "设置" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "文件" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "文件夹" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "图像" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "声音" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "保存中" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "秒前" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n 分钟前" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n 小时前" - -#: js/js.js:1281 -msgid "today" -msgstr "今天" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "昨天" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n 天前" - -#: js/js.js:1284 -msgid "last month" -msgstr "上月" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n 月前" - -#: js/js.js:1286 -msgid "last year" -msgstr "去年" - -#: js/js.js:1287 -msgid "years ago" -msgstr "年前" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "未能成功发送重置邮件,请联系管理员。" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index ca8c224ee48..268bd940bb3 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index 22390644285..a58619a4089 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" -"Last-Translator: Kaijia Feng \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -234,7 +234,15 @@ msgstr "个人" msgid "System" msgstr "系统" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "已保存" @@ -303,39 +311,23 @@ msgstr "可用于" msgid "Add storage" msgstr "增加存储" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "无用户或组" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "所有用户" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "组" - -#: templates/settings.php:106 -msgid "Users" -msgstr "用户" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "删除" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "启用用户外部存储" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "允许用户挂载以下外部存储" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL根证书" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "导入根证书" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 1e08baa06c2..db10cc549dc 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 83b09783660..de0872f875f 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index ce9459601bd..41ab5b59302 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+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" @@ -334,7 +334,7 @@ msgstr "请提供一个有效的组名称" msgid "deleted {groupName}" msgstr "已删除 {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "撤销" @@ -358,27 +358,27 @@ msgstr "删除" msgid "never" msgstr "从不" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "已删除 {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "增加组" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "必须提供合法的用户名" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "创建用户出错" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "必须提供合法的密码" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "警告:用户 \"{user}\" 的家目录已存在" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 4c1287458ae..0efac04e9f5 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -149,74 +149,30 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "設定" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "文件" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "資料夾" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "圖片" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "聲音" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "儲存中..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "秒前" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n 分鐘前" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n 小時前" - -#: js/js.js:1281 -msgid "today" -msgstr "今日" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "昨日" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n 日前" - -#: js/js.js:1284 -msgid "last month" -msgstr "上個月" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n 月前" - -#: js/js.js:1286 -msgid "last year" -msgstr "上年" - -#: js/js.js:1287 -msgid "years ago" -msgstr "年前" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 36b15d0d9eb..788c370f067 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index f4e7cefd08b..0c33328af2e 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -231,7 +231,15 @@ msgstr "個人" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "已儲存" @@ -300,39 +308,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "群組" - -#: templates/settings.php:106 -msgid "Users" -msgstr "用戶" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "刪除" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 961055e44ba..83c4b56f3a3 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 7146885b80d..078bbf517b1 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 271ab349a63..1180b03ba43 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -350,27 +350,27 @@ msgstr "刪除" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index dfe576939dd..bd42c9335e7 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" -"Last-Translator: Pellaeon Lin \n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -150,74 +150,30 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "設定" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "檔案" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "資料夾" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "圖片" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "音訊" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "儲存中..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "幾秒前" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n 分鐘前" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n 小時前" - -#: js/js.js:1281 -msgid "today" -msgstr "今天" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "昨天" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n 天前" - -#: js/js.js:1284 -msgid "last month" -msgstr "上個月" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n 個月前" - -#: js/js.js:1286 -msgid "last year" -msgstr "去年" - -#: js/js.js:1287 -msgid "years ago" -msgstr "幾年前" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "無法寄送重設 email ,請聯絡系統管理員" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 310c9abfa88..78c5114a945 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:03+0000\n" "Last-Translator: Pellaeon Lin \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 06efba40b8e..02c4cf414df 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -233,7 +233,15 @@ msgstr "個人" msgid "System" msgstr "系統" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:196 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:279 +msgid "(group)" +msgstr "" + +#: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "已儲存" @@ -302,39 +310,23 @@ msgstr "可用的" msgid "Add storage" msgstr "增加儲存區" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "沒有使用者或群組" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "所有使用者" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "群組" - -#: templates/settings.php:106 -msgid "Users" -msgstr "使用者" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "刪除" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "啓用使用者外部儲存" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "允許使用者自行掛載以下的外部儲存" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL 根憑證" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "匯入根憑證" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index b325fd85b7c..9492b17ef2d 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:02+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05: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" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index daae541df6e..2de03817a94 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+0000\n" "Last-Translator: Pellaeon Lin \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 3ffc16666ad..b7e3c72577d 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 05:23+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:24+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" @@ -327,7 +327,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "復原" @@ -351,27 +351,27 @@ msgstr "刪除" msgid "never" msgstr "永不" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "新增群組" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "必須提供一個有效的用戶名" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "建立用戶時出現錯誤" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "一定要提供一個有效的密碼" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "警告:使用者 {user} 的家目錄已經存在" diff --git a/lib/l10n/pt_PT.php b/lib/l10n/pt_PT.php index 3e89a4d7a42..a142255ce79 100644 --- a/lib/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -4,6 +4,8 @@ $TRANSLATIONS = array( "This can usually be fixed by giving the webserver write access to the config directory" => "Isto pode ser resolvido normalmente dando ao servidor web direitos de escrita ao directório de configuração", "See %s" => "Ver %s", "This can usually be fixed by %sgiving the webserver write access to the config directory%s." => "Isto pode ser resolvido normalmente %sdando ao servidor web direitos de escrita no directório de configuração%s.", +"Sample configuration detected" => "Exemplo de configuração detectada", +"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" => "Foi detectado que a configuração de amostra foi copiada. Isso pode danificar a sua instalação e não é suportado. Por favor, leia a documentação antes de realizar mudanças no config.php", "Help" => "Ajuda", "Personal" => "Pessoal", "Settings" => "Configurações", @@ -97,6 +99,7 @@ $TRANSLATIONS = array( "Cannot create \"data\" directory (%s)" => "Não é possivel criar a directoria \"data\" (%s)", "This can usually be fixed by giving the webserver write access to the root directory." => "Isto pode ser normalmente resolvido dando ao servidor web direito de escrita para o directório do root.", "Setting locale to %s failed" => "Definindo local para %s falhado", +"Please install one of these locales on your system and restart your webserver." => "Por favor instale um destes locais no seu sistema e reinicie o seu servidor web.", "Please ask your server administrator to install the module." => "Por favor pergunte ao seu administrador do servidor para instalar o modulo.", "PHP module %s not installed." => "O modulo %s PHP não está instalado.", "PHP %s or higher is required." => "Necessário PHP %s ou maior.", diff --git a/settings/l10n/bn_BD.php b/settings/l10n/bn_BD.php index 2371ccd6733..2c4923655a5 100644 --- a/settings/l10n/bn_BD.php +++ b/settings/l10n/bn_BD.php @@ -1,5 +1,6 @@ "সংরক্ষণ করা হলো", "Email sent" => "ই-মেইল পাঠানো হয়েছে", "Encryption" => "সংকেতায়ন", "Unable to load list from App Store" => "অ্যাপস্টোর থেকে তালিকা লোড করতে সক্ষম নয়", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 4e9ec716adf..761b35008b5 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -40,6 +40,8 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Chybné administrátorské heslo pro obnovu. Překontrolujte správnost hesla a zkuste to znovu.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Úložiště nepodporuje změnu hesla, ale šifrovací klíč uživatelů byl úspěšně změněn.", "Unable to change password" => "Změna hesla se nezdařila", +"Are you really sure you want add \"{domain}\" as trusted domain?" => "Jste si jisti, že chcete přidat \"{domain}\" mezi důvěryhodné domény?", +"Add trusted domain" => "Přidat důvěryhodnou doménu", "Sending..." => "Odesílání...", "User Documentation" => "Uživatelská dokumentace", "Admin Documentation" => "Dokumentace pro administrátory", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index 9f0d5228633..681578caccd 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -40,6 +40,8 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Palavra chave de recuperação de administrador errada. Por favor verifique a palavra chave e tente de novo.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Não foi possível alterar a sua palavra-passe, mas a chave de encriptação foi atualizada.", "Unable to change password" => "Não foi possível alterar a sua password", +"Are you really sure you want add \"{domain}\" as trusted domain?" => "Você tem certeza que quer adicionar \"{domain}\" como domínio confiável?", +"Add trusted domain" => "Adicionar domínio confiável ", "Sending..." => "A enviar...", "User Documentation" => "Documentação de Utilizador", "Admin Documentation" => "Documentação de administrador.", @@ -108,12 +110,16 @@ $TRANSLATIONS = array( "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "O Módulo PHP 'fileinfo' não se encontra instalado/activado. É fortemente recomendado que active este módulo para obter os melhores resultado com a detecção dos tipos de mime.", "Your PHP version is outdated" => "A sua versão do PHP está ultrapassada", "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "A sua versão do PHP está ultrapassada. Recomendamos que actualize para a versão 5.3.8 ou mais recente, devido às versões anteriores conterem problemas. É também possível que esta instalação não esteja a funcionar correctamente.", +"PHP charset is not set to UTF-8" => "PHP charset não está definido para UTF-8", +"PHP charset is not set to UTF-8. This can cause major issues with non-ASCII characters in file names. We highly recommend to change the value of 'default_charset' php.ini to 'UTF-8'." => "PHP charset não está definido como UTF-8. Isso pode causar grandes problemas com caracteres não-ASCII em nomes de arquivo. Recomendamos para alterar o valor de php.ini 'default_charset' para 'UTF-8'.", "Locale not working" => "Internacionalização não está a funcionar", "System locale can not be set to a one which supports UTF-8." => "Não é possível pôr as definições de sistema compatíveis com UTF-8.", "This means that there might be problems with certain characters in file names." => "Isto significa que podem haver problemas com alguns caracteres nos nomes dos ficheiros.", "We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Recomendamos fortemente que instale no seu sistema todos os pacotes necessários para suportar os seguintes locales: %s.", "Internet connection not working" => "A ligação à internet não está a funcionar", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor ownCloud não tem uma ligação de internet a funcionar. Isto significa que algumas funcionalidades como o acesso a locais externos (dropbox, gdrive, etc), notificações sobre actualizções, ou a instalação de aplicações não irá funcionar. Sugerimos que active uma ligação à internet se pretender obter todas as funcionalidades do ownCloud.", +"URL generation in notification emails" => "Geração URL em e-mails de notificação", +"If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" => "Se a sua instalação não está instalada na raiz do domínio e usa o sistema cron, pode haver problemas com a geração de URL. Para evitar esses problemas, por favor, defina a opção \"overwritewebroot\" no ficheiro config.php para o caminho webroot da sua instalação (sugestão: \"%s\")", "Cron" => "Cron", "Last cron was executed at %s." => "O ultimo cron foi executado em %s.", "Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "O ultima cron foi executado em %s a mais duma hora. Algo não está certo.", -- GitLab From 8fdcbce200dab9b4ff1633efab33d58fb765c6a2 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 28 Aug 2014 18:05:56 +0200 Subject: [PATCH 29/56] Include momentjs for unit tests --- core/js/core.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/js/core.json b/core/js/core.json index 4815116c338..caff2b05252 100644 --- a/core/js/core.json +++ b/core/js/core.json @@ -18,6 +18,7 @@ "eventsource.js", "config.js", "multiselect.js", - "oc-requesttoken.js" + "oc-requesttoken.js", + "moment.js" ] } -- GitLab From bffccdbea7d2a9be399cff7d835bd1cce2e2a83e Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Fri, 29 Aug 2014 09:08:46 +0100 Subject: [PATCH 30/56] Add missing 'personal' mount configuration option --- apps/files_external/lib/config.php | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index c71132d0a5a..85e36fd9043 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -169,6 +169,7 @@ class OC_Mount_Config { foreach ($options as &$option) { $option = self::setUserVars($user, $option); } + $options['personal'] = false; $options['options'] = self::decryptPasswords($options['options']); if (!isset($options['priority'])) { $options['priority'] = $backends[$options['class']]['priority']; -- GitLab From f551917a3ca2cedf748337646ed4b1d398ac8437 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Wed, 16 Jul 2014 19:40:22 +0200 Subject: [PATCH 31/56] kill OC::$session maintain deprecated \OC::$session when getting or setting the session via the server container or UserSession restore order os OC::$session and OC::$CLI remove unneded initialization of dummy session write back session when $useCustomSession is true log warning when deprecated app is used --- apps/files/ajax/delete.php | 2 +- apps/files/ajax/download.php | 2 +- apps/files/ajax/getstoragestats.php | 2 +- apps/files/ajax/list.php | 2 +- apps/files/ajax/mimeicon.php | 2 +- apps/files/ajax/move.php | 2 +- apps/files/ajax/newfile.php | 2 +- apps/files/ajax/newfolder.php | 2 +- apps/files/ajax/rename.php | 2 +- apps/files/ajax/scan.php | 2 +- apps/files/ajax/upload.php | 2 +- apps/files_encryption/lib/session.php | 22 +++++----- apps/files_external/lib/smb_oc.php | 8 ++-- apps/files_sharing/lib/helper.php | 6 +-- apps/files_sharing/public.php | 6 +-- cron.php | 4 +- lib/base.php | 39 ++++++++-------- .../dependencyinjection/dicontainer.php | 2 +- lib/private/connector/sabre/auth.php | 2 +- lib/private/server.php | 30 ++++++++----- lib/private/share/share.php | 4 +- lib/private/template.php | 12 ++--- lib/private/user.php | 8 ++-- lib/private/user/session.php | 44 +++++++++++++++++-- lib/private/util.php | 16 +++---- tests/lib/ocs/privatedata.php | 2 +- tests/lib/share/share.php | 6 +-- tests/startsessionlistener.php | 4 +- 28 files changed, 142 insertions(+), 95 deletions(-) diff --git a/apps/files/ajax/delete.php b/apps/files/ajax/delete.php index aed53d5db5a..323b70706ce 100644 --- a/apps/files/ajax/delete.php +++ b/apps/files/ajax/delete.php @@ -2,7 +2,7 @@ OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); -\OC::$session->close(); +\OC::$server->getSession()->close(); // Get data diff --git a/apps/files/ajax/download.php b/apps/files/ajax/download.php index 4b4a7f8948d..b2e144c4b8f 100644 --- a/apps/files/ajax/download.php +++ b/apps/files/ajax/download.php @@ -23,7 +23,7 @@ // Check if we are a user OCP\User::checkLoggedIn(); -\OC::$session->close(); +\OC::$server->getSession()->close(); $files = $_GET["files"]; $dir = $_GET["dir"]; diff --git a/apps/files/ajax/getstoragestats.php b/apps/files/ajax/getstoragestats.php index dd8af39bada..4ab5b9a779c 100644 --- a/apps/files/ajax/getstoragestats.php +++ b/apps/files/ajax/getstoragestats.php @@ -7,7 +7,7 @@ if (isset($_GET['dir'])) { } OCP\JSON::checkLoggedIn(); -\OC::$session->close(); +\OC::$server->getSession()->close(); // send back json OCP\JSON::success(array('data' => \OCA\Files\Helper::buildFileStorageStatistics($dir))); diff --git a/apps/files/ajax/list.php b/apps/files/ajax/list.php index b4641343ed4..2f2f7054566 100644 --- a/apps/files/ajax/list.php +++ b/apps/files/ajax/list.php @@ -1,7 +1,7 @@ close(); +\OC::$server->getSession()->close(); $l = OC_L10N::get('files'); // Load the files diff --git a/apps/files/ajax/mimeicon.php b/apps/files/ajax/mimeicon.php index 6557ff941ac..fdbcc441a78 100644 --- a/apps/files/ajax/mimeicon.php +++ b/apps/files/ajax/mimeicon.php @@ -1,4 +1,4 @@ close(); +\OC::$server->getSession()->close(); print OC_Helper::mimetypeIcon($_GET['mime']); diff --git a/apps/files/ajax/move.php b/apps/files/ajax/move.php index 0a8dbc24a65..e9a34a1b2f9 100644 --- a/apps/files/ajax/move.php +++ b/apps/files/ajax/move.php @@ -2,7 +2,7 @@ OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); -\OC::$session->close(); +\OC::$server->getSession()->close(); // Get data $dir = stripslashes($_POST["dir"]); diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php index 9cfe51a6218..8173816af3a 100644 --- a/apps/files/ajax/newfile.php +++ b/apps/files/ajax/newfile.php @@ -7,7 +7,7 @@ if(!OC_User::isLoggedIn()) { exit; } -\OC::$session->close(); +\OC::$server->getSession()->close(); // Get the params $dir = isset( $_REQUEST['dir'] ) ? '/'.trim($_REQUEST['dir'], '/\\') : ''; diff --git a/apps/files/ajax/newfolder.php b/apps/files/ajax/newfolder.php index 89c241189d7..4ea2ee71de2 100644 --- a/apps/files/ajax/newfolder.php +++ b/apps/files/ajax/newfolder.php @@ -5,7 +5,7 @@ OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); -\OC::$session->close(); +\OC::$server->getSession()->close(); // Get the params $dir = isset( $_POST['dir'] ) ? stripslashes($_POST['dir']) : ''; diff --git a/apps/files/ajax/rename.php b/apps/files/ajax/rename.php index fa3ddace63d..e5fdf8af98c 100644 --- a/apps/files/ajax/rename.php +++ b/apps/files/ajax/rename.php @@ -23,7 +23,7 @@ OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); -\OC::$session->close(); +\OC::$server->getSession()->close(); $files = new \OCA\Files\App( \OC\Files\Filesystem::getView(), diff --git a/apps/files/ajax/scan.php b/apps/files/ajax/scan.php index d5d88483801..3ec7f9394b1 100644 --- a/apps/files/ajax/scan.php +++ b/apps/files/ajax/scan.php @@ -1,6 +1,6 @@ close(); +\OC::$server->getSession()->close(); $force = (isset($_GET['force']) and ($_GET['force'] === 'true')); $dir = isset($_GET['dir']) ? $_GET['dir'] : ''; diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index b737d5f8710..4eca13f1933 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -68,7 +68,7 @@ if (empty($_POST['dirToken'])) { OCP\JSON::callCheck(); if (!\OCP\App::isEnabled('files_encryption')) { // encryption app need to create keys later, so can't close too early - \OC::$session->close(); + \OC::$server->getSession()->close(); } diff --git a/apps/files_encryption/lib/session.php b/apps/files_encryption/lib/session.php index ff8fbd24ecb..7bd4fd02421 100644 --- a/apps/files_encryption/lib/session.php +++ b/apps/files_encryption/lib/session.php @@ -117,7 +117,7 @@ class Session { */ public function setPrivateKey($privateKey) { - \OC::$session->set('privateKey', $privateKey); + \OC::$server->getSession()->set('privateKey', $privateKey); return true; @@ -140,7 +140,7 @@ class Session { */ public function setInitialized($init) { - \OC::$session->set('encryptionInitialized', $init); + \OC::$server->getSession()->set('encryptionInitialized', $init); return true; @@ -150,8 +150,8 @@ class Session { * remove encryption keys and init status from session */ public function closeSession() { - \OC::$session->remove('encryptionInitialized'); - \OC::$session->remove('privateKey'); + \OC::$server->getSession()->remove('encryptionInitialized'); + \OC::$server->getSession()->remove('privateKey'); } @@ -162,8 +162,8 @@ class Session { * @note this doesn not indicate of the init was successful, we just remeber the try! */ public function getInitialized() { - if (!is_null(\OC::$session->get('encryptionInitialized'))) { - return \OC::$session->get('encryptionInitialized'); + if (!is_null(\OC::$server->getSession()->get('encryptionInitialized'))) { + return \OC::$server->getSession()->get('encryptionInitialized'); } else { return self::NOT_INITIALIZED; } @@ -179,8 +179,8 @@ class Session { if (\OCA\Encryption\Helper::isPublicAccess()) { return $this->getPublicSharePrivateKey(); } else { - if (!is_null(\OC::$session->get('privateKey'))) { - return \OC::$session->get('privateKey'); + if (!is_null(\OC::$server->getSession()->get('privateKey'))) { + return \OC::$server->getSession()->get('privateKey'); } else { return false; } @@ -194,7 +194,7 @@ class Session { */ public function setPublicSharePrivateKey($privateKey) { - \OC::$session->set('publicSharePrivateKey', $privateKey); + \OC::$server->getSession()->set('publicSharePrivateKey', $privateKey); return true; @@ -207,8 +207,8 @@ class Session { */ public function getPublicSharePrivateKey() { - if (!is_null(\OC::$session->get('publicSharePrivateKey'))) { - return \OC::$session->get('publicSharePrivateKey'); + if (!is_null(\OC::$server->getSession()->get('publicSharePrivateKey'))) { + return \OC::$server->getSession()->get('publicSharePrivateKey'); } else { return false; } diff --git a/apps/files_external/lib/smb_oc.php b/apps/files_external/lib/smb_oc.php index 0c79c06c5df..e6f3aaf4052 100644 --- a/apps/files_external/lib/smb_oc.php +++ b/apps/files_external/lib/smb_oc.php @@ -14,12 +14,12 @@ class SMB_OC extends \OC\Files\Storage\SMB { private $username_as_share; public function __construct($params) { - if (isset($params['host']) && \OC::$session->exists('smb-credentials')) { + if (isset($params['host']) && \OC::$server->getSession()->exists('smb-credentials')) { $host=$params['host']; $this->username_as_share = ($params['username_as_share'] === 'true'); - $params_auth = \OC::$session->get('smb-credentials'); - $user = \OC::$session->get('loginname'); + $params_auth = \OC::$server->getSession()->get('smb-credentials'); + $user = \OC::$server->getSession()->get('loginname'); $password = $params_auth['password']; $root=isset($params['root'])?$params['root']:'/'; @@ -45,7 +45,7 @@ class SMB_OC extends \OC\Files\Storage\SMB { } public static function login( $params ) { - \OC::$session->set('smb-credentials', $params); + \OC::$server->getSession()->set('smb-credentials', $params); } public function isSharable($path) { diff --git a/apps/files_sharing/lib/helper.php b/apps/files_sharing/lib/helper.php index f444404c2b1..e7ca4fcccd4 100644 --- a/apps/files_sharing/lib/helper.php +++ b/apps/files_sharing/lib/helper.php @@ -106,7 +106,7 @@ class Helper { return false; } else { // Save item id in session for future requests - \OC::$session->set('public_link_authenticated', $linkItem['id']); + \OC::$server->getSession()->set('public_link_authenticated', $linkItem['id']); } } else { \OCP\Util::writeLog('share', 'Unknown share type '.$linkItem['share_type'] @@ -117,8 +117,8 @@ class Helper { } else { // not authenticated ? - if ( ! \OC::$session->exists('public_link_authenticated') - || \OC::$session->get('public_link_authenticated') !== $linkItem['id']) { + if ( ! \OC::$server->getSession()->exists('public_link_authenticated') + || \OC::$server->getSession()->get('public_link_authenticated') !== $linkItem['id']) { return false; } } diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index 746bdf87c17..bcf99d01edb 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -63,7 +63,7 @@ if (isset($path)) { exit(); } else { // Save item id in session for future requests - \OC::$session->set('public_link_authenticated', $linkItem['id']); + \OC::$server->getSession()->set('public_link_authenticated', $linkItem['id']); } } else { OCP\Util::writeLog('share', 'Unknown share type '.$linkItem['share_type'] @@ -76,8 +76,8 @@ if (isset($path)) { } else { // Check if item id is set in session - if ( ! \OC::$session->exists('public_link_authenticated') - || \OC::$session->get('public_link_authenticated') !== $linkItem['id'] + if ( ! \OC::$server->getSession()->exists('public_link_authenticated') + || \OC::$server->getSession()->get('public_link_authenticated') !== $linkItem['id'] ) { // Prompt for password OCP\Util::addStyle('files_sharing', 'authenticate'); diff --git a/cron.php b/cron.php index f0acd2f0492..c48f17ed095 100644 --- a/cron.php +++ b/cron.php @@ -56,10 +56,10 @@ try { // load all apps to get all api routes properly setup OC_App::loadApps(); - \OC::$session->close(); + \OC::$server->getSession()->close(); // initialize a dummy memory session - \OC::$session = new \OC\Session\Memory(''); + \OC::$server->setSession(new \OC\Session\Memory('')); $logger = \OC_Log::$object; diff --git a/lib/base.php b/lib/base.php index 1c69d6f5671..2dd107411f0 100644 --- a/lib/base.php +++ b/lib/base.php @@ -71,6 +71,7 @@ class OC { public static $CLI = false; /** + * @deprecated use \OC::$session->getSession() instead * @var \OC\Session\Session */ public static $session = null; @@ -375,19 +376,20 @@ class OC { $cookie_path = OC::$WEBROOT ? : '/'; ini_set('session.cookie_path', $cookie_path); - //set the session object to a dummy session so code relying on the session existing still works - self::$session = new \OC\Session\Memory(''); - // Let the session name be changed in the initSession Hook $sessionName = OC_Util::getInstanceId(); try { // Allow session apps to create a custom session object $useCustomSession = false; - OC_Hook::emit('OC', 'initSession', array('session' => &self::$session, 'sessionName' => &$sessionName, 'useCustomSession' => &$useCustomSession)); - if(!$useCustomSession) { + $session = self::$server->getSession(); + OC_Hook::emit('OC', 'initSession', array('session' => &$session, 'sessionName' => &$sessionName, 'useCustomSession' => &$useCustomSession)); + if($useCustomSession) { + // use the session reference as the new Session + self::$server->setSession($session); + } else { // set the session name to the instance id - which is unique - self::$session = new \OC\Session\Internal($sessionName); + self::$server->setSession(new \OC\Session\Internal($sessionName)); } // if session cant be started break with http 500 error } catch (Exception $e) { @@ -398,15 +400,19 @@ class OC { $sessionLifeTime = self::getSessionLifeTime(); // regenerate session id periodically to avoid session fixation - if (!self::$session->exists('SID_CREATED')) { - self::$session->set('SID_CREATED', time()); - } else if (time() - self::$session->get('SID_CREATED') > $sessionLifeTime / 2) { + /** + * @var \OCP\ISession $session + */ + $session = self::$server->getSession(); + if (!$session->exists('SID_CREATED')) { + $session->set('SID_CREATED', time()); + } else if (time() - $session->get('SID_CREATED') > $sessionLifeTime / 2) { session_regenerate_id(true); - self::$session->set('SID_CREATED', time()); + $session->set('SID_CREATED', time()); } // session timeout - if (self::$session->exists('LAST_ACTIVITY') && (time() - self::$session->get('LAST_ACTIVITY') > $sessionLifeTime)) { + if ($session->exists('LAST_ACTIVITY') && (time() - $session->get('LAST_ACTIVITY') > $sessionLifeTime)) { if (isset($_COOKIE[session_name()])) { setcookie(session_name(), '', time() - 42000, $cookie_path); } @@ -415,7 +421,7 @@ class OC { session_start(); } - self::$session->set('LAST_ACTIVITY', time()); + $session->set('LAST_ACTIVITY', time()); } /** @@ -447,9 +453,6 @@ class OC { self::$loader->registerPrefix('Pimple', '3rdparty/Pimple'); spl_autoload_register(array(self::$loader, 'load')); - // make a dummy session available as early as possible since error pages need it - self::$session = new \OC\Session\Memory(''); - // set some stuff //ob_start(); error_reporting(E_ALL | E_STRICT); @@ -544,7 +547,7 @@ class OC { // User and Groups if (!OC_Config::getValue("installed", false)) { - self::$session->set('user_id', ''); + self::$server->getSession()->set('user_id', ''); } OC_User::useBackend(new OC_User_Database()); @@ -783,7 +786,7 @@ class OC { if (isset($_COOKIE['oc_ignore_php_auth_user'])) { // Ignore HTTP Authentication for 5 more mintues. setcookie('oc_ignore_php_auth_user', $_SERVER['PHP_AUTH_USER'], time() + 300, OC::$WEBROOT.(empty(OC::$WEBROOT) ? '/' : '')); - } elseif ($_SERVER['PHP_AUTH_USER'] === self::$session->get('loginname')) { + } elseif ($_SERVER['PHP_AUTH_USER'] === self::$server->getSession()->get('loginname')) { // Ignore HTTP Authentication to allow a different user to log in. setcookie('oc_ignore_php_auth_user', $_SERVER['PHP_AUTH_USER'], 0, OC::$WEBROOT.(empty(OC::$WEBROOT) ? '/' : '')); } @@ -930,7 +933,7 @@ class OC { if (OC_User::login($_POST["user"], $_POST["password"])) { // setting up the time zone if (isset($_POST['timezone-offset'])) { - self::$session->set('timezone', $_POST['timezone-offset']); + self::$server->getSession()->set('timezone', $_POST['timezone-offset']); } $userid = OC_User::getUser(); diff --git a/lib/private/appframework/dependencyinjection/dicontainer.php b/lib/private/appframework/dependencyinjection/dicontainer.php index 61a2333ecee..e7efa3fa219 100644 --- a/lib/private/appframework/dependencyinjection/dicontainer.php +++ b/lib/private/appframework/dependencyinjection/dicontainer.php @@ -191,7 +191,7 @@ class DIContainer extends SimpleContainer implements IAppContainer{ } private function getUserId() { - return \OC::$session->get('user_id'); + return \OC::$server->getSession()->get('user_id'); } /** diff --git a/lib/private/connector/sabre/auth.php b/lib/private/connector/sabre/auth.php index b1ef698583d..6e1baca9332 100644 --- a/lib/private/connector/sabre/auth.php +++ b/lib/private/connector/sabre/auth.php @@ -78,7 +78,7 @@ class OC_Connector_Sabre_Auth extends \Sabre\DAV\Auth\Backend\AbstractBasic { $result = $this->auth($server, $realm); // close the session - right after authentication there is not need to write to the session any more - \OC::$session->close(); + \OC::$server->getSession()->close(); return $result; } diff --git a/lib/private/server.php b/lib/private/server.php index aab3c82bfeb..53aab7a586a 100644 --- a/lib/private/server.php +++ b/lib/private/server.php @@ -10,6 +10,7 @@ use OC\DB\ConnectionWrapper; use OC\Files\Node\Root; use OC\Files\View; use OCP\IServerContainer; +use OCP\ISession; /** * Class Server @@ -31,8 +32,8 @@ class Server extends SimpleContainer implements IServerContainer { $urlParams = array(); } - if (\OC::$session->exists('requesttoken')) { - $requestToken = \OC::$session->get('requesttoken'); + if (\OC::$server->getSession()->exists('requesttoken')) { + $requestToken = \OC::$server->getSession()->get('requesttoken'); } else { $requestToken = false; } @@ -100,7 +101,7 @@ class Server extends SimpleContainer implements IServerContainer { * @var \OC\User\Manager $manager */ $manager = $c->query('UserManager'); - $userSession = new \OC\User\Session($manager, \OC::$session); + $userSession = new \OC\User\Session($manager, new \OC\Session\Memory('')); $userSession->listen('\OC\User', 'preCreateUser', function ($uid, $password) { \OC_Hook::emit('OC_User', 'pre_createUser', array('run' => true, 'uid' => $uid, 'password' => $password)); }); @@ -327,6 +328,20 @@ class Server extends SimpleContainer implements IServerContainer { return $this->query('UserSession'); } + /** + * @return \OCP\ISession + */ + function getSession() { + return $this->query('UserSession')->getSession(); + } + + /** + * @param \OCP\ISession $session + */ + function setSession(\OCP\ISession $session) { + return $this->query('UserSession')->setSession($session); + } + /** * @return \OC\NavigationManager */ @@ -392,15 +407,6 @@ class Server extends SimpleContainer implements IServerContainer { return $this->query('MemCacheFactory'); } - /** - * Returns the current session - * - * @return \OCP\ISession - */ - function getSession() { - return \OC::$session; - } - /** * Returns the current session * diff --git a/lib/private/share/share.php b/lib/private/share/share.php index faa6453d640..c3593beac45 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -1855,8 +1855,8 @@ class Share extends \OC\Share\Constants { return true; } - if ( \OC::$session->exists('public_link_authenticated') - && \OC::$session->get('public_link_authenticated') === $linkItem['id'] ) { + if ( \OC::$server->getSession()->exists('public_link_authenticated') + && \OC::$server->getSession()->get('public_link_authenticated') === $linkItem['id'] ) { return true; } diff --git a/lib/private/template.php b/lib/private/template.php index 173345cc001..d6afe1a3e40 100644 --- a/lib/private/template.php +++ b/lib/private/template.php @@ -52,7 +52,7 @@ class OC_Template extends \OC\Template\Base { // Read the detected formfactor and use the right file name. $fext = self::getFormFactorExtension(); - $requesttoken = OC::$session ? OC_Util::callRegister() : ''; + $requesttoken = OC::$server->getSession() ? OC_Util::callRegister() : ''; $parts = explode('/', $app); // fix translation when app is something like core/lostpassword $l10n = OC_L10N::get($parts[0]); @@ -101,20 +101,20 @@ class OC_Template extends \OC\Template\Base { */ static public function getFormFactorExtension() { - if (!\OC::$session) { + if (!\OC::$server->getSession()) { return ''; } // if the formfactor is not yet autodetected do the // autodetection now. For possible formfactors check the // detectFormfactor documentation - if (!\OC::$session->exists('formfactor')) { - \OC::$session->set('formfactor', self::detectFormfactor()); + if (!\OC::$server->getSession()->exists('formfactor')) { + \OC::$server->getSession()->set('formfactor', self::detectFormfactor()); } // allow manual override via GET parameter if(isset($_GET['formfactor'])) { - \OC::$session->set('formfactor', $_GET['formfactor']); + \OC::$server->getSession()->set('formfactor', $_GET['formfactor']); } - $formfactor = \OC::$session->get('formfactor'); + $formfactor = \OC::$server->getSession()->get('formfactor'); if($formfactor==='default') { $fext=''; }elseif($formfactor==='mobile') { diff --git a/lib/private/user.php b/lib/private/user.php index cdef4d8fe65..c9b1522f85a 100644 --- a/lib/private/user.php +++ b/lib/private/user.php @@ -300,7 +300,7 @@ class OC_User { * Sets user id for session and triggers emit */ public static function setUserId($uid) { - OC::$session->set('user_id', $uid); + \OC::$server->getSession()->set('user_id', $uid); } /** @@ -337,8 +337,8 @@ class OC_User { * Checks if the user is logged in */ public static function isLoggedIn() { - if (\OC::$session->get('user_id') !== null && self::$incognitoMode === false) { - return self::userExists(\OC::$session->get('user_id')); + if (\OC::$server->getSession()->get('user_id') !== null && self::$incognitoMode === false) { + return self::userExists(\OC::$server->getSession()->get('user_id')); } return false; } @@ -386,7 +386,7 @@ class OC_User { * @return string uid or false */ public static function getUser() { - $uid = OC::$session ? OC::$session->get('user_id') : null; + $uid = \OC::$server->getSession() ? \OC::$server->getSession()->get('user_id') : null; if (!is_null($uid) && self::$incognitoMode === false) { return $uid; } else { diff --git a/lib/private/user/session.php b/lib/private/user/session.php index 6abf8fb80d2..11938db5076 100644 --- a/lib/private/user/session.php +++ b/lib/private/user/session.php @@ -47,10 +47,10 @@ class Session implements IUserSession, Emitter { protected $activeUser; /** - * @param \OC\User\Manager $manager - * @param \OC\Session\Session $session + * @param \OCP\IUserManager $manager + * @param \OCP\ISession $session */ - public function __construct($manager, $session) { + public function __construct(\OCP\IUserManager $manager, \OCP\ISession $session) { $this->manager = $manager; $this->session = $session; } @@ -82,6 +82,44 @@ class Session implements IUserSession, Emitter { return $this->manager; } + /** + * get the session object + * + * @return \OCP\ISession + */ + public function getSession() { + // fetch the deprecated \OC::$session if it changed for backwards compatibility + if (isset(\OC::$session) && \OC::$session !== $this->session) { + \OC::$server->getLogger()->warning( + 'One of your installed apps still seems to use the deprecated '. + '\OC::$session and has replaced it with a new instance. Please file a bug against it.'. + 'Closing and replacing session in UserSession instance.' + ); + $this->setSession(\OC::$session); + } + return $this->session; + } + + /** + * set the session object + * + * @param \OCP\ISession $session + */ + public function setSession(\OCP\ISession $session) { + if ($this->session instanceof \OCP\ISession) { + $this->session->close(); + } + $this->session = $session; + + // maintain deprecated \OC::$session + if (\OC::$session !== $this->session) { + if (\OC::$session instanceof \OCP\ISession) { + \OC::$session->close(); + } + \OC::$session = $session; + } + } + /** * set the currently active user * diff --git a/lib/private/util.php b/lib/private/util.php index 4307560a928..c79f374771c 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -384,11 +384,11 @@ class OC_Util { * @return string timestamp * @description adjust to clients timezone if we know it */ - public static function formatDate($timestamp, $dateOnly = false) { - if (\OC::$session->exists('timezone')) { + public static function formatDate( $timestamp, $dateOnly = false) { + if(\OC::$server->getSession()->exists('timezone')) { $systemTimeZone = intval(date('O')); $systemTimeZone = (round($systemTimeZone / 100, 0) * 60) + ($systemTimeZone % 100); - $clientTimeZone = \OC::$session->get('timezone') * 60; + $clientTimeZone = \OC::$server->getSession()->get('timezone') * 60; $offset = $clientTimeZone - $systemTimeZone; $timestamp = $timestamp + $offset * 60; } @@ -412,7 +412,7 @@ class OC_Util { } // Assume that if checkServer() succeeded before in this session, then all is fine. - if (\OC::$session->exists('checkServer_succeeded') && \OC::$session->get('checkServer_succeeded')) { + if (\OC::$server->getSession()->exists('checkServer_succeeded') && \OC::$server->getSession()->get('checkServer_succeeded')) { return $errors; } @@ -615,7 +615,7 @@ class OC_Util { $errors = array_merge($errors, self::checkDatabaseVersion()); // Cache the result of this function - \OC::$session->set('checkServer_succeeded', count($errors) == 0); + \OC::$server->getSession()->set('checkServer_succeeded', count($errors) == 0); return $errors; } @@ -938,13 +938,13 @@ class OC_Util { */ public static function callRegister() { // Check if a token exists - if (!\OC::$session->exists('requesttoken')) { + if (!\OC::$server->getSession()->exists('requesttoken')) { // No valid token found, generate a new one. $requestToken = self::generateRandomBytes(20); - \OC::$session->set('requesttoken', $requestToken); + \OC::$server->getSession()->set('requesttoken', $requestToken); } else { // Valid token already exists, send it - $requestToken = \OC::$session->get('requesttoken'); + $requestToken = \OC::$server->getSession()->get('requesttoken'); } return ($requestToken); } diff --git a/tests/lib/ocs/privatedata.php b/tests/lib/ocs/privatedata.php index 530750fabea..534fc21b07a 100644 --- a/tests/lib/ocs/privatedata.php +++ b/tests/lib/ocs/privatedata.php @@ -26,7 +26,7 @@ class Test_OC_OCS_Privatedata extends PHPUnit_Framework_TestCase private $appKey; public function setUp() { - \OC::$session->set('user_id', 'user1'); + \OC::$server->getSession()->set('user_id', 'user1'); $this->appKey = uniqid('app'); } diff --git a/tests/lib/share/share.php b/tests/lib/share/share.php index 59056003fca..0a8d7856915 100644 --- a/tests/lib/share/share.php +++ b/tests/lib/share/share.php @@ -740,7 +740,7 @@ class Test_Share extends PHPUnit_Framework_TestCase { * @param $item */ public function testCheckPasswordProtectedShare($expected, $item) { - \OC::$session->set('public_link_authenticated', 100); + \OC::$server->getSession()->set('public_link_authenticated', 100); $result = \OCP\Share::checkPasswordProtectedShare($item); $this->assertEquals($expected, $result); } @@ -767,8 +767,8 @@ class Test_Share extends PHPUnit_Framework_TestCase { return true; } - if ( \OC::$session->exists('public_link_authenticated') - && \OC::$session->get('public_link_authenticated') === $linkItem['id'] ) { + if ( \OC::$server->getSession()->exists('public_link_authenticated') + && \OC::$server->getSession()->get('public_link_authenticated') === $linkItem['id'] ) { return true; } * */ diff --git a/tests/startsessionlistener.php b/tests/startsessionlistener.php index ba049559c6e..1f3573555ca 100644 --- a/tests/startsessionlistener.php +++ b/tests/startsessionlistener.php @@ -31,9 +31,9 @@ class StartSessionListener implements PHPUnit_Framework_TestListener { public function endTest(PHPUnit_Framework_Test $test, $time) { // reopen the session - only allowed for memory session - if (\OC::$session instanceof \OC\Session\Memory) { + if (\OC::$server->getSession() instanceof \OC\Session\Memory) { /** @var $session \OC\Session\Memory */ - $session = \OC::$session; + $session = \OC::$server->getSession(); $session->reopen(); } } -- GitLab From f687794a4a3ea83e408e48eeb54425f49b64277b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Fri, 15 Aug 2014 19:29:48 +0200 Subject: [PATCH 32/56] be correct in deprecation documentation --- lib/base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/base.php b/lib/base.php index 2dd107411f0..0539814589e 100644 --- a/lib/base.php +++ b/lib/base.php @@ -71,7 +71,7 @@ class OC { public static $CLI = false; /** - * @deprecated use \OC::$session->getSession() instead + * @deprecated use \OC::$server->getSession() instead * @var \OC\Session\Session */ public static $session = null; -- GitLab From baa49cd58a670ca7fdd9211cf057b2257d86eff9 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 25 Jun 2014 14:04:06 +0200 Subject: [PATCH 33/56] Wizad: email attribute detection --- apps/user_ldap/lib/wizard.php | 64 +++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/apps/user_ldap/lib/wizard.php b/apps/user_ldap/lib/wizard.php index 0cec493d9ed..9a7f7520f56 100644 --- a/apps/user_ldap/lib/wizard.php +++ b/apps/user_ldap/lib/wizard.php @@ -128,6 +128,69 @@ class Wizard extends LDAPUtility { return $this->result; } + /** + * counts users with a specified attribute + * @param string $attr + * @return int|bool + */ + public function countUsersWithAttribute($attr) { + if(!$this->checkRequirements(array('ldapHost', + 'ldapPort', + 'ldapBase', + 'ldapUserFilter', + ))) { + return false; + } + + $access = $this->getAccess(); + $filter = $access->combineFilterWithAnd(array( + $this->configuration->ldapUserFilter, + $attr . '=*' + )); + + return $access->countUsers($filter); + } + + /** + * detects the most often used email attribute for users applying to the + * user list filter. If a setting is already present that returns at least + * one hit, the detection will be canceled. + * @return bool + */ + public function detectEmailAttribute() { + if(!$this->checkRequirements(array('ldapHost', + 'ldapPort', + 'ldapBase', + 'ldapUserFilter', + ))) { + return false; + } + + $attr = $this->configuration->ldapEmailAttribute; + if(!empty($attr)) { + $count = intval($this->countUsersWithAttribute($attr)); + if($count > 0) { + return false; + } + } + + $emailAttributes = array('mail', 'mailPrimaryAddress'); + $winner = ''; + $maxUsers = 0; + foreach($emailAttributes as $attr) { + $count = $this->countUsersWithAttribute($attr); + if($count > $maxUsers) { + $maxUsers = $count; + $winner = $attr; + } + } + + if($winner !== '') { + $this->result->addChange('ldap_email_attr', $winner); + } + + } + /** * @return WizardResult * @throws \Exception @@ -749,6 +812,7 @@ class Wizard extends LDAPUtility { if(empty($filter)) { $filter = '(objectclass=*)'; } + $this->detectEmailAttribute(); break; case self::LFILTER_GROUP_LIST: -- GitLab From 441c600c906a2ec55bdab123840be5d1d63bb679 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 25 Jun 2014 17:36:19 +0200 Subject: [PATCH 34/56] remove Access as hard dependency, inject it instead --- apps/user_ldap/ajax/wizard.php | 19 +++++++++++++-- apps/user_ldap/lib/wizard.php | 42 ++++++++------------------------- apps/user_ldap/tests/wizard.php | 17 ++++++++++--- 3 files changed, 41 insertions(+), 37 deletions(-) diff --git a/apps/user_ldap/ajax/wizard.php b/apps/user_ldap/ajax/wizard.php index ad75a384369..d5759c597a2 100644 --- a/apps/user_ldap/ajax/wizard.php +++ b/apps/user_ldap/ajax/wizard.php @@ -39,9 +39,24 @@ if(!isset($_POST['ldap_serverconfig_chooser'])) { } $prefix = $_POST['ldap_serverconfig_chooser']; -$ldapWrapper = new OCA\user_ldap\lib\LDAP(); +$ldapWrapper = new \OCA\user_ldap\lib\LDAP(); $configuration = new \OCA\user_ldap\lib\Configuration($prefix); -$wizard = new \OCA\user_ldap\lib\Wizard($configuration, $ldapWrapper); + +$con = new \OCA\user_ldap\lib\Connection($ldapWrapper, '', null); +$con->setConfiguration($configuration->getConfiguration()); +$con->ldapConfigurationActive = true; +$con->setIgnoreValidation(true); + +$userManager = new \OCA\user_ldap\lib\user\Manager( + \OC::$server->getConfig(), + new \OCA\user_ldap\lib\FilesystemHelper(), + new \OCA\user_ldap\lib\LogWrapper(), + \OC::$server->getAvatarManager(), + new \OCP\Image()); + +$access = new \OCA\user_ldap\lib\Access($con, $ldapWrapper, $userManager); + +$wizard = new \OCA\user_ldap\lib\Wizard($configuration, $ldapWrapper, $access); switch($action) { case 'guessPortAndTLS': diff --git a/apps/user_ldap/lib/wizard.php b/apps/user_ldap/lib/wizard.php index 9a7f7520f56..25dc4598ffb 100644 --- a/apps/user_ldap/lib/wizard.php +++ b/apps/user_ldap/lib/wizard.php @@ -25,6 +25,7 @@ namespace OCA\user_ldap\lib; class Wizard extends LDAPUtility { static protected $l; + protected $access; protected $cr; protected $configuration; protected $result; @@ -48,12 +49,13 @@ class Wizard extends LDAPUtility { * @param Configuration $configuration an instance of Configuration * @param ILDAPWrapper $ldap an instance of ILDAPWrapper */ - public function __construct(Configuration $configuration, ILDAPWrapper $ldap) { + public function __construct(Configuration $configuration, ILDAPWrapper $ldap, Access $access) { parent::__construct($ldap); $this->configuration = $configuration; if(is_null(Wizard::$l)) { Wizard::$l = \OC_L10N::get('user_ldap'); } + $this->access = $access; $this->result = new WizardResult; } @@ -78,11 +80,10 @@ class Wizard extends LDAPUtility { throw new \Exception('Requirements not met', 400); } - $ldapAccess = $this->getAccess(); if($type === 'groups') { - $result = $ldapAccess->countGroups($filter); + $result = $this->access->countGroups($filter); } else if($type === 'users') { - $result = $ldapAccess->countUsers($filter); + $result = $this->access->countUsers($filter); } else { throw new \Exception('internal error: invald object type', 500); } @@ -142,13 +143,12 @@ class Wizard extends LDAPUtility { return false; } - $access = $this->getAccess(); - $filter = $access->combineFilterWithAnd(array( + $filter = $this->access->combineFilterWithAnd(array( $this->configuration->ldapUserFilter, $attr . '=*' )); - return $access->countUsers($filter); + return $this->access->countUsers($filter); } /** @@ -352,7 +352,6 @@ class Wizard extends LDAPUtility { */ public function fetchGroups($dbKey, $confKey) { $obclasses = array('posixGroup', 'group', 'zimbraDistributionList', 'groupOfNames'); - $ldapAccess = $this->getAccess(); $filterParts = array(); foreach($obclasses as $obclass) { @@ -361,15 +360,15 @@ class Wizard extends LDAPUtility { //we filter for everything //- that looks like a group and //- has the group display name set - $filter = $ldapAccess->combineFilterWithOr($filterParts); - $filter = $ldapAccess->combineFilterWithAnd(array($filter, 'cn=*')); + $filter = $this->access->combineFilterWithOr($filterParts); + $filter = $this->access->combineFilterWithAnd(array($filter, 'cn=*')); $groupNames = array(); $groupEntries = array(); $limit = 400; $offset = 0; do { - $result = $ldapAccess->searchGroups($filter, array('cn','dn'), $limit, $offset); + $result = $this->access->searchGroups($filter, array('cn'), $limit, $offset); foreach($result as $item) { $groupNames[] = $item['cn']; $groupEntries[] = $item; @@ -1168,27 +1167,6 @@ class Wizard extends LDAPUtility { } } - /** - * creates and returns an Access instance - * @return \OCA\user_ldap\lib\Access - */ - private function getAccess() { - $con = new Connection($this->ldap, '', null); - $con->setConfiguration($this->configuration->getConfiguration()); - $con->ldapConfigurationActive = true; - $con->setIgnoreValidation(true); - - $userManager = new user\Manager( - \OC::$server->getConfig(), - new FilesystemHelper(), - new LogWrapper(), - \OC::$server->getAvatarManager(), - new \OCP\Image()); - - $ldapAccess = new Access($con, $this->ldap, $userManager); - return $ldapAccess; - } - /** * @return bool|mixed */ diff --git a/apps/user_ldap/tests/wizard.php b/apps/user_ldap/tests/wizard.php index 50461432c42..fcf4d71087f 100644 --- a/apps/user_ldap/tests/wizard.php +++ b/apps/user_ldap/tests/wizard.php @@ -46,13 +46,24 @@ class Test_Wizard extends \PHPUnit_Framework_TestCase { static $conMethods; if(is_null($conMethods)) { - $conMethods = get_class_methods('\OCA\user_ldap\lib\Configuration'); + $confMethods = get_class_methods('\OCA\user_ldap\lib\Configuration'); + $connMethods = get_class_methods('\OCA\user_ldap\lib\Connection'); + $accMethods = get_class_methods('\OCA\user_ldap\lib\Access'); } $lw = $this->getMock('\OCA\user_ldap\lib\ILDAPWrapper'); $conf = $this->getMock('\OCA\user_ldap\lib\Configuration', - $conMethods, + $confMethods, array($lw, null, null)); - return array(new Wizard($conf, $lw), $conf, $lw); + + $connector = $this->getMock('\OCA\user_ldap\lib\Connection', + $connMethods, array($lw, null, null)); + $um = $this->getMockBuilder('\OCA\user_ldap\lib\user\Manager') + ->disableOriginalConstructor() + ->getMock(); + $access = $this->getMock('\OCA\user_ldap\lib\Access', + $accMethods, array($connector, $lw, $um)); + + return array(new Wizard($conf, $lw, $access), $conf, $lw); } private function prepareLdapWrapperForConnections(&$ldap) { -- GitLab From f47a4a8c158f538d5febedec7282f576360a4d02 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 25 Jun 2014 18:01:04 +0200 Subject: [PATCH 35/56] add unit test for mail detection --- apps/user_ldap/lib/wizard.php | 3 +- apps/user_ldap/tests/wizard.php | 138 +++++++++++++++++++++++++++++++- lib/private/log/owncloud.php | 2 +- 3 files changed, 140 insertions(+), 3 deletions(-) diff --git a/apps/user_ldap/lib/wizard.php b/apps/user_ldap/lib/wizard.php index 25dc4598ffb..36b855e83f6 100644 --- a/apps/user_ldap/lib/wizard.php +++ b/apps/user_ldap/lib/wizard.php @@ -155,7 +155,7 @@ class Wizard extends LDAPUtility { * detects the most often used email attribute for users applying to the * user list filter. If a setting is already present that returns at least * one hit, the detection will be canceled. - * @return bool + * @return bool|string */ public function detectEmailAttribute() { if(!$this->checkRequirements(array('ldapHost', @@ -189,6 +189,7 @@ class Wizard extends LDAPUtility { $this->result->addChange('ldap_email_attr', $winner); } + return $winner; } /** diff --git a/apps/user_ldap/tests/wizard.php b/apps/user_ldap/tests/wizard.php index fcf4d71087f..d6de83bbdd6 100644 --- a/apps/user_ldap/tests/wizard.php +++ b/apps/user_ldap/tests/wizard.php @@ -63,7 +63,7 @@ class Test_Wizard extends \PHPUnit_Framework_TestCase { $access = $this->getMock('\OCA\user_ldap\lib\Access', $accMethods, array($connector, $lw, $um)); - return array(new Wizard($conf, $lw, $access), $conf, $lw); + return array(new Wizard($conf, $lw, $access), $conf, $lw, $access); } private function prepareLdapWrapperForConnections(&$ldap) { @@ -218,6 +218,142 @@ class Test_Wizard extends \PHPUnit_Framework_TestCase { unset($uidnumber); } + public function testDetectEmailAttributeAlreadySet() { + list($wizard, $configuration, $ldap, $access) + = $this->getWizardAndMocks(); + + $configuration->expects($this->any()) + ->method('__get') + ->will($this->returnCallback(function ($name) { + if($name === 'ldapEmailAttribute') { + return 'myEmailAttribute'; + } else { + //for requirement checks + return 'let me pass'; + } + })); + + $access->expects($this->once()) + ->method('countUsers') + ->will($this->returnValue(42)); + + $wizard->detectEmailAttribute(); + } + + public function testDetectEmailAttributeOverrideSet() { + list($wizard, $configuration, $ldap, $access) + = $this->getWizardAndMocks(); + + $configuration->expects($this->any()) + ->method('__get') + ->will($this->returnCallback(function ($name) { + if($name === 'ldapEmailAttribute') { + return 'myEmailAttribute'; + } else { + //for requirement checks + return 'let me pass'; + } + })); + + $access->expects($this->exactly(3)) + ->method('combineFilterWithAnd') + ->will($this->returnCallback(function ($filterParts) { + return str_replace('=*', '', array_pop($filterParts)); + })); + + $access->expects($this->exactly(3)) + ->method('countUsers') + ->will($this->returnCallback(function ($filter) { + if($filter === 'myEmailAttribute') { + return 0; + } else if($filter === 'mail') { + return 3; + } else if($filter === 'mailPrimaryAddress') { + return 17; + } + var_dump($filter); + })); + + $resultAttribute = $wizard->detectEmailAttribute(); + $this->assertSame('mailPrimaryAddress', $resultAttribute); + } + + public function testDetectEmailAttributeFind() { + list($wizard, $configuration, $ldap, $access) + = $this->getWizardAndMocks(); + + $configuration->expects($this->any()) + ->method('__get') + ->will($this->returnCallback(function ($name) { + if($name === 'ldapEmailAttribute') { + return ''; + } else { + //for requirement checks + return 'let me pass'; + } + })); + + $access->expects($this->exactly(2)) + ->method('combineFilterWithAnd') + ->will($this->returnCallback(function ($filterParts) { + return str_replace('=*', '', array_pop($filterParts)); + })); + + $access->expects($this->exactly(2)) + ->method('countUsers') + ->will($this->returnCallback(function ($filter) { + if($filter === 'myEmailAttribute') { + return 0; + } else if($filter === 'mail') { + return 3; + } else if($filter === 'mailPrimaryAddress') { + return 17; + } + var_dump($filter); + })); + + $resultAttribute = $wizard->detectEmailAttribute(); + $this->assertSame('mailPrimaryAddress', $resultAttribute); + } + + public function testDetectEmailAttributeFindNothing() { + list($wizard, $configuration, $ldap, $access) + = $this->getWizardAndMocks(); + + $configuration->expects($this->any()) + ->method('__get') + ->will($this->returnCallback(function ($name) { + if($name === 'ldapEmailAttribute') { + return 'myEmailAttribute'; + } else { + //for requirement checks + return 'let me pass'; + } + })); + + $access->expects($this->exactly(3)) + ->method('combineFilterWithAnd') + ->will($this->returnCallback(function ($filterParts) { + return str_replace('=*', '', array_pop($filterParts)); + })); + + $access->expects($this->exactly(3)) + ->method('countUsers') + ->will($this->returnCallback(function ($filter) { + if($filter === 'myEmailAttribute') { + return 0; + } else if($filter === 'mail') { + return 0; + } else if($filter === 'mailPrimaryAddress') { + return 0; + } + var_dump($filter); + })); + + $resultAttribute = $wizard->detectEmailAttribute(); + $this->assertSame('', $resultAttribute); + } + public function testCumulativeSearchOnAttributeSkipReadDN() { // tests that there is no infinite loop, when skipping already processed // DNs (they can be returned multiple times for multiple filters ) diff --git a/lib/private/log/owncloud.php b/lib/private/log/owncloud.php index 08d0b7d5f93..9fcfccd48c2 100644 --- a/lib/private/log/owncloud.php +++ b/lib/private/log/owncloud.php @@ -85,7 +85,7 @@ class OC_Log_Owncloud { } $entry = json_encode($entry); $handle = @fopen(self::$logFile, 'a'); - @chmod(self::$logFile, 0640); +// @chmod(self::$logFile, 0640); if ($handle) { fwrite($handle, $entry."\n"); fclose($handle); -- GitLab From 34761dabb17a2ee06924f34679316c7889b456a7 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 25 Jun 2014 18:08:05 +0200 Subject: [PATCH 36/56] write log message, if original value was changed --- apps/user_ldap/lib/wizard.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/apps/user_ldap/lib/wizard.php b/apps/user_ldap/lib/wizard.php index 36b855e83f6..8e6e47b1f6b 100644 --- a/apps/user_ldap/lib/wizard.php +++ b/apps/user_ldap/lib/wizard.php @@ -172,6 +172,9 @@ class Wizard extends LDAPUtility { if($count > 0) { return false; } + $writeLog = true; + } else { + $writeLog = false; } $emailAttributes = array('mail', 'mailPrimaryAddress'); @@ -187,6 +190,11 @@ class Wizard extends LDAPUtility { if($winner !== '') { $this->result->addChange('ldap_email_attr', $winner); + if($writeLog) { + \OCP\Util::writeLog('user_ldap', 'The mail attribute has ' . + 'automatically been reset, because the original value ' . + 'did not return any results.', \OCP\Util::INFO); + } } return $winner; -- GitLab From 6958033db9f6bd2ff7e69b05a6cb064206957a65 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 25 Jun 2014 18:12:35 +0200 Subject: [PATCH 37/56] undo falsely changed log file --- lib/private/log/owncloud.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/log/owncloud.php b/lib/private/log/owncloud.php index 9fcfccd48c2..08d0b7d5f93 100644 --- a/lib/private/log/owncloud.php +++ b/lib/private/log/owncloud.php @@ -85,7 +85,7 @@ class OC_Log_Owncloud { } $entry = json_encode($entry); $handle = @fopen(self::$logFile, 'a'); -// @chmod(self::$logFile, 0640); + @chmod(self::$logFile, 0640); if ($handle) { fwrite($handle, $entry."\n"); fclose($handle); -- GitLab From 371cab367d2b786c0fadb3a76daeb3ba9138e164 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 25 Jun 2014 19:38:54 +0200 Subject: [PATCH 38/56] trigger email detection by Wizard upon any user filter filter change. before it happenend only upon user automatic list filter creation, but not on manual editing --- apps/user_ldap/ajax/wizard.php | 1 + apps/user_ldap/js/ldapFilter.js | 5 ++++- apps/user_ldap/js/settings.js | 18 +++++++++++++++--- apps/user_ldap/lib/wizard.php | 5 ++--- apps/user_ldap/tests/wizard.php | 14 ++++++++------ 5 files changed, 30 insertions(+), 13 deletions(-) diff --git a/apps/user_ldap/ajax/wizard.php b/apps/user_ldap/ajax/wizard.php index d5759c597a2..adbcf6ff414 100644 --- a/apps/user_ldap/ajax/wizard.php +++ b/apps/user_ldap/ajax/wizard.php @@ -61,6 +61,7 @@ $wizard = new \OCA\user_ldap\lib\Wizard($configuration, $ldapWrapper, $access); switch($action) { case 'guessPortAndTLS': case 'guessBaseDN': + case 'detectEmailAttribute': case 'determineGroupMemberAssoc': case 'determineUserObjectClasses': case 'determineGroupObjectClasses': diff --git a/apps/user_ldap/js/ldapFilter.js b/apps/user_ldap/js/ldapFilter.js index df3bd67aec2..e9f60e7ba3c 100644 --- a/apps/user_ldap/js/ldapFilter.js +++ b/apps/user_ldap/js/ldapFilter.js @@ -14,7 +14,7 @@ function LdapFilter(target) { } } -LdapFilter.prototype.compose = function() { +LdapFilter.prototype.compose = function(callback) { var action; if(this.locked) { @@ -50,6 +50,9 @@ LdapFilter.prototype.compose = function() { LdapWizard.countGroups(); LdapWizard.detectGroupMemberAssoc(); } + if(typeof callback !== 'undefined') { + callback(); + } }, function () { console.log('LDAP Wizard: could not compose filter. '+ diff --git a/apps/user_ldap/js/settings.js b/apps/user_ldap/js/settings.js index 87d755697cb..fd84ca1980b 100644 --- a/apps/user_ldap/js/settings.js +++ b/apps/user_ldap/js/settings.js @@ -340,6 +340,14 @@ var LdapWizard = { LdapWizard._countThings('countUsers'); }, + detectEmailAttribute: function() { + param = 'action=detectEmailAttribute'+ + '&ldap_serverconfig_chooser='+ + encodeURIComponent($('#ldap_serverconfig_chooser').val()); + //runs in the background, no callbacks necessary + LdapWizard.ajax(param, LdapWizard.applyChanges, function(){}); + }, + detectGroupMemberAssoc: function() { param = 'action=determineGroupMemberAssoc'+ '&ldap_serverconfig_chooser='+ @@ -577,7 +585,7 @@ var LdapWizard = { postInitUserFilter: function() { if(LdapWizard.userFilterObjectClassesHasRun && LdapWizard.userFilterAvailableGroupsHasRun) { - LdapWizard.userFilter.compose(); + LdapWizard.userFilter.compose(LdapWizard.detectEmailAttribute); LdapWizard.countUsers(); } }, @@ -619,6 +627,7 @@ var LdapWizard = { if(triggerObj.id == 'ldap_userlist_filter') { LdapWizard.countUsers(); + LdapWizard.detectEmailAttribute(); } else if(triggerObj.id == 'ldap_group_filter') { LdapWizard.countGroups(); LdapWizard.detectGroupMemberAssoc(); @@ -656,9 +665,12 @@ var LdapWizard = { LdapWizard._save($('#'+originalObj)[0], $.trim(values)); if(originalObj == 'ldap_userfilter_objectclass' || originalObj == 'ldap_userfilter_groups') { - LdapWizard.userFilter.compose(); + LdapWizard.userFilter.compose(LdapWizard.detectEmailAttribute); //when user filter is changed afterwards, login filter needs to //be adjusted, too + if(!LdapWizard.loginFilter) { + LdapWizard.initLoginFilter(); + } LdapWizard.loginFilter.compose(); } else if(originalObj == 'ldap_loginfilter_attributes') { LdapWizard.loginFilter.compose(); @@ -720,7 +732,7 @@ var LdapWizard = { LdapWizard._save({ id: modeKey }, LdapWizard.filterModeAssisted); if(moc.indexOf('user') >= 0) { LdapWizard.blacklistRemove('ldap_userlist_filter'); - LdapWizard.userFilter.compose(); + LdapWizard.userFilter.compose(LdapWizard.detectEmailAttribute); } else { LdapWizard.blacklistRemove('ldap_group_filter'); LdapWizard.groupFilter.compose(); diff --git a/apps/user_ldap/lib/wizard.php b/apps/user_ldap/lib/wizard.php index 8e6e47b1f6b..4118b45bc35 100644 --- a/apps/user_ldap/lib/wizard.php +++ b/apps/user_ldap/lib/wizard.php @@ -155,7 +155,7 @@ class Wizard extends LDAPUtility { * detects the most often used email attribute for users applying to the * user list filter. If a setting is already present that returns at least * one hit, the detection will be canceled. - * @return bool|string + * @return WizardResult|bool */ public function detectEmailAttribute() { if(!$this->checkRequirements(array('ldapHost', @@ -197,7 +197,7 @@ class Wizard extends LDAPUtility { } } - return $winner; + return $this->result; } /** @@ -820,7 +820,6 @@ class Wizard extends LDAPUtility { if(empty($filter)) { $filter = '(objectclass=*)'; } - $this->detectEmailAttribute(); break; case self::LFILTER_GROUP_LIST: diff --git a/apps/user_ldap/tests/wizard.php b/apps/user_ldap/tests/wizard.php index d6de83bbdd6..867fba11f27 100644 --- a/apps/user_ldap/tests/wizard.php +++ b/apps/user_ldap/tests/wizard.php @@ -274,8 +274,9 @@ class Test_Wizard extends \PHPUnit_Framework_TestCase { var_dump($filter); })); - $resultAttribute = $wizard->detectEmailAttribute(); - $this->assertSame('mailPrimaryAddress', $resultAttribute); + $result = $wizard->detectEmailAttribute()->getResultArray(); + $this->assertSame('mailPrimaryAddress', + $result['changes']['ldap_email_attr']); } public function testDetectEmailAttributeFind() { @@ -312,8 +313,9 @@ class Test_Wizard extends \PHPUnit_Framework_TestCase { var_dump($filter); })); - $resultAttribute = $wizard->detectEmailAttribute(); - $this->assertSame('mailPrimaryAddress', $resultAttribute); + $result = $wizard->detectEmailAttribute()->getResultArray(); + $this->assertSame('mailPrimaryAddress', + $result['changes']['ldap_email_attr']); } public function testDetectEmailAttributeFindNothing() { @@ -350,8 +352,8 @@ class Test_Wizard extends \PHPUnit_Framework_TestCase { var_dump($filter); })); - $resultAttribute = $wizard->detectEmailAttribute(); - $this->assertSame('', $resultAttribute); + $result = $wizard->detectEmailAttribute(); + $this->assertSame(false, $result->hasChanges()); } public function testCumulativeSearchOnAttributeSkipReadDN() { -- GitLab From aa0ddf21b5b94d52804c81f35f82890ffeeabf1a Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Mon, 11 Aug 2014 16:05:43 +0200 Subject: [PATCH 39/56] adjust static method vars as well --- apps/user_ldap/tests/wizard.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/user_ldap/tests/wizard.php b/apps/user_ldap/tests/wizard.php index 867fba11f27..1f420f9ee8a 100644 --- a/apps/user_ldap/tests/wizard.php +++ b/apps/user_ldap/tests/wizard.php @@ -43,9 +43,11 @@ class Test_Wizard extends \PHPUnit_Framework_TestCase { } private function getWizardAndMocks() { - static $conMethods; + static $confMethods; + static $connMethods; + static $accMethods; - if(is_null($conMethods)) { + if(is_null($confMethods)) { $confMethods = get_class_methods('\OCA\user_ldap\lib\Configuration'); $connMethods = get_class_methods('\OCA\user_ldap\lib\Connection'); $accMethods = get_class_methods('\OCA\user_ldap\lib\Access'); -- GitLab From 7d1a0d4739c41098ccc2827cbc3a1715ad93f3e9 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 29 Aug 2014 12:05:01 +0200 Subject: [PATCH 40/56] define min height/width for icon classes to make sure they show --- core/css/icons.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/css/icons.css b/core/css/icons.css index b3a9454b565..095c29b3121 100644 --- a/core/css/icons.css +++ b/core/css/icons.css @@ -1,6 +1,8 @@ [class^="icon-"], [class*=" icon-"] { background-repeat: no-repeat; background-position: center; + min-width: 16px; + min-height: 16px; } -- GitLab From 0bb460c9b506593d04480c7b15278b2992aefa23 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 29 Aug 2014 15:17:37 +0200 Subject: [PATCH 41/56] retrieve local users, groups and group members in a sorted way --- lib/private/group/database.php | 4 ++-- lib/private/user/database.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/private/group/database.php b/lib/private/group/database.php index 8d6ea1f50a5..e6a5565b20e 100644 --- a/lib/private/group/database.php +++ b/lib/private/group/database.php @@ -168,7 +168,7 @@ class OC_Group_Database extends OC_Group_Backend { * Returns a list with all groups */ public function getGroups($search = '', $limit = null, $offset = null) { - $stmt = OC_DB::prepare('SELECT `gid` FROM `*PREFIX*groups` WHERE `gid` LIKE ?', $limit, $offset); + $stmt = OC_DB::prepare('SELECT `gid` FROM `*PREFIX*groups` WHERE `gid` LIKE ? ORDER BY `gid` ASC', $limit, $offset); $result = $stmt->execute(array('%' . $search . '%')); $groups = array(); while ($row = $result->fetchRow()) { @@ -200,7 +200,7 @@ class OC_Group_Database extends OC_Group_Backend { * @return array an array of user ids */ public function usersInGroup($gid, $search = '', $limit = null, $offset = null) { - $stmt = OC_DB::prepare('SELECT `uid` FROM `*PREFIX*group_user` WHERE `gid` = ? AND `uid` LIKE ?', + $stmt = OC_DB::prepare('SELECT `uid` FROM `*PREFIX*group_user` WHERE `gid` = ? AND `uid` LIKE ? ORDER BY `uid` ASC', $limit, $offset); $result = $stmt->execute(array($gid, '%'.$search.'%')); diff --git a/lib/private/user/database.php b/lib/private/user/database.php index e9844f0f79c..3a76adbe763 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -157,7 +157,7 @@ class OC_User_Database extends OC_User_Backend { $displayNames = array(); $query = OC_DB::prepare('SELECT `uid`, `displayname` FROM `*PREFIX*users`' . ' WHERE LOWER(`displayname`) LIKE LOWER(?) OR ' - . 'LOWER(`uid`) LIKE LOWER(?)', $limit, $offset); + . 'LOWER(`uid`) LIKE LOWER(?) ORDER BY `uid` ASC', $limit, $offset); $result = $query->execute(array('%' . $search . '%', '%' . $search . '%')); $users = array(); while ($row = $result->fetchRow()) { @@ -231,7 +231,7 @@ class OC_User_Database extends OC_User_Backend { * Get a list of all users. */ public function getUsers($search = '', $limit = null, $offset = null) { - $query = OC_DB::prepare('SELECT `uid` FROM `*PREFIX*users` WHERE LOWER(`uid`) LIKE LOWER(?)', $limit, $offset); + $query = OC_DB::prepare('SELECT `uid` FROM `*PREFIX*users` WHERE LOWER(`uid`) LIKE LOWER(?) ORDER BY `uid` ASC', $limit, $offset); $result = $query->execute(array('%' . $search . '%')); $users = array(); while ($row = $result->fetchRow()) { -- GitLab From dd7b8e4555d3ad091f802f7d72ab38d38d632ea8 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 29 Aug 2014 10:50:39 +0200 Subject: [PATCH 42/56] Remove insecure fallback random number generation --- lib/private/util.php | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/lib/private/util.php b/lib/private/util.php index c79f374771c..ad078e8a44c 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -1208,6 +1208,7 @@ class OC_Util { * * @param int $length of the random string * @return string + * @throws Exception when no secure RNG source is available * Please also update secureRNGAvailable if you change something here */ public static function generateRandomBytes($length = 30) { @@ -1228,17 +1229,8 @@ class OC_Util { } } - // Fallback to mt_rand() - $characters = '0123456789'; - $characters .= 'abcdefghijklmnopqrstuvwxyz'; - $charactersLength = strlen($characters) - 1; - $pseudoByte = ""; - - // Select some random characters - for ($i = 0; $i < $length; $i++) { - $pseudoByte .= $characters[mt_rand(0, $charactersLength)]; - } - return $pseudoByte; + // No random numbers are better then bad random numbers + throw new \Exception('No secure random number generator available, please install the php-openssl extension'); } /** -- GitLab From 3de69ff81b040193ced9bc091b42c2c4764d659e Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 29 Aug 2014 10:52:52 +0200 Subject: [PATCH 43/56] Don't register the call when rendering error pages --- lib/private/template.php | 9 +++++---- lib/private/templatelayout.php | 4 +++- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/lib/private/template.php b/lib/private/template.php index d6afe1a3e40..73fa53a2fa3 100644 --- a/lib/private/template.php +++ b/lib/private/template.php @@ -29,7 +29,7 @@ require_once __DIR__.'/template/functions.php'; class OC_Template extends \OC\Template\Base { private $renderas; // Create a full page? private $path; // The path to the template - private $headers=array(); //custom headers + private $headers = array(); //custom headers protected $app; // app id /** @@ -37,6 +37,7 @@ class OC_Template extends \OC\Template\Base { * @param string $app app providing the template * @param string $name of the template file (without suffix) * @param string $renderas = ""; produce a full page + * @param bool $registerCall = true * @return OC_Template object * * This function creates an OC_Template object. @@ -45,14 +46,14 @@ class OC_Template extends \OC\Template\Base { * according layout. For now, renderas can be set to "guest", "user" or * "admin". */ - public function __construct( $app, $name, $renderas = "" ) { + public function __construct( $app, $name, $renderas = "", $registerCall = true ) { // Read the selected theme from the config file $theme = OC_Util::getTheme(); // Read the detected formfactor and use the right file name. $fext = self::getFormFactorExtension(); - $requesttoken = OC::$server->getSession() ? OC_Util::callRegister() : ''; + $requesttoken = (OC::$server->getSession() and $registerCall) ? OC_Util::callRegister() : ''; $parts = explode('/', $app); // fix translation when app is something like core/lostpassword $l10n = OC_L10N::get($parts[0]); @@ -253,7 +254,7 @@ class OC_Template extends \OC\Template\Base { * Warning: All data passed to $hint needs to get sanitized using OC_Util::sanitizeHTML */ public static function printErrorPage( $error_msg, $hint = '' ) { - $content = new OC_Template( '', 'error', 'error' ); + $content = new \OC_Template( '', 'error', 'error', false ); $errors = array(array('error' => $error_msg, 'hint' => $hint)); $content->assign( 'errors', $errors ); $content->printPage(); diff --git a/lib/private/templatelayout.php b/lib/private/templatelayout.php index a5dd9a0c614..b9a97186945 100644 --- a/lib/private/templatelayout.php +++ b/lib/private/templatelayout.php @@ -59,7 +59,9 @@ class OC_TemplateLayout extends OC_Template { $this->assign( 'user_uid', OC_User::getUser() ); $this->assign( 'appsmanagement_active', strpos(OC_Request::requestUri(), OC_Helper::linkToRoute('settings_apps')) === 0 ); $this->assign('enableAvatars', \OC_Config::getValue('enable_avatars', true)); - } else if ($renderas == 'guest' || $renderas == 'error') { + } else if ($renderas == 'error') { + parent::__construct('core', 'layout.guest', '', false); + } else if ($renderas == 'guest') { parent::__construct('core', 'layout.guest'); } else { parent::__construct('core', 'layout.base'); -- GitLab From 3ba66e33f8f2018350e96a807475960955f1e9c3 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 29 Aug 2014 16:31:43 +0200 Subject: [PATCH 44/56] set quota bar maximum to 100% to prevent overflow --- core/css/styles.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/css/styles.css b/core/css/styles.css index 7e41e904127..a632eb46585 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -736,7 +736,9 @@ code { font-family:"Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono font-weight: normal; white-space: nowrap; border-bottom-left-radius: 3px; - border-top-left-radius: 3px; } + border-top-left-radius: 3px; + max-width: 100%; +} #quotatext {padding:.6em 1em;} .pager { list-style:none; float:right; display:inline; margin:.7em 13em 0 0; } -- GitLab From 41ace0391104ca7b65167d3bcee3b1960d21bb89 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 29 Aug 2014 16:46:08 +0200 Subject: [PATCH 45/56] color quota bar yellow for feedback if usage is over 90% --- settings/templates/personal.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 661c242ea6b..33534e59f19 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -34,7 +34,8 @@
    -
    +

    t('You have used %s of the available %s', array($_['usage'], $_['total_space'])));?> -- GitLab From 95382e994520966a71d56fb5113d8ed27ab5d8f6 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 29 Aug 2014 16:52:41 +0200 Subject: [PATCH 46/56] =?UTF-8?q?also=20add=20minimum=20width=20for=20quot?= =?UTF-8?q?a=20bar=20so=20it=E2=80=99s=20apparent=20how=20it=20will=20look?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/css/styles.css | 1 + 1 file changed, 1 insertion(+) diff --git a/core/css/styles.css b/core/css/styles.css index a632eb46585..0d3b182ea41 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -737,6 +737,7 @@ code { font-family:"Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono white-space: nowrap; border-bottom-left-radius: 3px; border-top-left-radius: 3px; + min-width: 1%; max-width: 100%; } #quotatext {padding:.6em 1em;} -- GitLab From 10382ef2f07d1e80dfd4920b98b6e33d6efef496 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Thu, 28 Aug 2014 15:54:28 +0200 Subject: [PATCH 47/56] allow empty hostname and dots in service name for oracle autosetup --- lib/private/setup/oci.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/lib/private/setup/oci.php b/lib/private/setup/oci.php index 24863b9e38a..23b5232438a 100644 --- a/lib/private/setup/oci.php +++ b/lib/private/setup/oci.php @@ -14,9 +14,23 @@ class OCI extends AbstractDatabase { } else { $this->dbtablespace = 'USERS'; } + // allow empty hostname for oracle + $this->dbhost = $config['dbhost']; + \OC_Config::setValue('dbhost', $this->dbhost); \OC_Config::setValue('dbtablespace', $this->dbtablespace); } + public function validate($config) { + $errors = array(); + if(empty($config['dbuser'])) { + $errors[] = $this->trans->t("%s enter the database username.", array($this->dbprettyname)); + } + if(empty($config['dbname'])) { + $errors[] = $this->trans->t("%s enter the database name.", array($this->dbprettyname)); + } + return $errors; + } + public function setupDatabase($username) { $e_host = addslashes($this->dbhost); $e_dbname = addslashes($this->dbname); -- GitLab From 0aede0f413f8edd622457f41942eb410d8696924 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Fri, 29 Aug 2014 17:50:59 +0200 Subject: [PATCH 48/56] move hardcoded color to CSS class - for themeability --- core/css/styles.css | 4 ++++ settings/templates/personal.php | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 0d3b182ea41..08ffaa72e10 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -742,6 +742,10 @@ code { font-family:"Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono } #quotatext {padding:.6em 1em;} +#quota div.quota-warning { + background-color: #fc4; +} + .pager { list-style:none; float:right; display:inline; margin:.7em 13em 0 0; } .pager li { display:inline-block; } diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 33534e59f19..c1fb20dce05 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -34,8 +34,8 @@

    -
    +
    80): ?> class="quota-warning" >

    t('You have used %s of the available %s', array($_['usage'], $_['total_space'])));?> -- GitLab From 53f3b7ab52a938b525c40436512e545af38706d2 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 30 Aug 2014 01:57:04 -0400 Subject: [PATCH 49/56] [tx-robot] updated from transifex --- apps/files/l10n/et_EE.php | 1 + apps/files_encryption/l10n/et_EE.php | 1 + apps/files_external/l10n/bg_BG.php | 2 + apps/files_external/l10n/en_GB.php | 2 + apps/files_external/l10n/es.php | 2 + apps/files_external/l10n/et_EE.php | 2 + apps/files_external/l10n/fi_FI.php | 3 + apps/files_external/l10n/it.php | 2 + apps/files_external/l10n/nl.php | 2 + apps/files_external/l10n/pt_BR.php | 2 + apps/files_external/l10n/sl.php | 2 + apps/files_external/l10n/tr.php | 2 + apps/files_sharing/l10n/et_EE.php | 1 + apps/files_trashbin/l10n/bn_BD.php | 8 +- apps/files_versions/l10n/bn_BD.php | 6 +- core/l10n/bn_BD.php | 2 + core/l10n/et_EE.php | 1 + core/l10n/fi_FI.php | 1 + l10n/ach/settings.po | 94 ++++++++++--------- l10n/ady/settings.po | 94 ++++++++++--------- l10n/af_ZA/core.po | 16 ++-- l10n/af_ZA/lib.po | 50 +++++----- l10n/af_ZA/settings.po | 94 ++++++++++--------- l10n/ak/settings.po | 94 ++++++++++--------- l10n/am_ET/settings.po | 94 ++++++++++--------- l10n/ar/core.po | 16 ++-- l10n/ar/files.po | 4 +- l10n/ar/files_external.po | 14 +-- l10n/ar/files_trashbin.po | 4 +- l10n/ar/lib.po | 50 +++++----- l10n/ar/settings.po | 80 ++++++++-------- l10n/ast/core.po | 16 ++-- l10n/ast/files.po | 4 +- l10n/ast/files_external.po | 14 +-- l10n/ast/files_trashbin.po | 4 +- l10n/ast/lib.po | 50 +++++----- l10n/ast/settings.po | 80 ++++++++-------- l10n/ast/user_ldap.po | 66 +++++++------- l10n/az/core.po | 16 ++-- l10n/az/files.po | 4 +- l10n/az/files_external.po | 14 +-- l10n/az/files_trashbin.po | 4 +- l10n/az/lib.po | 50 +++++----- l10n/az/settings.po | 132 ++++++++++++++------------- l10n/be/core.po | 16 ++-- l10n/be/lib.po | 50 +++++----- l10n/be/settings.po | 94 ++++++++++--------- l10n/bg_BG/core.po | 16 ++-- l10n/bg_BG/files.po | 4 +- l10n/bg_BG/files_external.po | 21 +++-- l10n/bg_BG/files_trashbin.po | 4 +- l10n/bg_BG/lib.po | 50 +++++----- l10n/bg_BG/settings.po | 82 +++++++++-------- l10n/bg_BG/user_ldap.po | 62 ++++++------- l10n/bn_BD/core.po | 20 ++-- l10n/bn_BD/files.po | 4 +- l10n/bn_BD/files_external.po | 14 +-- l10n/bn_BD/files_sharing.po | 4 +- l10n/bn_BD/files_trashbin.po | 18 ++-- l10n/bn_BD/files_versions.po | 17 ++-- l10n/bn_BD/lib.po | 73 +++++++-------- l10n/bn_BD/settings.po | 82 +++++++++-------- l10n/bn_BD/user_ldap.po | 36 ++++---- l10n/bn_IN/core.po | 16 ++-- l10n/bn_IN/files.po | 4 +- l10n/bn_IN/files_external.po | 14 +-- l10n/bn_IN/files_trashbin.po | 4 +- l10n/bn_IN/lib.po | 50 +++++----- l10n/bn_IN/settings.po | 80 ++++++++-------- l10n/bs/settings.po | 94 ++++++++++--------- l10n/ca/core.po | 16 ++-- l10n/ca/files.po | 4 +- l10n/ca/files_external.po | 14 +-- l10n/ca/files_trashbin.po | 4 +- l10n/ca/lib.po | 50 +++++----- l10n/ca/settings.po | 80 ++++++++-------- l10n/ca/user_ldap.po | 62 ++++++------- l10n/ca@valencia/settings.po | 94 ++++++++++--------- l10n/cs_CZ/core.po | 16 ++-- l10n/cs_CZ/files.po | 4 +- l10n/cs_CZ/files_external.po | 14 +-- l10n/cs_CZ/files_trashbin.po | 4 +- l10n/cs_CZ/lib.po | 50 +++++----- l10n/cs_CZ/settings.po | 82 +++++++++-------- l10n/cs_CZ/user_ldap.po | 62 ++++++------- l10n/cy_GB/core.po | 16 ++-- l10n/cy_GB/files.po | 4 +- l10n/cy_GB/files_external.po | 14 +-- l10n/cy_GB/files_trashbin.po | 4 +- l10n/cy_GB/lib.po | 50 +++++----- l10n/cy_GB/settings.po | 80 ++++++++-------- l10n/da/core.po | 16 ++-- l10n/da/files.po | 4 +- l10n/da/files_external.po | 14 +-- l10n/da/files_trashbin.po | 4 +- l10n/da/lib.po | 50 +++++----- l10n/da/settings.po | 82 +++++++++-------- l10n/de/core.po | 16 ++-- l10n/de/files.po | 4 +- l10n/de/files_external.po | 14 +-- l10n/de/files_trashbin.po | 4 +- l10n/de/lib.po | 50 +++++----- l10n/de/settings.po | 82 +++++++++-------- l10n/de/user_ldap.po | 62 ++++++------- l10n/de_AT/core.po | 16 ++-- l10n/de_AT/files.po | 4 +- l10n/de_AT/files_external.po | 14 +-- l10n/de_AT/files_trashbin.po | 4 +- l10n/de_AT/lib.po | 50 +++++----- l10n/de_AT/settings.po | 80 ++++++++-------- l10n/de_AT/user_ldap.po | 36 ++++---- l10n/de_CH/core.po | 16 ++-- l10n/de_CH/files.po | 4 +- l10n/de_CH/files_external.po | 14 +-- l10n/de_CH/files_trashbin.po | 4 +- l10n/de_CH/lib.po | 50 +++++----- l10n/de_CH/settings.po | 80 ++++++++-------- l10n/de_DE/core.po | 16 ++-- l10n/de_DE/files.po | 4 +- l10n/de_DE/files_external.po | 14 +-- l10n/de_DE/files_trashbin.po | 4 +- l10n/de_DE/lib.po | 50 +++++----- l10n/de_DE/settings.po | 82 +++++++++-------- l10n/de_DE/user_ldap.po | 62 ++++++------- l10n/el/core.po | 16 ++-- l10n/el/files.po | 4 +- l10n/el/files_external.po | 14 +-- l10n/el/files_trashbin.po | 4 +- l10n/el/lib.po | 50 +++++----- l10n/el/settings.po | 82 +++++++++-------- l10n/el/user_ldap.po | 62 ++++++------- l10n/en@pirate/settings.po | 94 ++++++++++--------- l10n/en_GB/core.po | 16 ++-- l10n/en_GB/files.po | 4 +- l10n/en_GB/files_external.po | 20 ++-- l10n/en_GB/files_trashbin.po | 4 +- l10n/en_GB/lib.po | 50 +++++----- l10n/en_GB/settings.po | 82 +++++++++-------- l10n/en_GB/user_ldap.po | 62 ++++++------- l10n/en_NZ/settings.po | 94 ++++++++++--------- l10n/eo/core.po | 16 ++-- l10n/eo/files.po | 4 +- l10n/eo/files_external.po | 14 +-- l10n/eo/files_trashbin.po | 4 +- l10n/eo/lib.po | 50 +++++----- l10n/eo/settings.po | 80 ++++++++-------- l10n/eo/user_ldap.po | 62 ++++++------- l10n/es/core.po | 16 ++-- l10n/es/files.po | 4 +- l10n/es/files_external.po | 21 +++-- l10n/es/files_trashbin.po | 4 +- l10n/es/lib.po | 50 +++++----- l10n/es/settings.po | 82 +++++++++-------- l10n/es/user_ldap.po | 62 ++++++------- l10n/es_AR/core.po | 16 ++-- l10n/es_AR/files.po | 4 +- l10n/es_AR/files_external.po | 14 +-- l10n/es_AR/files_trashbin.po | 4 +- l10n/es_AR/lib.po | 50 +++++----- l10n/es_AR/settings.po | 80 ++++++++-------- l10n/es_BO/settings.po | 94 ++++++++++--------- l10n/es_CL/core.po | 16 ++-- l10n/es_CL/lib.po | 50 +++++----- l10n/es_CL/settings.po | 94 ++++++++++--------- l10n/es_CO/settings.po | 94 ++++++++++--------- l10n/es_CR/settings.po | 94 ++++++++++--------- l10n/es_EC/settings.po | 94 ++++++++++--------- l10n/es_MX/core.po | 16 ++-- l10n/es_MX/files.po | 4 +- l10n/es_MX/files_external.po | 14 +-- l10n/es_MX/files_trashbin.po | 4 +- l10n/es_MX/lib.po | 50 +++++----- l10n/es_MX/settings.po | 80 ++++++++-------- l10n/es_PE/settings.po | 94 ++++++++++--------- l10n/es_PY/settings.po | 94 ++++++++++--------- l10n/es_US/settings.po | 94 ++++++++++--------- l10n/es_UY/settings.po | 94 ++++++++++--------- l10n/et_EE/core.po | 20 ++-- l10n/et_EE/files.po | 8 +- l10n/et_EE/files_encryption.po | 14 +-- l10n/et_EE/files_external.po | 20 ++-- l10n/et_EE/files_sharing.po | 14 +-- l10n/et_EE/files_trashbin.po | 4 +- l10n/et_EE/lib.po | 56 ++++++------ l10n/et_EE/settings.po | 90 +++++++++--------- l10n/et_EE/user_ldap.po | 62 ++++++------- l10n/eu/core.po | 16 ++-- l10n/eu/files.po | 4 +- l10n/eu/files_external.po | 14 +-- l10n/eu/files_trashbin.po | 4 +- l10n/eu/lib.po | 50 +++++----- l10n/eu/settings.po | 82 +++++++++-------- l10n/eu/user_ldap.po | 62 ++++++------- l10n/eu_ES/core.po | 16 ++-- l10n/eu_ES/files.po | 4 +- l10n/eu_ES/files_external.po | 14 +-- l10n/eu_ES/files_trashbin.po | 4 +- l10n/eu_ES/settings.po | 80 ++++++++-------- l10n/fa/core.po | 16 ++-- l10n/fa/files.po | 4 +- l10n/fa/files_external.po | 14 +-- l10n/fa/files_trashbin.po | 4 +- l10n/fa/lib.po | 50 +++++----- l10n/fa/settings.po | 80 ++++++++-------- l10n/fa/user_ldap.po | 36 ++++---- l10n/fi_FI/core.po | 20 ++-- l10n/fi_FI/files.po | 4 +- l10n/fi_FI/files_external.po | 22 ++--- l10n/fi_FI/files_trashbin.po | 4 +- l10n/fi_FI/lib.po | 50 +++++----- l10n/fi_FI/settings.po | 80 ++++++++-------- l10n/fi_FI/user_ldap.po | 62 ++++++------- l10n/fr/core.po | 16 ++-- l10n/fr/files.po | 4 +- l10n/fr/files_external.po | 14 +-- l10n/fr/files_trashbin.po | 4 +- l10n/fr/lib.po | 50 +++++----- l10n/fr/settings.po | 80 ++++++++-------- l10n/fr/user_ldap.po | 62 ++++++------- l10n/fr_CA/settings.po | 94 ++++++++++--------- l10n/gl/core.po | 16 ++-- l10n/gl/files.po | 4 +- l10n/gl/files_external.po | 14 +-- l10n/gl/files_trashbin.po | 4 +- l10n/gl/lib.po | 50 +++++----- l10n/gl/settings.po | 80 ++++++++-------- l10n/gl/user_ldap.po | 36 ++++---- l10n/he/core.po | 16 ++-- l10n/he/files.po | 4 +- l10n/he/files_external.po | 14 +-- l10n/he/files_trashbin.po | 4 +- l10n/he/lib.po | 50 +++++----- l10n/he/settings.po | 80 ++++++++-------- l10n/hi/core.po | 16 ++-- l10n/hi/lib.po | 50 +++++----- l10n/hi/settings.po | 80 ++++++++-------- l10n/hi_IN/settings.po | 94 ++++++++++--------- l10n/hr/core.po | 16 ++-- l10n/hr/files.po | 4 +- l10n/hr/files_external.po | 14 +-- l10n/hr/files_trashbin.po | 4 +- l10n/hr/lib.po | 50 +++++----- l10n/hr/settings.po | 80 ++++++++-------- l10n/hu_HU/core.po | 16 ++-- l10n/hu_HU/files.po | 4 +- l10n/hu_HU/files_external.po | 14 +-- l10n/hu_HU/files_trashbin.po | 4 +- l10n/hu_HU/lib.po | 50 +++++----- l10n/hu_HU/settings.po | 82 +++++++++-------- l10n/hu_HU/user_ldap.po | 36 ++++---- l10n/hy/core.po | 16 ++-- l10n/hy/files.po | 4 +- l10n/hy/files_external.po | 14 +-- l10n/hy/files_trashbin.po | 4 +- l10n/hy/settings.po | 80 ++++++++-------- l10n/ia/core.po | 16 ++-- l10n/ia/files.po | 4 +- l10n/ia/files_external.po | 14 +-- l10n/ia/files_trashbin.po | 4 +- l10n/ia/lib.po | 50 +++++----- l10n/ia/settings.po | 80 ++++++++-------- l10n/id/core.po | 16 ++-- l10n/id/files.po | 4 +- l10n/id/files_external.po | 14 +-- l10n/id/files_trashbin.po | 4 +- l10n/id/lib.po | 50 +++++----- l10n/id/settings.po | 80 ++++++++-------- l10n/io/settings.po | 94 ++++++++++--------- l10n/is/core.po | 16 ++-- l10n/is/files.po | 4 +- l10n/is/files_external.po | 14 +-- l10n/is/files_trashbin.po | 4 +- l10n/is/lib.po | 50 +++++----- l10n/is/settings.po | 80 ++++++++-------- l10n/it/core.po | 16 ++-- l10n/it/files.po | 4 +- l10n/it/files_external.po | 20 ++-- l10n/it/files_trashbin.po | 4 +- l10n/it/lib.po | 50 +++++----- l10n/it/settings.po | 82 +++++++++-------- l10n/it/user_ldap.po | 62 ++++++------- l10n/ja/core.po | 16 ++-- l10n/ja/files.po | 4 +- l10n/ja/files_external.po | 14 +-- l10n/ja/files_trashbin.po | 4 +- l10n/ja/lib.po | 50 +++++----- l10n/ja/settings.po | 80 ++++++++-------- l10n/ja/user_ldap.po | 36 ++++---- l10n/jv/files_external.po | 14 +-- l10n/jv/settings.po | 94 ++++++++++--------- l10n/ka_GE/core.po | 16 ++-- l10n/ka_GE/files.po | 4 +- l10n/ka_GE/files_external.po | 14 +-- l10n/ka_GE/files_trashbin.po | 4 +- l10n/ka_GE/lib.po | 50 +++++----- l10n/ka_GE/settings.po | 80 ++++++++-------- l10n/km/core.po | 16 ++-- l10n/km/files.po | 4 +- l10n/km/files_external.po | 14 +-- l10n/km/files_trashbin.po | 4 +- l10n/km/lib.po | 50 +++++----- l10n/km/settings.po | 80 ++++++++-------- l10n/kn/settings.po | 94 ++++++++++--------- l10n/ko/core.po | 16 ++-- l10n/ko/files.po | 4 +- l10n/ko/files_external.po | 14 +-- l10n/ko/files_trashbin.po | 4 +- l10n/ko/lib.po | 50 +++++----- l10n/ko/settings.po | 80 ++++++++-------- l10n/ku_IQ/core.po | 16 ++-- l10n/ku_IQ/files_external.po | 14 +-- l10n/ku_IQ/lib.po | 50 +++++----- l10n/ku_IQ/settings.po | 94 ++++++++++--------- l10n/lb/core.po | 16 ++-- l10n/lb/files.po | 4 +- l10n/lb/files_external.po | 14 +-- l10n/lb/files_trashbin.po | 4 +- l10n/lb/lib.po | 50 +++++----- l10n/lb/settings.po | 80 ++++++++-------- l10n/lt_LT/core.po | 16 ++-- l10n/lt_LT/files.po | 4 +- l10n/lt_LT/files_external.po | 14 +-- l10n/lt_LT/files_trashbin.po | 4 +- l10n/lt_LT/lib.po | 50 +++++----- l10n/lt_LT/settings.po | 80 ++++++++-------- l10n/lv/core.po | 16 ++-- l10n/lv/files.po | 4 +- l10n/lv/files_external.po | 14 +-- l10n/lv/files_trashbin.po | 4 +- l10n/lv/lib.po | 50 +++++----- l10n/lv/settings.po | 80 ++++++++-------- l10n/mk/core.po | 16 ++-- l10n/mk/files.po | 4 +- l10n/mk/files_external.po | 14 +-- l10n/mk/files_trashbin.po | 4 +- l10n/mk/lib.po | 50 +++++----- l10n/mk/settings.po | 80 ++++++++-------- l10n/ml/settings.po | 94 ++++++++++--------- l10n/ml_IN/settings.po | 94 ++++++++++--------- l10n/mn/settings.po | 94 ++++++++++--------- l10n/ms_MY/core.po | 16 ++-- l10n/ms_MY/files.po | 4 +- l10n/ms_MY/files_external.po | 14 +-- l10n/ms_MY/files_trashbin.po | 4 +- l10n/ms_MY/lib.po | 50 +++++----- l10n/ms_MY/settings.po | 80 ++++++++-------- l10n/my_MM/files_external.po | 14 +-- l10n/my_MM/settings.po | 94 ++++++++++--------- l10n/nb_NO/core.po | 16 ++-- l10n/nb_NO/files.po | 4 +- l10n/nb_NO/files_external.po | 14 +-- l10n/nb_NO/files_trashbin.po | 4 +- l10n/nb_NO/lib.po | 50 +++++----- l10n/nb_NO/settings.po | 82 +++++++++-------- l10n/nb_NO/user_ldap.po | 62 ++++++------- l10n/nds/settings.po | 94 ++++++++++--------- l10n/ne/settings.po | 94 ++++++++++--------- l10n/nl/core.po | 16 ++-- l10n/nl/files.po | 4 +- l10n/nl/files_external.po | 20 ++-- l10n/nl/files_trashbin.po | 4 +- l10n/nl/lib.po | 50 +++++----- l10n/nl/settings.po | 82 +++++++++-------- l10n/nl/user_ldap.po | 36 ++++---- l10n/nn_NO/core.po | 16 ++-- l10n/nn_NO/files.po | 4 +- l10n/nn_NO/files_external.po | 14 +-- l10n/nn_NO/files_trashbin.po | 4 +- l10n/nn_NO/lib.po | 50 +++++----- l10n/nn_NO/settings.po | 80 ++++++++-------- l10n/nqo/settings.po | 94 ++++++++++--------- l10n/oc/core.po | 16 ++-- l10n/oc/files.po | 4 +- l10n/oc/files_external.po | 14 +-- l10n/oc/files_trashbin.po | 4 +- l10n/oc/lib.po | 50 +++++----- l10n/oc/settings.po | 80 ++++++++-------- l10n/or_IN/settings.po | 94 ++++++++++--------- l10n/pa/core.po | 16 ++-- l10n/pa/files.po | 4 +- l10n/pa/files_external.po | 14 +-- l10n/pa/files_trashbin.po | 4 +- l10n/pa/lib.po | 50 +++++----- l10n/pa/settings.po | 80 ++++++++-------- l10n/pl/core.po | 16 ++-- l10n/pl/files.po | 4 +- l10n/pl/files_external.po | 14 +-- l10n/pl/files_trashbin.po | 4 +- l10n/pl/lib.po | 50 +++++----- l10n/pl/settings.po | 82 +++++++++-------- l10n/pl/user_ldap.po | 62 ++++++------- l10n/pt_BR/core.po | 16 ++-- l10n/pt_BR/files.po | 4 +- l10n/pt_BR/files_external.po | 20 ++-- l10n/pt_BR/files_trashbin.po | 4 +- l10n/pt_BR/lib.po | 50 +++++----- l10n/pt_BR/settings.po | 82 +++++++++-------- l10n/pt_BR/user_ldap.po | 62 ++++++------- l10n/pt_PT/core.po | 16 ++-- l10n/pt_PT/files.po | 4 +- l10n/pt_PT/files_external.po | 14 +-- l10n/pt_PT/files_trashbin.po | 4 +- l10n/pt_PT/lib.po | 50 +++++----- l10n/pt_PT/settings.po | 82 +++++++++-------- l10n/pt_PT/user_ldap.po | 62 ++++++------- l10n/ro/core.po | 16 ++-- l10n/ro/files.po | 4 +- l10n/ro/files_external.po | 14 +-- l10n/ro/files_trashbin.po | 4 +- l10n/ro/lib.po | 50 +++++----- l10n/ro/settings.po | 80 ++++++++-------- l10n/ru/core.po | 16 ++-- l10n/ru/files.po | 4 +- l10n/ru/files_external.po | 14 +-- l10n/ru/files_trashbin.po | 4 +- l10n/ru/lib.po | 50 +++++----- l10n/ru/settings.po | 82 +++++++++-------- l10n/ru/user_ldap.po | 62 ++++++------- l10n/si_LK/core.po | 16 ++-- l10n/si_LK/files.po | 4 +- l10n/si_LK/files_external.po | 14 +-- l10n/si_LK/files_trashbin.po | 4 +- l10n/si_LK/lib.po | 50 +++++----- l10n/si_LK/settings.po | 80 ++++++++-------- l10n/sk/core.po | 16 ++-- l10n/sk/files.po | 4 +- l10n/sk/files_external.po | 14 +-- l10n/sk/files_trashbin.po | 4 +- l10n/sk/lib.po | 50 +++++----- l10n/sk/settings.po | 80 ++++++++-------- l10n/sk_SK/core.po | 16 ++-- l10n/sk_SK/files.po | 4 +- l10n/sk_SK/files_external.po | 14 +-- l10n/sk_SK/files_trashbin.po | 4 +- l10n/sk_SK/lib.po | 50 +++++----- l10n/sk_SK/settings.po | 80 ++++++++-------- l10n/sk_SK/user_ldap.po | 36 ++++---- l10n/sl/core.po | 16 ++-- l10n/sl/files.po | 4 +- l10n/sl/files_external.po | 20 ++-- l10n/sl/files_trashbin.po | 4 +- l10n/sl/lib.po | 50 +++++----- l10n/sl/settings.po | 82 +++++++++-------- l10n/sl/user_ldap.po | 62 ++++++------- l10n/sq/core.po | 16 ++-- l10n/sq/files.po | 4 +- l10n/sq/files_external.po | 14 +-- l10n/sq/files_trashbin.po | 4 +- l10n/sq/lib.po | 50 +++++----- l10n/sq/settings.po | 80 ++++++++-------- l10n/sr/core.po | 16 ++-- l10n/sr/files.po | 4 +- l10n/sr/files_external.po | 14 +-- l10n/sr/files_trashbin.po | 4 +- l10n/sr/lib.po | 50 +++++----- l10n/sr/settings.po | 80 ++++++++-------- l10n/sr@latin/core.po | 16 ++-- l10n/sr@latin/files.po | 4 +- l10n/sr@latin/files_external.po | 14 +-- l10n/sr@latin/files_trashbin.po | 4 +- l10n/sr@latin/lib.po | 50 +++++----- l10n/sr@latin/settings.po | 80 ++++++++-------- l10n/su/settings.po | 94 ++++++++++--------- l10n/sv/core.po | 16 ++-- l10n/sv/files.po | 4 +- l10n/sv/files_external.po | 14 +-- l10n/sv/files_trashbin.po | 4 +- l10n/sv/lib.po | 50 +++++----- l10n/sv/settings.po | 80 ++++++++-------- l10n/sv/user_ldap.po | 62 ++++++------- l10n/sw_KE/settings.po | 94 ++++++++++--------- l10n/ta_IN/core.po | 16 ++-- l10n/ta_IN/lib.po | 50 +++++----- l10n/ta_IN/settings.po | 80 ++++++++-------- l10n/ta_LK/core.po | 16 ++-- l10n/ta_LK/files.po | 4 +- l10n/ta_LK/files_external.po | 14 +-- l10n/ta_LK/files_trashbin.po | 4 +- l10n/ta_LK/lib.po | 50 +++++----- l10n/ta_LK/settings.po | 80 ++++++++-------- l10n/te/core.po | 16 ++-- l10n/te/files.po | 4 +- l10n/te/files_external.po | 14 +-- l10n/te/files_trashbin.po | 4 +- l10n/te/lib.po | 50 +++++----- l10n/te/settings.po | 80 ++++++++-------- l10n/templates/core.pot | 14 +-- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 12 +-- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 48 +++++----- l10n/templates/private.pot | 26 +++--- l10n/templates/settings.pot | 78 +++++++++------- l10n/templates/user_ldap.pot | 34 +++---- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 16 ++-- l10n/th_TH/files.po | 4 +- l10n/th_TH/files_external.po | 14 +-- l10n/th_TH/files_trashbin.po | 4 +- l10n/th_TH/lib.po | 50 +++++----- l10n/th_TH/settings.po | 80 ++++++++-------- l10n/tr/core.po | 16 ++-- l10n/tr/files.po | 4 +- l10n/tr/files_external.po | 20 ++-- l10n/tr/files_trashbin.po | 4 +- l10n/tr/lib.po | 50 +++++----- l10n/tr/settings.po | 82 +++++++++-------- l10n/tr/user_ldap.po | 62 ++++++------- l10n/tzm/settings.po | 94 ++++++++++--------- l10n/ug/core.po | 16 ++-- l10n/ug/files.po | 4 +- l10n/ug/files_external.po | 14 +-- l10n/ug/files_trashbin.po | 4 +- l10n/ug/lib.po | 50 +++++----- l10n/ug/settings.po | 80 ++++++++-------- l10n/uk/core.po | 16 ++-- l10n/uk/files.po | 4 +- l10n/uk/files_external.po | 14 +-- l10n/uk/files_trashbin.po | 4 +- l10n/uk/lib.po | 50 +++++----- l10n/uk/settings.po | 80 ++++++++-------- l10n/ur/settings.po | 94 ++++++++++--------- l10n/ur_PK/core.po | 16 ++-- l10n/ur_PK/files.po | 4 +- l10n/ur_PK/files_external.po | 14 +-- l10n/ur_PK/files_trashbin.po | 4 +- l10n/ur_PK/lib.po | 50 +++++----- l10n/ur_PK/settings.po | 80 ++++++++-------- l10n/uz/settings.po | 94 ++++++++++--------- l10n/vi/core.po | 16 ++-- l10n/vi/files.po | 4 +- l10n/vi/files_external.po | 14 +-- l10n/vi/files_trashbin.po | 4 +- l10n/vi/lib.po | 50 +++++----- l10n/vi/settings.po | 80 ++++++++-------- l10n/zh_CN/core.po | 16 ++-- l10n/zh_CN/files.po | 4 +- l10n/zh_CN/files_external.po | 14 +-- l10n/zh_CN/files_trashbin.po | 4 +- l10n/zh_CN/lib.po | 50 +++++----- l10n/zh_CN/settings.po | 80 ++++++++-------- l10n/zh_HK/core.po | 16 ++-- l10n/zh_HK/files.po | 4 +- l10n/zh_HK/files_external.po | 14 +-- l10n/zh_HK/files_trashbin.po | 4 +- l10n/zh_HK/lib.po | 50 +++++----- l10n/zh_HK/settings.po | 80 ++++++++-------- l10n/zh_TW/core.po | 16 ++-- l10n/zh_TW/files.po | 4 +- l10n/zh_TW/files_external.po | 14 +-- l10n/zh_TW/files_trashbin.po | 4 +- l10n/zh_TW/lib.po | 50 +++++----- l10n/zh_TW/settings.po | 80 ++++++++-------- lib/l10n/bn_BD.php | 10 ++ lib/l10n/et_EE.php | 2 + settings/l10n/az.php | 25 +++++ settings/l10n/bn_BD.php | 1 + settings/l10n/et_EE.php | 4 + 561 files changed, 9815 insertions(+), 8819 deletions(-) diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 91ea214445a..46246047ac9 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -68,6 +68,7 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Vigane Krüpteerimisrakendi privaatvõti . Palun uuenda oma privaatse võtme parool oma personaasete seadete all taastamaks ligipääsu oma krüpteeritud failidele.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Krüpteering on keelatud, kuid sinu failid on endiselt krüpteeritud. Palun vaata oma personaalseid seadeid oma failide dekrüpteerimiseks.", "{dirs} and {files}" => "{dirs} ja {files}", +"%s could not be renamed as it has been deleted" => "%s ei saa ümber nimetada, kuna see on kustutatud", "%s could not be renamed" => "%s ümbernimetamine ebaõnnestus", "Upload (max. %s)" => "Üleslaadimine (max. %s)", "File handling" => "Failide käsitlemine", diff --git a/apps/files_encryption/l10n/et_EE.php b/apps/files_encryption/l10n/et_EE.php index f6ef4d09956..7e298d8e663 100644 --- a/apps/files_encryption/l10n/et_EE.php +++ b/apps/files_encryption/l10n/et_EE.php @@ -30,6 +30,7 @@ $TRANSLATIONS = array( "New Recovery key password" => "Uus taastevõtme parool", "Repeat New Recovery key password" => "Korda uut taastevõtme parooli", "Change Password" => "Muuda parooli", +"Your private key password no longer matches your log-in password." => "Sinu provaatvõtme parool ei kattu enam sinu sisselogimise parooliga.", " If you don't remember your old password you can ask your administrator to recover your files." => "Kui sa ei mäleta oma vana parooli, siis palu oma süsteemihalduril taastada ligipääs failidele.", "Old log-in password" => "Vana sisselogimise parool", "Current log-in password" => "Praegune sisselogimise parool", diff --git a/apps/files_external/l10n/bg_BG.php b/apps/files_external/l10n/bg_BG.php index f910070c15a..7e1bd4136a7 100644 --- a/apps/files_external/l10n/bg_BG.php +++ b/apps/files_external/l10n/bg_BG.php @@ -51,6 +51,8 @@ $TRANSLATIONS = array( "Error configuring Google Drive storage" => "Грешка при настройката на Dropbox дисковото пространство.", "Personal" => "Личен", "System" => "Системен", +"All users. Type to select user or group." => "Всички потребители. Пиши, за да избереш потребител или група.", +"(group)" => "(група)", "Saved" => "Запазено", "Note: " => "Бележка: ", " and " => "и", diff --git a/apps/files_external/l10n/en_GB.php b/apps/files_external/l10n/en_GB.php index 216cb2537c4..c31322e4b8c 100644 --- a/apps/files_external/l10n/en_GB.php +++ b/apps/files_external/l10n/en_GB.php @@ -51,6 +51,8 @@ $TRANSLATIONS = array( "Error configuring Google Drive storage" => "Error configuring Google Drive storage", "Personal" => "Personal", "System" => "System", +"All users. Type to select user or group." => "All users. Type to select user or group.", +"(group)" => "(group)", "Saved" => "Saved", "Note: " => "Note: ", " and " => " and ", diff --git a/apps/files_external/l10n/es.php b/apps/files_external/l10n/es.php index abcfa4fb9f0..f139430b533 100644 --- a/apps/files_external/l10n/es.php +++ b/apps/files_external/l10n/es.php @@ -51,6 +51,8 @@ $TRANSLATIONS = array( "Error configuring Google Drive storage" => "Error configurando el almacenamiento de Google Drive", "Personal" => "Personal", "System" => "Sistema", +"All users. Type to select user or group." => "Todos los usuarios. Teclee para seleccionar un usuario o grupo.", +"(group)" => "(grupo)", "Saved" => "Guardado", "Note: " => "Nota: ", " and " => "y", diff --git a/apps/files_external/l10n/et_EE.php b/apps/files_external/l10n/et_EE.php index 2d66da3ac5d..41ca5a2fc56 100644 --- a/apps/files_external/l10n/et_EE.php +++ b/apps/files_external/l10n/et_EE.php @@ -51,6 +51,8 @@ $TRANSLATIONS = array( "Error configuring Google Drive storage" => "Viga Google Drive'i salvestusruumi seadistamisel", "Personal" => "Isiklik", "System" => "Süsteem", +"All users. Type to select user or group." => "Kõik kasutajad. Kirjuta, et valida kasutaja või grupp.", +"(group)" => "(grupp)", "Saved" => "Salvestatud", "Note: " => "Märkus:", " and " => "ja", diff --git a/apps/files_external/l10n/fi_FI.php b/apps/files_external/l10n/fi_FI.php index ee08f9e543c..284c6ea6eda 100644 --- a/apps/files_external/l10n/fi_FI.php +++ b/apps/files_external/l10n/fi_FI.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Host" => "Isäntä", "Username" => "Käyttäjätunnus", "Password" => "Salasana", +"Secure ftps://" => "Salattu ftps://", "Username (required)" => "Käyttäjätunnus (vaaditaan)", "Timeout of HTTP requests in seconds (optional)" => "HTTP-pyyntöjen aikakatkaisu sekunneissa (valinnainen)", "Share" => "Jaa", @@ -27,6 +28,8 @@ $TRANSLATIONS = array( "Error configuring Google Drive storage" => "Virhe Google Drive levyn asetuksia tehtäessä", "Personal" => "Henkilökohtainen", "System" => "Järjestelmä", +"All users. Type to select user or group." => "Kaikki käyttäjät. Kirjoita valitaksesi käyttäjän tai ryhmän.", +"(group)" => "(ryhmä)", "Saved" => "Tallennettu", "Note: " => "Huomio: ", " and " => "ja", diff --git a/apps/files_external/l10n/it.php b/apps/files_external/l10n/it.php index c14e6450c85..7c2398f4b64 100644 --- a/apps/files_external/l10n/it.php +++ b/apps/files_external/l10n/it.php @@ -51,6 +51,8 @@ $TRANSLATIONS = array( "Error configuring Google Drive storage" => "Errore durante la configurazione dell'archivio Google Drive", "Personal" => "Personale", "System" => "Sistema", +"All users. Type to select user or group." => "Tutti gli utenti. Digita per selezionare utente o gruppo.", +"(group)" => "(gruppo)", "Saved" => "Salvato", "Note: " => "Nota:", " and " => "e", diff --git a/apps/files_external/l10n/nl.php b/apps/files_external/l10n/nl.php index 019050633f9..961370d15fa 100644 --- a/apps/files_external/l10n/nl.php +++ b/apps/files_external/l10n/nl.php @@ -51,6 +51,8 @@ $TRANSLATIONS = array( "Error configuring Google Drive storage" => "Fout tijdens het configureren van Google Drive opslag", "Personal" => "Persoonlijk", "System" => "Systeem", +"All users. Type to select user or group." => "Alle gebruikers. Tikken om een gebruiker of groep te selecteren.", +"(group)" => "(groep)", "Saved" => "Bewaard", "Note: " => "Let op: ", " and " => "en", diff --git a/apps/files_external/l10n/pt_BR.php b/apps/files_external/l10n/pt_BR.php index fd8757f0f2b..e45f94628de 100644 --- a/apps/files_external/l10n/pt_BR.php +++ b/apps/files_external/l10n/pt_BR.php @@ -51,6 +51,8 @@ $TRANSLATIONS = array( "Error configuring Google Drive storage" => "Erro ao configurar armazenamento do Google Drive", "Personal" => "Pessoal", "System" => "Sistema", +"All users. Type to select user or group." => "Todos os usuários. Digite para selecionar usuário ou grupo.", +"(group)" => "(grupo)", "Saved" => "Salvo", "Note: " => "Nota:", " and " => "e", diff --git a/apps/files_external/l10n/sl.php b/apps/files_external/l10n/sl.php index 223c1c407f1..f29999b6c10 100644 --- a/apps/files_external/l10n/sl.php +++ b/apps/files_external/l10n/sl.php @@ -51,6 +51,8 @@ $TRANSLATIONS = array( "Error configuring Google Drive storage" => "Napaka nastavljanja shrambe Google Drive", "Personal" => "Osebno", "System" => "Sistem", +"All users. Type to select user or group." => "Vsi uporabniki. Skupino ali uporabnika je mogoče tudi izbrati.", +"(group)" => "(skupina)", "Saved" => "Shranjeno", "Note: " => "Opomba: ", " and " => "in", diff --git a/apps/files_external/l10n/tr.php b/apps/files_external/l10n/tr.php index 6d0796508c8..9655566be85 100644 --- a/apps/files_external/l10n/tr.php +++ b/apps/files_external/l10n/tr.php @@ -51,6 +51,8 @@ $TRANSLATIONS = array( "Error configuring Google Drive storage" => "Google Drive depo yapılandırma hatası", "Personal" => "Kişisel", "System" => "Sistem", +"All users. Type to select user or group." => "Tüm kullanıcılar. Kullanıcı veya grup seçmek için yazın.", +"(group)" => "(grup)", "Saved" => "Kaydedildi", "Note: " => "Not: ", " and " => "ve", diff --git a/apps/files_sharing/l10n/et_EE.php b/apps/files_sharing/l10n/et_EE.php index 71df34108ba..d0fb98e4ee2 100644 --- a/apps/files_sharing/l10n/et_EE.php +++ b/apps/files_sharing/l10n/et_EE.php @@ -1,6 +1,7 @@ "Serverist serverisse jagamine pole antud serveris lubatud", +"Invalid or untrusted SSL certificate" => "Vigane või tundmatu SSL sertifikaat", "Couldn't add remote share" => "Ei suutnud lisada kaugjagamist", "Shared with you" => "Sinuga jagatud", "Shared with others" => "Teistega jagatud", diff --git a/apps/files_trashbin/l10n/bn_BD.php b/apps/files_trashbin/l10n/bn_BD.php index c5b46c2fcee..e0e44bf8c60 100644 --- a/apps/files_trashbin/l10n/bn_BD.php +++ b/apps/files_trashbin/l10n/bn_BD.php @@ -1,8 +1,14 @@ "%s স্থায়ীভাবে মুছে ফেলা গেলনা", +"Couldn't restore %s" => "%s ফেরত আনা গেলনা", +"Deleted files" => "মুছে ফেলা ফাইলসমূহ", "Restore" => "ফিরিয়ে দাও", "Error" => "সমস্যা", -"Name" => "রাম", +"restored" => "পূণঃসংরক্ষিত", +"Nothing in here. Your trash bin is empty!" => "এখানে কিছু নেই। আপনার ট্র্যাসবিন শুন্য", +"Name" => "নাম", +"Deleted" => "মুছে ফেলা", "Delete" => "মুছে" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/bn_BD.php b/apps/files_versions/l10n/bn_BD.php index c612223af3d..2b57275d274 100644 --- a/apps/files_versions/l10n/bn_BD.php +++ b/apps/files_versions/l10n/bn_BD.php @@ -1,6 +1,10 @@ "ভার্সন", +"Could not revert: %s" => "ফিরে যাওয়া গেলনা: %s", +"Versions" => "সংষ্করন", +"Failed to revert {file} to revision {timestamp}." => " {file} সংশোধিত {timestamp} এ ফিরে যেতে ব্যার্থ হলো।", +"More versions..." => "আরো সংষ্করণ....", +"No other versions available" => "আর কোন সংষ্করণ প্রাপ্তব্য নয়", "Restore" => "ফিরিয়ে দাও" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php index ec0d5173267..90560354127 100644 --- a/core/l10n/bn_BD.php +++ b/core/l10n/bn_BD.php @@ -1,5 +1,7 @@ "অজানা প্রকৃতির ফাইল", +"Invalid image" => "অবৈধ চিত্র", "Sunday" => "রবিবার", "Monday" => "সোমবার", "Tuesday" => "মঙ্গলবার", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index f6715aef86a..d941c7d2bea 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -179,6 +179,7 @@ $TRANSLATIONS = array( "Thank you for your patience." => "Täname kannatlikkuse eest.", "You are accessing the server from an untrusted domain." => "Sa kasutad serverit usalduseta asukohast", "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domain\" setting in config/config.php. An example configuration is provided in config/config.sample.php." => "Palun võta ühendust oma saidi administraatoriga. Kui sa oled ise administraator, siis seadista failis config/config.php sätet \"trusted_domain\". Näidis seadistused leiad failist config/config.sample.php.", +"Add \"%s\" as trusted domain" => "Lisa \"%s\" usaldusväärse domeenina", "%s will be updated to version %s." => "%s uuendatakse versioonile %s.", "The following apps will be disabled:" => "Järgnevad rakendid keelatakse:", "The theme %s has been disabled." => "Teema %s on keelatud.", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 38044c88887..cfccf041907 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -180,6 +180,7 @@ $TRANSLATIONS = array( "Thank you for your patience." => "Kiitos kärsivällisyydestäsi.", "You are accessing the server from an untrusted domain." => "Olet yhteydessä palvelimeen epäluotettavasta verkko-osoitteesta.", "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domain\" setting in config/config.php. An example configuration is provided in config/config.sample.php." => "Ota yhteys ylläpitäjään. Jos olet tämän ownCloudin ylläpitäjä, määritä \"trusted_domain\"-asetus tiedostossa config/config.php. Esimerkkimääritys on nähtävillä tiedostossa config/config.sample.php.", +"Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." => "Riippuen määrityksistä, ylläpitäjänä saatat kyetä käyttämään alla olevaa painiketta luodaksesi luottamussuhteen tähän toimialueeseen.", "Add \"%s\" as trusted domain" => "Lisää \"%s\" luotetuksi toimialueeksi", "%s will be updated to version %s." => "%s päivitetään versioon %s.", "The following apps will be disabled:" => "Seuraavat sovellukset poistetaan käytöstä:", diff --git a/l10n/ach/settings.po b/l10n/ach/settings.po index 3d45bf37212..100698b8ecd 100644 --- a/l10n/ach/settings.po +++ b/l10n/ach/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/ady/settings.po b/l10n/ady/settings.po index bea757c27c8..31b48ace9f7 100644 --- a/l10n/ady/settings.po +++ b/l10n/ady/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index ee582e3be79..346d6f27c2f 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -150,27 +150,27 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Instellings" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Stoor..." diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 9608d354b08..cf5b55b9a9c 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index 96ea5b49592..5f77004f86d 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Wagwoord" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nuwe wagwoord" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Kanseleer" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/ak/settings.po b/l10n/ak/settings.po index a2b7a186d3a..27ba6b3ce23 100644 --- a/l10n/ak/settings.po +++ b/l10n/ak/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/am_ET/settings.po b/l10n/am_ET/settings.po index 824a13bee50..52bbf4fbcb5 100644 --- a/l10n/am_ET/settings.po +++ b/l10n/am_ET/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index e4652e1d452..8e0c706c0c6 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -151,27 +151,27 @@ msgstr "تشرين الثاني" msgid "December" msgstr "كانون الاول" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "إعدادات" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "ملف" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "مجلد" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "جاري الحفظ..." diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 6ec2c00151e..00962213dbf 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index 6adbf2b66b7..e4e02e8b4ec 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -244,29 +244,29 @@ msgstr "" msgid "Saved" msgstr "حفظ" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index a9cfbbfa210..b777f4c07f5 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 115d558903d..38d48590e52 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -19,33 +19,33 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -167,12 +167,12 @@ msgstr "انتهت صلاحية الكلمة , يرجى اعادة تحميل ا msgid "Unknown user" msgstr "المستخدم غير معروف" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s ادخل اسم المستخدم الخاص بقاعدة البيانات." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s ادخل اسم فاعدة البيانات" @@ -188,7 +188,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "اسم المستخدم و/أو كلمة المرور لنظام MS SQL غير صحيح : %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "انت بحاجة لكتابة اسم مستخدم موجود أو حساب المدير." @@ -197,23 +197,23 @@ msgstr "انت بحاجة لكتابة اسم مستخدم موجود أو حس msgid "MySQL/MariaDB username and/or password not valid" msgstr "اسم مستخدم أو كلمة مرور MySQL/MariaDB غير صحيحين" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "خطأ في قواعد البيانات : \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -238,15 +238,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "حذف هذا المستخدم من MySQL/MariaDB" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "لم تنجح محاولة اتصال Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "اسم المستخدم و/أو كلمة المرور لنظام Oracle غير صحيح" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "الأمر المخالف كان : \"%s\", اسم المستخدم : %s, كلمة المرور: %s" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 59e64f782a6..cbf6ddada4c 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "" msgid "Send mode" msgstr "وضعية الإرسال" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "التشفير" @@ -736,11 +736,11 @@ msgstr "المزيد" msgid "Less" msgstr "أقل" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "إصدار" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "تم إستهلاك %s من المتوفر %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "كلمة المرور" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "لقد تم تغيير كلمة السر" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "لم يتم تعديل كلمة السر بنجاح" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "كلمات السر الحالية" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "كلمات سر جديدة" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "عدل كلمة السر" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "اسمك الكامل" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "البريد الإلكترونى" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "عنوانك البريدي" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "صورة الملف الشخصي" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "رفع الان" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "اختر جديد من الملفات " -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "احذف الصورة " -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "سواء png او jpg. بامكانك قص الصورة " -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "صورتك الرمزية يتم توفيرها عن طريق حسابك الاصلي." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "الغاء" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "اختر صورة الملف الشخصي" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "اللغة" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "ساعد في الترجمه" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "البرنامج المشفر لم يعد مفعل, يرجى فك التشفير عن كل ملفاتك" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "كلمه سر الدخول" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "فك تشفير جميع الملفات " -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "اسم الدخول" @@ -978,19 +986,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "الحصة النسبية الإفتراضية" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "يرجى ادخال تخزين quota (مثل:\"512 MB\" او \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "غير محدود" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "شيء آخر" diff --git a/l10n/ast/core.po b/l10n/ast/core.po index e9ec89404bb..d1a4a7624d2 100644 --- a/l10n/ast/core.po +++ b/l10n/ast/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -152,27 +152,27 @@ msgstr "Payares" msgid "December" msgstr "Avientu" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Axustes" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Ficheru" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Carpeta" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Imaxe" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Audiu" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Guardando..." diff --git a/l10n/ast/files.po b/l10n/ast/files.po index 7a4a3b0842f..214d7456dad 100644 --- a/l10n/ast/files.po +++ b/l10n/ast/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ast/files_external.po b/l10n/ast/files_external.po index a632b492cc8..ba6963106b8 100644 --- a/l10n/ast/files_external.po +++ b/l10n/ast/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -245,29 +245,29 @@ msgstr "" msgid "Saved" msgstr "Guardáu" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Nota: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "y" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Nota: El soporte de cURL en PHP nun ta activáu o instaláu. Nun pue montase %s. Pídi-y al alministrador de sistema que lu instale." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Nota: El soporte de FTP en PHP nun ta activáu o instaláu. Nun pue montase %s. Pídi-y al alministrador de sistema que lu instale." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/ast/files_trashbin.po b/l10n/ast/files_trashbin.po index f295707e980..3dd2c7edc42 100644 --- a/l10n/ast/files_trashbin.po +++ b/l10n/ast/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ast/lib.po b/l10n/ast/lib.po index 64776961a14..23fc74d8913 100644 --- a/l10n/ast/lib.po +++ b/l10n/ast/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -20,33 +20,33 @@ msgstr "" "Language: ast\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "¡Nun pue escribise nel direutoriu \"config\"!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Davezu esto pue iguase dándo-y al sirvidor web accesu d'escritura al direutoriu de configuración" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Mira %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Davezu esto pue iguase %sdándo-y al sirvidor web accesu d'escritura al direutoriu de configuración%s." -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -168,12 +168,12 @@ msgstr "Token caducáu. Recarga la páxina." msgid "Unknown user" msgstr "Usuariu desconocíu" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s introducir l'usuariu de la base de datos." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s introducir nome de la base de datos." @@ -189,7 +189,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nome d'usuariu o contraseña MS SQL non válidos: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Tienes d'inxertar una cuenta esistente o la del alministrador." @@ -198,23 +198,23 @@ msgstr "Tienes d'inxertar una cuenta esistente o la del alministrador." msgid "MySQL/MariaDB username and/or password not valid" msgstr "Nome d'usuariu o contraseña MySQL/MariaDB non válidos" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Fallu BD: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -239,15 +239,15 @@ msgstr "Yá esiste l'usuariu de MySQL/MariaDB '%s'@'%%'" msgid "Drop this user from MySQL/MariaDB." msgstr "Desaniciar esti usuariu de MySQL/MariaDB" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Nun pudo afitase la conexón d'Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Nome d'usuariu o contraseña d'Oracle non válidos" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "El comandu infractor foi: \"%s\", nome: %s, contraseña: %s" diff --git a/l10n/ast/settings.po b/l10n/ast/settings.po index 7fe35191202..22dcbef15e2 100644 --- a/l10n/ast/settings.po +++ b/l10n/ast/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "Tienes de configurar la direición de corréu-e enantes de poder unviar msgid "Send mode" msgstr "Mou d'unviu" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Cifráu" @@ -735,11 +735,11 @@ msgstr "Más" msgid "Less" msgstr "Menos" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versión" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Usasti %s de los %s disponibles" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Contraseña" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Camudóse la contraseña" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Nun pudo camudase la contraseña" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Contraseña actual" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Contraseña nueva" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Camudar contraseña" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Nome completu" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Corréu-e" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Direición de corréu-e" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Introducir una direición de corréu-e p'activar la recuperación de contraseñes y recibir notificaciones" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Semeya de perfil" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Xubir otra" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Esbillar otra dende Ficheros" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Desaniciar imaxe" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Ficheru PNG o JPG. Preferiblemente cuadráu, pero vas poder retayalu." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "L'avatar ta proporcionáu pola to cuenta orixinal." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Encaboxar" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Esbillar como imaxe de perfil" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Llingua" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Ayúdanos nes traducciones" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "L'aplicación de cifráu yá nun ta activada, descifra tolos ficheros" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Contraseña d'accesu" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Descifrar ficheros" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Les claves de cifráu van guardase nuna llocalización segura. D'esta miente, en casu de que daqué saliere mal, vas poder recuperar les claves. Desanicia dafechu les claves de cifráu namái si tas seguru de que los ficheros descifráronse correcho." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Restaurar claves de cifráu." -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Desaniciar claves de cifráu" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Nome d'usuariu" @@ -977,19 +985,19 @@ msgstr "Toos" msgid "Admins" msgstr "Almins" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Cuota predeterminada" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Por favor indica la cuota d'almacenamientu (ex: \"512 MB\" o \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Non llendáu" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Otru" diff --git a/l10n/ast/user_ldap.po b/l10n/ast/user_ldap.po index 57e149401aa..11c722acb6a 100644 --- a/l10n/ast/user_ldap.po +++ b/l10n/ast/user_ldap.po @@ -5,16 +5,16 @@ # Translators: # David López Castañón , 2014 # Iñigo Varela , 2014 -# Ḷḷumex03 , 2014 -# Ḷḷumex03 , 2014 +# Ḷḷumex03 , 2014 +# Ḷḷumex03 , 2014 # tebanpb , 2014 # tebanpb , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: Iñigo Varela \n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -55,11 +55,11 @@ msgstr "Nun s'especificó l'aición" msgid "No configuration specified" msgstr "Nun s'especificó la configuración" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Nun s'especificaron los datos" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Nun pudo afitase la configuración %s" @@ -108,65 +108,65 @@ msgstr "Nun pudo determinase un DN base" msgid "Please specify the port" msgstr "Especifica'l puertu" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Configuración correuta" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Configuración incorreuta" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Configuración incompleta" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Esbillar grupos" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Seleicionar la clas d'oxetu" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Esbillar atributos" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Test de conexón esitosu" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Falló'l test de conexón" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "¿Daveres que quies desaniciar la configuración actual del sirvidor?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Confirmar desaniciu" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s grupu alcontráu" msgstr[1] "%s grupos alcontraos" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s usuariu alcontráu" msgstr[1] "%s usuarios alcontraos" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Nun pudo alcontrase la carauterística deseyada" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Host inválidu" @@ -258,60 +258,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Define'l filtru a aplicar cuando s'intenta identificar. %%uid va trocar al nome d'usuariu nel procesu d'identificación. Por exemplu: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Sirvidor" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Sirvidor:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Amestar configuración del sirvidor" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Desaniciar configuración" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Equipu" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Pues omitir el protocolu, sacantes si necesites SSL. Nesi casu, entama con ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Puertu" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN usuariu" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "El DN del usuariu veceru col que va facese l'asociación, p.ex. uid=axente,dc=exemplu,dc=com. P'accesu anónimu, dexa DN y contraseña baleros." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Contraseña" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Pa un accesu anónimu, dexar el DN y la contraseña baleros." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Un DN Base por llinia" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Pues especificar el DN base pa usuarios y grupos na llingüeta Avanzáu" diff --git a/l10n/az/core.po b/l10n/az/core.po index 8fc78d97759..53d34dafd1a 100644 --- a/l10n/az/core.po +++ b/l10n/az/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -149,27 +149,27 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Quraşdırmalar" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Qovluq" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Saxlama..." diff --git a/l10n/az/files.po b/l10n/az/files.po index e0219662c21..30fc1b020fd 100644 --- a/l10n/az/files.po +++ b/l10n/az/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: unixidzero \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/az/files_external.po b/l10n/az/files_external.po index d6a3f318617..80459005f2a 100644 --- a/l10n/az/files_external.po +++ b/l10n/az/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -244,29 +244,29 @@ msgstr "" msgid "Saved" msgstr "Saxlanıldı" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/az/files_trashbin.po b/l10n/az/files_trashbin.po index 8606e684491..b21d6c2dd24 100644 --- a/l10n/az/files_trashbin.po +++ b/l10n/az/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: unixidzero \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/az/lib.po b/l10n/az/lib.po index d16bddb0375..96159e03315 100644 --- a/l10n/az/lib.po +++ b/l10n/az/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: unixidzero \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -18,33 +18,33 @@ msgstr "" "Language: az\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "\"configurasiya\" direktoriyasının daxilində yazmaq mümkün deyil" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Adətən tez həll etmək üçün WEB serverdə yazma yetkisi verilir" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Bax %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -166,12 +166,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -187,7 +187,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -196,23 +196,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -237,15 +237,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/az/settings.po b/l10n/az/settings.po index e4f10a8b386..b78ca00c5c3 100644 --- a/l10n/az/settings.po +++ b/l10n/az/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" -"Last-Translator: unixidzero \n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,13 +46,13 @@ msgstr "Məktub göndərildi" #: admin/controller.php:101 msgid "You need to set your user email before being able to send test emails." -msgstr "" +msgstr "Test məktubu göndərməzdən öncə, siz öz istifadəçi poçtunuzu təyiin etməlisiniz." #: admin/controller.php:116 templates/admin.php:368 msgid "Send mode" -msgstr "" +msgstr "Göndərmə rejimi" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Şifrələnmə" @@ -83,7 +83,7 @@ msgstr "Qrup artıq mövcuddur" #: ajax/creategroup.php:20 msgid "Unable to add group" -msgstr "" +msgstr "Qrupu əlavə etmək olmur" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" @@ -93,55 +93,55 @@ msgstr "Fayllar uğurla deşifrə edildi" msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Sizin faylları deşifrə etmək olmur, xahiş olunur owncloud.log faylını yoxlaya vəya inzibatçıya müraciət edəsiniz." #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Sizin faylları deşifrə etmək olmur, xahiş olunur şifrəni yoxlaya və yenidən təkrar edəsiniz." #: ajax/deletekeys.php:14 msgid "Encryption keys deleted permanently" -msgstr "" +msgstr "Şifrələmə açarları həmişəlik silindi" #: ajax/deletekeys.php:16 msgid "" "Couldn't permanently delete your encryption keys, please check your " "owncloud.log or ask your administrator" -msgstr "" +msgstr "Sizin şifrələnmə açarlarınızı həmişəlik silmək mümkün olmadı, xahış olunur owncloud.log faylını yoxlaya və ya inzibatçıya müraciət edəsiniz." #: ajax/installapp.php:18 ajax/uninstallapp.php:18 msgid "Couldn't remove app." -msgstr "" +msgstr "Proqram təminatını silmək mümkün olmadı." #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "" +msgstr "Məktub yadda saxlanıldı" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "" +msgstr "Yalnış məktub" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "" +msgstr "Qrupu silmək olmur" #: ajax/removeuser.php:25 msgid "Unable to delete user" -msgstr "" +msgstr "İstifadəçini silmək olmur" #: ajax/restorekeys.php:14 msgid "Backups restored successfully" -msgstr "" +msgstr "Ehtiyyat nüsxələr uğurla geri qaytarıldı" #: ajax/restorekeys.php:23 msgid "" "Couldn't restore your encryption keys, please check your owncloud.log or ask" " your administrator" -msgstr "" +msgstr "Sizin şifrələnmə açarlarınızı geri qaytarmaq mümkün olmadı, xahış olunur owncloud.log faylını yoxlaya və ya inzibatçıya müraciət edəsiniz." #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "" +msgstr "Dil dəyişdirildi" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" @@ -149,50 +149,50 @@ msgstr "Səhv müraciət" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "" +msgstr "İnzibatçılar özlərini inzibatçı qrupundan silə bilməz" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "İstifadəçini %s qrupuna əlavə etmək mümkün olmadı" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "İstifadəçini %s qrupundan silmək mümkün olmadı" #: ajax/updateapp.php:44 msgid "Couldn't update app." -msgstr "" +msgstr "Proqram təminatını yeniləmək mümkün deyil." #: changepassword/controller.php:17 msgid "Wrong password" -msgstr "" +msgstr "Yalnış şifrə" #: changepassword/controller.php:36 msgid "No user supplied" -msgstr "" +msgstr "Heç bir istifadəçiyə mənimsədilmir" #: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "" +msgstr "Xahış olunur inzibatçı geriyə qayıdış şifrəsini təqdim edəsiniz, əks halda bütün istfadəçi datası itəcək." #: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "" +msgstr "İnzibatçı geriyə qayıdış şifrəsi yalnışdır. Xahiş olunur şifrəni yoxlayıb yenidən təkrar edəsiniz." #: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "" +msgstr "İnzibatçı mərkəzi şifrə dəyişilməsini dəstəkləmir ancaq, istifadəçi şifrələnmə açarı uğurla yeniləndi." #: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" -msgstr "" +msgstr "Şifrəni dəyişmək olmur" #: js/admin.js:45 msgid "Are you really sure you want add \"{domain}\" as trusted domain?" @@ -734,11 +734,11 @@ msgstr "Yenə" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Şifrə" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Dayandır" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -976,19 +984,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/be/core.po b/l10n/be/core.po index a18ba494009..21afd01ad45 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -149,27 +149,27 @@ msgstr "Лістапад" msgid "December" msgstr "Снежань" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Налады" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index e63314d17cb..9fa53127c92 100644 --- a/l10n/be/lib.po +++ b/l10n/be/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: be\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/be/settings.po b/l10n/be/settings.po index 285a20b574f..306e4205d5b 100644 --- a/l10n/be/settings.po +++ b/l10n/be/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index abfa419941f..c9e41d3c70e 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -150,27 +150,27 @@ msgstr "Ноември" msgid "December" msgstr "Декември" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Настройки" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Файл" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Папка" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Изображение" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Аудио" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Записване..." diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 77afac972b9..ede19ec4ed5 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index b938a83b1c3..cd17c402b27 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Damian Nachev , 2014 # Ivo, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"Last-Translator: Ivo\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" @@ -234,39 +235,39 @@ msgstr "Системен" #: js/settings.js:196 msgid "All users. Type to select user or group." -msgstr "" +msgstr "Всички потребители. Пиши, за да избереш потребител или група." #: js/settings.js:279 msgid "(group)" -msgstr "" +msgstr "(група)" #: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Запазено" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Бележка: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "и" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Note: PHP подръжката на cURL не е включена или инсталирана. Прикачването на %s не е възможно. Моля, поискай системния администратор да я инсталира." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Note: PHP подръжката на FTP не е включена или инсталирана. Прикачването на %s не е възможно. Моля, поискай системния администратор да я инсталира." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 14b30b9fb13..a7c0669972a 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: Ivo\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index a3cd1883012..20972fb871d 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -19,33 +19,33 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Неуспешен опит за запис в \"config\" папката!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Това може да бъде решено единствено като разрешиш на уеб сървъра да пише в config папката." -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Виж %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Това обикновено може да бъде оправено като %s даде разрешение на уеб сървъра да записва в config папката %s." -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "Открита е примерна конфигурация" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -167,12 +167,12 @@ msgstr "Изтекла сесия. Моля, презареди страница msgid "Unknown user" msgstr "Непознат потребител" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s въведи потребителско име за базата данни." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s въведи име на базата данни." @@ -188,7 +188,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Невалидно MS SQL потребителско име и/или парола: %s." #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Необходимо е да въведеш съществуващ профил или като администратор." @@ -197,23 +197,23 @@ msgstr "Необходимо е да въведеш съществуващ пр msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB потребителското име и/или паролата са невалидни." -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Грешка в базата данни: \"%s\"." -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -238,15 +238,15 @@ msgstr "MySQL/MariaDB потребител '%s'@'%%' вече съществув msgid "Drop this user from MySQL/MariaDB." msgstr "Премахни този потребител от MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Oracle връзка не можа да се осъществи." -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Невалидно Oracle потребителско име и/или парола." -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Проблемната команда беше: \"%s\", име: %s, парола: %s." diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index f9dab2f081a..d8953a8b82b 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" -"Last-Translator: Ivo\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,7 +52,7 @@ msgstr "Трябва да зададеш своя имейл преди да м msgid "Send mode" msgstr "Режим на изпращане" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Криптиране" @@ -734,11 +734,11 @@ msgstr "Още" msgid "Less" msgstr "По-малко" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Версия" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Използвал си %s от наличните %s." -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Парола" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Паролата ти е промена." -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Неуспешна промяна на паролата." -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Текуща парола" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Нова парола" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Промяна на паролата" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Пълно Име" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Имейл" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Твоят имейл адрес" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Въведи имейл, за да включиш функцията за възстановяване на паролата и уведомления." -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Аватар" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Качи нов" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Избери нов от Файловете" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Премахни изображението" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Png или jpg. Най-добре в квадратни размери, но ще имаш възможност да го изрежеш." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Твоят аватар е взет от оригиналния ти профил." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Отказ" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Избери като аватар" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Език" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Помогни с превода" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Приложението за криптиране вече не е включено, моля разшифрирай всичките си файлове." -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Парола за вписване" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Разшифровай всички Файлове" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Криптиращите ти ключове са преместени на резервно място. Ако нещо се случи ще можеш да възстановиш ключовете. Изтрий ги единствено ако си сигурен, че всички файлове са успешно разшифровани." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Възстанови Криптиращи Ключове" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Изтрий Криптиращи Ключове" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Потребителско Име" @@ -976,19 +984,19 @@ msgstr "Всички" msgid "Admins" msgstr "Администратори" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Квота по подразбиране" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Моля, въведи квота за заделено място (пр. \"512 MB\" или \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Неограничено" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Друга..." diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index cedccbadcec..55aa5853271 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-21 01:54-0400\n" -"PO-Revision-Date: 2014-07-20 17:31+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: Ivo\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -50,11 +50,11 @@ msgstr "Не е посочено действие" msgid "No configuration specified" msgstr "Не е посочена конфигурация" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Не са посочени данни" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Неуспешно задаване на конфигруацията %s" @@ -103,65 +103,65 @@ msgstr "Неуспешно установяване на Base DN" msgid "Please specify the port" msgstr "Mоля, посочи портът" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Конфигурацията е ОК" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Конфигурацията е грешна" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Конфигурацията не е завършена" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Избери Групи" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Избери типове обекти" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Избери атрибути" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Успешен тест на връзката." -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Неуспешен тест на връзката." -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Наистина ли искаш да изтриеш текущата Сървърна Конфигурация?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Потвърди Изтриването" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s открита група" msgstr[1] "%s открити групи" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s октрит потребител" msgstr[1] "%s октрити потребители" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Не е открита желанта функция" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Невалиден Сървър" @@ -253,60 +253,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Заявява филтърът, който да бъде приложен при опит за вписване. %%uid замества потребителското име в полето login action. Пример: \"uid=%%uid\"." -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Сървър" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Сървър:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Добави Сървърна Конфигурация" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Изтрий Конфигурацията" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Host" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Протоколът не задължителен освен ако не изискваш SLL. В такъв случай започни с ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Порт" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "User DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "DN на потребителят, с който ще стане свързването, пр. uid=agent,dc=example,dc=com. За анонимен достъп, остави DN и Парола празни." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Парола" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "За анонимен достъп, остави DN и Парола празни." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "По един Base DN на ред" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Можеш да настроиш Base DN за отделни потребители и групи в разделителя Допълнителни." diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 6c97eeb64a8..bd2c971a144 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -59,11 +59,11 @@ msgstr "" #: avatar/controller.php:86 msgid "Unknown filetype" -msgstr "" +msgstr "অজানা প্রকৃতির ফাইল" #: avatar/controller.php:90 msgid "Invalid image" -msgstr "" +msgstr "অবৈধ চিত্র" #: avatar/controller.php:120 avatar/controller.php:147 msgid "No temporary profile picture available, try again" @@ -149,27 +149,27 @@ msgstr "নভেম্বর" msgid "December" msgstr "ডিসেম্বর" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "ফাইল" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "ফোল্ডার" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "চিত্র" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "অডিও" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "সংরক্ষণ করা হচ্ছে.." diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 342c199d2a7..89b14f1d8a1 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: azizul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 9008a92a7bf..1b70bd36868 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -244,29 +244,29 @@ msgstr "" msgid "Saved" msgstr "সংরক্ষণ করা হলো" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index d41391335d6..d6e2988fc7e 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-27 19:00+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 18:01+0000\n" "Last-Translator: azizul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index e072022ba9b..a443acde660 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: azizul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -21,16 +21,16 @@ msgstr "" #: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" -msgstr "" +msgstr "%s স্থায়ীভাবে মুছে ফেলা গেলনা" #: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" -msgstr "" +msgstr "%s ফেরত আনা গেলনা" #: appinfo/app.php:15 js/filelist.js:34 msgid "Deleted files" -msgstr "" +msgstr "মুছে ফেলা ফাইলসমূহ" #: js/app.js:52 templates/index.php:21 templates/index.php:23 msgid "Restore" @@ -42,19 +42,19 @@ msgstr "সমস্যা" #: lib/trashbin.php:903 lib/trashbin.php:905 msgid "restored" -msgstr "" +msgstr "পূণঃসংরক্ষিত" #: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" -msgstr "" +msgstr "এখানে কিছু নেই। আপনার ট্র্যাসবিন শুন্য" #: templates/index.php:18 msgid "Name" -msgstr "রাম" +msgstr "নাম" #: templates/index.php:29 msgid "Deleted" -msgstr "" +msgstr "মুছে ফেলা" #: templates/index.php:32 templates/index.php:33 msgid "Delete" diff --git a/l10n/bn_BD/files_versions.po b/l10n/bn_BD/files_versions.po index 359b49550bc..75f29943f12 100644 --- a/l10n/bn_BD/files_versions.po +++ b/l10n/bn_BD/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# azizul , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-28 01:54-0400\n" -"PO-Revision-Date: 2014-08-27 19:21+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 17:31+0000\n" +"Last-Translator: azizul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,23 +21,23 @@ msgstr "" #: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "ফিরে যাওয়া গেলনা: %s" #: js/versions.js:48 msgid "Versions" -msgstr "ভার্সন" +msgstr "সংষ্করন" #: js/versions.js:70 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr " {file} সংশোধিত {timestamp} এ ফিরে যেতে ব্যার্থ হলো।" #: js/versions.js:97 msgid "More versions..." -msgstr "" +msgstr "আরো সংষ্করণ...." #: js/versions.js:135 msgid "No other versions available" -msgstr "" +msgstr "আর কোন সংষ্করণ প্রাপ্তব্য নয়" #: js/versions.js:165 msgid "Restore" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 2bf92429af0..48912120419 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# azizul , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"Last-Translator: azizul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,33 +18,33 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" -msgstr "" +msgstr "\"config\" ডিরেক্টরিতে লেখা যায়না!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" -msgstr "" +msgstr "সাধারণতঃ ওয়বসার্ভারকে কনফিগ ডিরেক্টরিতে লেখার অধিকার দিয়ে এই সমস্যা সমাধান করা যায়" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" -msgstr "" +msgstr "%s দেখ" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." -msgstr "" +msgstr "সাধারণতঃ ওয়বসার্ভারকে কনফিগ ডিরেক্টরি%sতে লেখার অধিকার দিয়ে%s এই সমস্যা সমাধান করা যায়" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" -msgstr "" +msgstr "নমুনা কনফিগারেশন পাওয়া গেছে" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -79,15 +80,15 @@ msgstr "" #: private/app.php:1130 msgid "No app name specified" -msgstr "" +msgstr "কোন অ্যাপ নাম সুনির্দিষ্ট নয়" #: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "অজানা প্রকৃতির ফাইল" #: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "অবৈধ চিত্র" #: private/defaults.php:42 msgid "web services under your control" @@ -95,12 +96,12 @@ msgstr "ওয়েব সার্ভিস আপনার হাতের ম #: private/installer.php:77 msgid "App directory already exists" -msgstr "" +msgstr "এই অ্যাপ ডিরেক্টরিটি পূর্ব থেকেই বিদ্যমান" #: private/installer.php:90 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "" +msgstr "অ্যাপ ফোল্ডার বানানো হেলনা। অনুমতি নির্ধারণ করুন। %s" #: private/installer.php:235 msgid "No source specified when installing app" @@ -165,12 +166,12 @@ msgstr "টোকেন মেয়াদোত্তীর্ণ। দয়া ক msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +187,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +196,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +237,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index e1afcae2286..f89fb702ac2 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "সংকেতায়ন" @@ -733,11 +733,11 @@ msgstr "বেশী" msgid "Less" msgstr "কম" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "ভার্সন" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "আপনি ব্যবহার করছেন %s, সুলভ %s এর মধ্যে।" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "কূটশব্দ" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "আপনার কূটশব্দটি পরিবর্তন করা হয়েছে " -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "আপনার কূটশব্দটি পরিবর্তন করতে সক্ষম নয়" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "বর্তমান কূটশব্দ" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "নতুন কূটশব্দ" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "কূটশব্দ পরিবর্তন করুন" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "ইমেইল" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "আপনার ই-মেইল ঠিকানা" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "বাতির" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "ভাষা" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "অনুবাদ করতে সহায়তা করুন" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "প্রবেশ" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "অসীম" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "অন্যান্য" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index cfbd3497795..1ac208a0fca 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 18:01+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: azizul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -50,11 +50,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -103,65 +103,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:321 lib/wizard.php:1057 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:864 lib/wizard.php:876 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" diff --git a/l10n/bn_IN/core.po b/l10n/bn_IN/core.po index 4ebc725d3a5..db9d03843e7 100644 --- a/l10n/bn_IN/core.po +++ b/l10n/bn_IN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" @@ -148,27 +148,27 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "সেটিংস" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "ফোল্ডার" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "সংরক্ষণ করা হচ্ছে ..." diff --git a/l10n/bn_IN/files.po b/l10n/bn_IN/files.po index 6a9f93f1a3d..32df1b6aad1 100644 --- a/l10n/bn_IN/files.po +++ b/l10n/bn_IN/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_IN/files_external.po b/l10n/bn_IN/files_external.po index 9d734ef3d75..30d3f882e0b 100644 --- a/l10n/bn_IN/files_external.po +++ b/l10n/bn_IN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "সংরক্ষিত" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/bn_IN/files_trashbin.po b/l10n/bn_IN/files_trashbin.po index 68ef3e03eca..b60c90e4bf0 100644 --- a/l10n/bn_IN/files_trashbin.po +++ b/l10n/bn_IN/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: ishita mukherjee \n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_IN/lib.po b/l10n/bn_IN/lib.po index be5ca50ded2..67b0e033143 100644 --- a/l10n/bn_IN/lib.po +++ b/l10n/bn_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: bn_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/bn_IN/settings.po b/l10n/bn_IN/settings.po index e5414cdee02..46b9f19cbe0 100644 --- a/l10n/bn_IN/settings.po +++ b/l10n/bn_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "বাতিল করা" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/bs/settings.po b/l10n/bs/settings.po index 96842b3d470..d6a69ada764 100644 --- a/l10n/bs/settings.po +++ b/l10n/bs/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index e9a96a6dd37..96010c6dc89 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -151,27 +151,27 @@ msgstr "Novembre" msgid "December" msgstr "Desembre" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Configuració" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Fitxer" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Carpeta" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Imatge" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Desant..." diff --git a/l10n/ca/files.po b/l10n/ca/files.po index fc8c680500f..ed6b8be6353 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index b1a626accf5..4aa91ed42e7 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -246,29 +246,29 @@ msgstr "" msgid "Saved" msgstr "Desat" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Nota: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "i" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Nota: El suport cURL no està activat o instal·lat a PHP. No es pot muntar %s. Demaneu a l'administrador del sistema que l'instal·li." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Nota: El suport FTP per PHP no està activat o no està instal·lat. No es pot muntar %s. Demaneu a l'administrador del sistema que l'instal·li." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index a389300a4af..07f8c5b0b25 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 6294ae40d0f..5001df654a4 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -18,33 +18,33 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "No es pot escriure a la carpeta \"config\"!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Això normalment es pot solucionar donant al servidor web permís d'escriptura a la carpeta de configuració" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Comproveu %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Això normalment es pot solucionar donant a %s permís d'escriptura a la carpeta de configuració %s" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -166,12 +166,12 @@ msgstr "El testimoni ha expirat. Torneu a carregar la pàgina." msgid "Unknown user" msgstr "Usuari desconegut" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s escriviu el nom d'usuari de la base de dades." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s escriviu el nom de la base de dades." @@ -187,7 +187,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nom d'usuari i/o contrasenya MS SQL no vàlids: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Heu d'escriure un compte existent o el d'administrador." @@ -196,23 +196,23 @@ msgstr "Heu d'escriure un compte existent o el d'administrador." msgid "MySQL/MariaDB username and/or password not valid" msgstr "El nom d'usuari i/o la contrasenya de MySQL/MariaDB no són vàlids" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Error DB: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -237,15 +237,15 @@ msgstr "L'usuari MySQL/MariaDB '%s'@'%%' ja existeix" msgid "Drop this user from MySQL/MariaDB." msgstr "Esborreu aquest usuari de MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "No s'ha pogut establir la connexió Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Nom d'usuari i/o contrasenya Oracle no vàlids" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "L'ordre en conflicte és: \"%s\", nom: %s, contrasenya: %s" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 973b64c1aff..3737f3e0e5d 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -55,7 +55,7 @@ msgstr "Heu d'establir un nom d'usuari abans de poder enviar correus de prova." msgid "Send mode" msgstr "Mode d'enviament" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Xifrat" @@ -737,11 +737,11 @@ msgstr "Més" msgid "Less" msgstr "Menys" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versió" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Heu utilitzat %s d'un total disponible de %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Contrasenya" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "La seva contrasenya s'ha canviat" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "No s'ha pogut canviar la contrasenya" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Contrasenya actual" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Contrasenya nova" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Canvia la contrasenya" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Nom complet" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Correu electrònic" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Correu electrònic" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Ompliu una adreça de correu per poder recuperar la contrasenya i rebre notificacions" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Foto de perfil" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Puja'n una de nova" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Selecciona'n una de nova dels fitxers" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Elimina imatge" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Pot ser png o jpg. Idealment quadrada, però podreu retallar-la." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "El vostre compte original proporciona l'avatar." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Cancel·la" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Selecciona com a imatge de perfil" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Idioma" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Ajudeu-nos amb la traducció" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "L'aplicació d'encriptació ja no està activada, desencripteu tots els vostres fitxers" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Contrasenya d'accés" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Desencripta tots els fitxers" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Les claus d'encriptació s'han mogut a una còpia de seguretat. Si alguna cosa va malament les podreu restablir. Esborreu-les permanentment només si esteu segur que tots els fitxers es desencripten correctament." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Restableix les claus d'encriptació" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Esborra les claus d'encriptació" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Nom d'accés" @@ -979,19 +987,19 @@ msgstr "Tothom" msgid "Admins" msgstr "Administradors" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Quota per defecte" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Escriviu la quota d'emmagatzemament (per ex.: \"512 MB\" o \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Il·limitat" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Un altre" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index af979bf48c1..44f20b5fd05 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -53,11 +53,11 @@ msgstr "No heu especificat cap acció" msgid "No configuration specified" msgstr "No heu especificat cap configuració" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "No heu especificat cap dada" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "No s'ha pogut establir la configuració %s" @@ -106,65 +106,65 @@ msgstr "No s'ha pogut determinar la base DN" msgid "Please specify the port" msgstr "Especifiqueu el port" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Configuració correcte" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Configuració incorrecte" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Configuració incompleta" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Selecciona els grups" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Seleccioneu les classes dels objectes" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Seleccioneu els atributs" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "La prova de connexió ha reeixit" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "La prova de connexió ha fallat" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Voleu eliminar la configuració actual del servidor?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Confirma l'eliminació" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "S'ha trobat %s grup" msgstr[1] "S'han trobat %s grups" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "S'ha trobat %s usuari" msgstr[1] "S'han trobat %s usuaris" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "La característica desitjada no s'ha trobat" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Ordinador central no vàlid" @@ -256,60 +256,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Defineix el filtre a aplicar quan s'intenta iniciar la sessió. %%uid reemplaça el nom d'usuari en l'acció d'inici de sessió. Per exemple: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Servidor" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Servidor:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Afegeix la configuració del servidor" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Esborra la configuració" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Equip remot" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Podeu ometre el protocol, excepte si requeriu SSL. Llavors comenceu amb ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN Usuari" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "La DN de l'usuari client amb la que s'haurà de fer, per exemple uid=agent,dc=exemple,dc=com. Per un accés anònim, deixeu la DN i la contrasenya en blanc." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Contrasenya" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Per un accés anònim, deixeu la DN i la contrasenya en blanc." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Una DN Base per línia" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Podeu especificar DN Base per usuaris i grups a la pestanya Avançat" diff --git a/l10n/ca@valencia/settings.po b/l10n/ca@valencia/settings.po index 42eb24660a2..a32132ec33a 100644 --- a/l10n/ca@valencia/settings.po +++ b/l10n/ca@valencia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (Valencian) (http://www.transifex.com/projects/p/owncloud/language/ca@valencia/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 9830a53df50..83429dd5d45 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -158,27 +158,27 @@ msgstr "Listopad" msgid "December" msgstr "Prosinec" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Nastavení" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Soubor" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Složka" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Obrázek" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Ukládám..." diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index d47d7bc7d4c..63b7586e77d 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: Petr Šťastný \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index 30c20e4bc08..b9fd9821be4 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -246,29 +246,29 @@ msgstr "" msgid "Saved" msgstr "Uloženo" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Poznámka:" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "a" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Poznámka: cURL podpora v PHP není povolena nebo nainstalována. Není možné připojení %s. Prosím požádejte svého správce systému ať ji nainstaluje." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Poznámka: FTP podpora v PHP není povolena nebo nainstalována. Není možné připojení %s. Prosím požádejte svého správce systému ať ji nainstaluje." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 50cfafbf9a8..1499646f284 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 41504bf9ebf..a14c8f7b14f 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -24,33 +24,33 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Nelze zapisovat do adresáře \"config\"!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "To bývá obyčejně vyřešeno povolením webovému serveru zapisovat do konfiguračního adresáře." -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Viz %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "To bývá obyčeně vyřešeno, když %s povolí webovému serveru zápis do konfiguračního adresáře %s." -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "Byla detekována vzorová konfigurace" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -172,12 +172,12 @@ msgstr "Token vypršel. Obnovte prosím stránku." msgid "Unknown user" msgstr "Neznámý uživatel" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "Zadejte uživatelské jméno %s databáze." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "Zadejte název databáze pro %s databáze." @@ -193,7 +193,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Uživatelské jméno či heslo MSSQL není platné: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Musíte zadat existující účet či správce." @@ -202,23 +202,23 @@ msgstr "Musíte zadat existující účet či správce." msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB uživatelské jméno a/nebo heslo je neplatné" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Chyba databáze: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -243,15 +243,15 @@ msgstr "MySQL/MariaDB uživatel '%s'@'%%' již existuje" msgid "Drop this user from MySQL/MariaDB." msgstr "Smazat tohoto uživatele z MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Spojení s Oracle nemohlo být navázáno" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Uživatelské jméno či heslo Oracle není platné" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Příslušný příkaz byl: \"%s\", jméno: %s, heslo: %s" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index dd30b19f1e9..c3d35363e05 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" -"Last-Translator: Jaroslav Lichtblau \n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -60,7 +60,7 @@ msgstr "Pro možnost odeslání zkušebních e-mailů musíte nejprve nastavit s msgid "Send mode" msgstr "Mód odesílání" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Šifrování" @@ -742,11 +742,11 @@ msgstr "Více" msgid "Less" msgstr "Méně" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Verze" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Používáte %s z %s dostupných" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Heslo" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Vaše heslo bylo změněno" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Změna vašeho hesla se nezdařila" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Současné heslo" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nové heslo" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Změnit heslo" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Celé jméno" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-mail" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Vaše e-mailová adresa" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Zadejte e-mailovou adresu pro umožnění obnovy zapomenutého hesla a pro přijímání upozornění" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profilový obrázek" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Nahrát nový" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Vyberte nový ze souborů" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Odebrat obrázek" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "png nebo jpg, nejlépe čtvercový, ale budete mít možnost jej oříznout." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Váš avatar je poskytován Vaším původním účtem." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Zrušit" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Vybrat jako profilový obrázek" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Jazyk" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Pomoci s překladem" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Šifrovací aplikace již není spuštěna, dešifrujte prosím všechny své soubory" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Přihlašovací heslo" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Odšifrovat všechny soubory" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Vaše šifrovací klíče byly zálohovány. Pokud se něco pokazilo, dají se znovu obnovit. Smažte je trvale pouze pokud jste jisti, že jsou všechny vaše soubory bezchybně dešifrovány." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Obnovit šifrovací klíče" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Smazat šifrovací klíče" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Přihlašovací jméno" @@ -984,19 +992,19 @@ msgstr "Všichni" msgid "Admins" msgstr "Administrátoři" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Výchozí kvóta" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Zvolte prosím kvótu pro úložiště (např. \"512 MB\" nebo \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Neomezeně" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Jiný" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index c4238a09b99..91aa4189ac0 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-19 01:54-0400\n" -"PO-Revision-Date: 2014-07-18 09:41+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: Jaroslav Lichtblau \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -57,11 +57,11 @@ msgstr "Neurčena žádná akce" msgid "No configuration specified" msgstr "Neurčena žádná konfigurace" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Neurčena žádná data" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Nelze nastavit konfiguraci %s" @@ -110,47 +110,47 @@ msgstr "Nelze určit základní DN" msgid "Please specify the port" msgstr "Prosím zadej port" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Konfigurace v pořádku" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Nesprávná konfigurace" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Nekompletní konfigurace" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Vyberte skupiny" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Vyberte objektové třídy" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Vyberte atributy" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Test spojení byl úspěšný" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Test spojení selhal" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Opravdu si přejete smazat současné nastavení serveru?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Potvrdit smazání" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -158,7 +158,7 @@ msgstr[0] "nalezena %s skupina" msgstr[1] "nalezeny %s skupiny" msgstr[2] "nalezeno %s skupin" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -166,11 +166,11 @@ msgstr[0] "nalezen %s uživatel" msgstr[1] "nalezeni %s uživatelé" msgstr[2] "nalezeno %s uživatelů" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Nelze nalézt požadovanou vlastnost" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Neplatný hostitel" @@ -262,60 +262,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Určuje použitý filtr při pokusu o přihlášení. %%uid nahrazuje uživatelské jméno v činnosti přihlášení. Příklad: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Server" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Server:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Přidat nastavení serveru" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Odstranit konfiguraci" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Počítač" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Můžete vynechat protokol, vyjma pokud požadujete SSL. Tehdy začněte s ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Uživatelské DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "DN klientského uživatele, ke kterému tvoříte vazbu, např. uid=agent,dc=example,dc=com. Pro anonymní přístup ponechte DN a heslo prázdné." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Heslo" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Pro anonymní přístup ponechte údaje DN and heslo prázdné." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Jedna základní DN na řádku" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "V rozšířeném nastavení můžete určit základní DN pro uživatele a skupiny" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index abf43d3f013..93d659fa48a 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -149,27 +149,27 @@ msgstr "Tachwedd" msgid "December" msgstr "Rhagfyr" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Gosodiadau" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Plygell" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Yn cadw..." diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 2c0ef1c3e68..ed4bcfcd125 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index 3ce26e698e3..54f773940f0 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index f7f3efeb6e9..923541ee6ba 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index be21385e40d..767e69bc2a7 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "Tocyn wedi dod i ben. Ail-lwythwch y dudalen." msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s rhowch enw defnyddiwr y gronfa ddata." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s rhowch enw'r gronfa ddata." @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Enw a/neu gyfrinair MS SQL annilys: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Rhaid i chi naill ai gyflwyno cyfrif presennol neu'r gweinyddwr." @@ -195,23 +195,23 @@ msgstr "Rhaid i chi naill ai gyflwyno cyfrif presennol neu'r gweinyddwr." msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Gwall DB: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Enw a/neu gyfrinair Oracle annilys" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\", enw: %s, cyfrinair: %s" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index ce5e20ef10b..599b925571c 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Amgryptiad" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Cyfrinair" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Cyfrinair newydd" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-bost" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Diddymu" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Mewngofnodi" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Arall" diff --git a/l10n/da/core.po b/l10n/da/core.po index c109155e5ac..0bc21e816c9 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -160,27 +160,27 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Indstillinger" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Fil" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Mappe" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Billede" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Lyd" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Gemmer..." diff --git a/l10n/da/files.po b/l10n/da/files.po index 02ce61bff72..58d82c7a4b8 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: Aputsiaĸ Niels Janussen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index 77ce2c7ce8f..43a3b82aa1e 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -246,29 +246,29 @@ msgstr "" msgid "Saved" msgstr "Gemt" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Note: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "og" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Bemærk: cURL understøttelsen i PHP er enten ikke aktiveret eller installeret. Montering af %s er ikke muligt. Anmod din systemadministrator om at installere det." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Bemærk: FTP understøttelsen i PHP er enten ikke aktiveret eller installeret. Montering af %s er ikke muligt. Anmod din systemadministrator om at installere det." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index ec8f63056f0..ebfb2dabd0c 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 061936b6ce7..25c1fafcea7 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: Aputsiaĸ Niels Janussen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -25,33 +25,33 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Kan ikke skrive til mappen \"config\"!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Dette kan normalvis ordnes ved at give webserveren skrive adgang til config mappen" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Se %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Dette kan som regel rettes ved at %sgive webserveren skriveadgang til config-mappen%s." -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "Eksempel for konfiguration registreret" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -173,12 +173,12 @@ msgstr "Adgang er udløbet. Genindlæs siden." msgid "Unknown user" msgstr "Ukendt bruger" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s indtast database brugernavnet." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s indtast database navnet." @@ -194,7 +194,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL brugernavn og/eller adgangskode ikke er gyldigt: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Du bliver nødt til at indtaste en eksisterende bruger eller en administrator." @@ -203,23 +203,23 @@ msgstr "Du bliver nødt til at indtaste en eksisterende bruger eller en administ msgid "MySQL/MariaDB username and/or password not valid" msgstr "Ugyldigt MySQL/MariaDB brugernavn og/eller kodeord " -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Databasefejl: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -244,15 +244,15 @@ msgstr "MySQL/MariaDB bruger '%s'@'%%' eksistere allerede" msgid "Drop this user from MySQL/MariaDB." msgstr "Drop denne bruger fra MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Oracle forbindelsen kunne ikke etableres" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle brugernavn og/eller kodeord er ikke gyldigt." -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Fejlende kommando var: \"%s\", navn: %s, password: %s" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 7681b34c40e..8323212ec76 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" -"Last-Translator: Aputsiaĸ Niels Janussen \n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -57,7 +57,7 @@ msgstr "Du skal angive din bruger-email før der kan sendes test-email." msgid "Send mode" msgstr "Tilstand for afsendelse" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Kryptering" @@ -739,11 +739,11 @@ msgstr "Mere" msgid "Less" msgstr "Mindre" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Version" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Du har brugt %s af den tilgængelige %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Kodeord" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Din adgangskode blev ændret" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Ude af stand til at ændre dit kodeord" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Nuværende adgangskode" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nyt kodeord" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Skift kodeord" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Fulde navn" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-mail" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Din emailadresse" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Angiv en emailadresse for at aktivere gendannelse af adgangskode og modtage notifikationer" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profilbillede" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Upload nyt" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Vælg nyt fra Filer" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Fjern billede" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Enten png eller jpg. Ideelt firkantet men du har mulighed for at beskære det. " -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Din avatar kommer fra din oprindelige konto." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Annuller" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Vælg som profilbillede" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Sprog" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Hjælp med oversættelsen" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Krypteringsprogrammet er ikke længere aktiveret. Dekrypter venligst alle dine filer" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Log-in kodeord" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Dekrypter alle Filer " -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Din krypteringsmøgler er flyttet til en backup lokation . hvis noget gik galt kan du genskabe nøglerne. Slet kun nøgler permanent hvis du er sikker på at alle filer er dekrypteret korrekt." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Genopret Krypteringsnøgler" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Slet Krypteringsnøgler" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Loginnavn" @@ -981,19 +989,19 @@ msgstr "Alle" msgid "Admins" msgstr "Administratore" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Standard kvote" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Indtast venligst lagerkvote (f.eks. \"512 MB\" eller \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Ubegrænset" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Andet" diff --git a/l10n/de/core.po b/l10n/de/core.po index 319463ffc2d..0e5aaa76ae2 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -159,27 +159,27 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Datei" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Ordner" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Bild" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Speichern..." diff --git a/l10n/de/files.po b/l10n/de/files.po index 970a4d26253..f9e78a475b0 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index 3ade851ca53..e087ded1266 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -247,29 +247,29 @@ msgstr "" msgid "Saved" msgstr "Gespeichert" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Hinweis: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "und" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Hinweis: Die cURL-Unterstützung von PHP ist nicht aktiviert oder installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wende Dich zur Installation an Deinen Systemadministrator." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Hinweis: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wende Dich sich zur Installation an Deinen Systemadministrator." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index a7feee64857..badbc9cd497 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index a4e26960a25..8cb76cb1a3e 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -23,33 +23,33 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Das Schreiben in das \"config\"-Verzeichnis nicht möglich!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Dies kann normalerweise repariert werden, indem dem Webserver Schreibzugriff auf das config-Verzeichnis gegeben wird" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Siehe %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Dies kann normalerweise repariert werden, indem dem Webserver %s Schreibzugriff auf das config-Verzeichnis %s gegeben wird." -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "Beispielkonfiguration gefunden" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -171,12 +171,12 @@ msgstr "Token abgelaufen. Bitte lade die Seite neu." msgid "Unknown user" msgstr "Unbekannter Benutzer" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s gib den Datenbank-Benutzernamen an." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s gib den Datenbank-Namen an." @@ -192,7 +192,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL Benutzername und/oder Password ungültig: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Du musst entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben." @@ -201,23 +201,23 @@ msgstr "Du musst entweder ein existierendes Benutzerkonto oder das Administrator msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB Benutzername und/oder Passwort sind nicht gültig" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB Fehler: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -242,15 +242,15 @@ msgstr "MySQL/MariaDB Benutzer '%s'@'%%' existiert bereits" msgid "Drop this user from MySQL/MariaDB." msgstr "Lösche diesen Benutzer von MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Es konnte keine Verbindung zur Oracle-Datenbank hergestellt werden" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle Benutzername und/oder Passwort ungültig" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index c2363cc4a99..fdebbe535f3 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -61,7 +61,7 @@ msgstr "Du musst zunächst deine Benutzer-E-Mail-Adresse setzen, bevor du Test-E msgid "Send mode" msgstr "Sende-Modus" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Verschlüsselung" @@ -743,11 +743,11 @@ msgstr "Mehr" msgid "Less" msgstr "Weniger" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Version" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Du verwendest %s der verfügbaren %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Passwort" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Dein Passwort wurde geändert." -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Passwort konnte nicht geändert werden" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Vollständiger Name" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Deine E-Mail-Adresse" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Gib eine E-Mail-Adresse an, um eine Wiederherstellung des Passworts zu ermöglichen und Benachrichtigungen zu empfangen" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profilbild" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Neues hochladen" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Neues aus den Dateien wählen" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Bild entfernen" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Entweder PNG oder JPG. Im Idealfall quadratisch, aber du kannst es zuschneiden." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Dein Avatar wird von Deinem ursprünglichenKonto verwendet." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Abbrechen" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Als Profilbild wählen" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Sprache" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Hilf bei der Übersetzung" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Die Verschlüsselungsanwendung ist nicht länger aktiviert, bitte entschlüsseln Sie alle ihre Daten." -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Login-Passwort" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Alle Dateien entschlüsseln" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Deine Verschlüsselungsschlüssel wiederherstellen wurden zu einem Backup-Speicherort verschoben. Wenn irgendetwas schief läuft können die Schlüssel wiederhergestellt werden. Lösche diese nur dann dauerhaft, wenn Du dir sicher bist, dass alle Dateien korrekt entschlüsselt wurden." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Verschlüsselungsschlüssel wiederherstellen" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Verschlüsselungsschlüssel löschen" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Loginname" @@ -985,19 +993,19 @@ msgstr "Jeder" msgid "Admins" msgstr "Administratoren" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Standard-Quota" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Bitte Speicherkontingent eingeben (z.B.: \"512 MB\" oder \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Unbegrenzt" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Andere" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index da2c72e0c40..34f2e32efef 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -53,11 +53,11 @@ msgstr "Keine Aktion spezifiziert" msgid "No configuration specified" msgstr "Keine Konfiguration spezifiziert" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Keine Daten spezifiziert" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Die Konfiguration %s konnte nicht gesetzt werden" @@ -106,65 +106,65 @@ msgstr "Base-DN konnte nicht festgestellt werden" msgid "Please specify the port" msgstr "Bitte Port spezifizieren" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Konfiguration OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Konfiguration nicht korrekt" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Konfiguration nicht vollständig" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Wähle Gruppen aus" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Objekt-Klassen auswählen" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Attribute auswählen" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Verbindungstest erfolgreich" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Verbindungstest fehlgeschlagen" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Möchtest Du die aktuelle Serverkonfiguration wirklich löschen?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Löschung bestätigen" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s Gruppe gefunden" msgstr[1] "%s Gruppen gefunden" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s Benutzer gefunden" msgstr[1] "%s Benutzer gefunden" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Konnte die gewünschte Funktion nicht finden" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Ungültiger Host" @@ -256,60 +256,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Bestimmt den Filter, welcher bei einer Anmeldung angewandt wird. %%uid ersetzt den Benutzernamen bei der Anmeldung. Beispiel: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Server" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Server:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Serverkonfiguration hinzufügen" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Konfiguration löschen" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Host" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Du kannst das Protokoll auslassen, außer wenn Du SSL benötigst. Beginne dann mit ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Benutzer-DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für anonymen Zugriff lasse DN und Passwort leer." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Passwort" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Lasse die Felder DN und Passwort für anonymen Zugang leer." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Ein Basis-DN pro Zeile" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Du kannst Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren" diff --git a/l10n/de_AT/core.po b/l10n/de_AT/core.po index 444b819ee69..50d0eda430c 100644 --- a/l10n/de_AT/core.po +++ b/l10n/de_AT/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -149,27 +149,27 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "" diff --git a/l10n/de_AT/files.po b/l10n/de_AT/files.po index 0e8510a2e5b..d45cc801a28 100644 --- a/l10n/de_AT/files.po +++ b/l10n/de_AT/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_AT/files_external.po b/l10n/de_AT/files_external.po index 20ddb551c34..c77a9681bf4 100644 --- a/l10n/de_AT/files_external.po +++ b/l10n/de_AT/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/de_AT/files_trashbin.po b/l10n/de_AT/files_trashbin.po index c7bf88b8b9f..1891a5b1893 100644 --- a/l10n/de_AT/files_trashbin.po +++ b/l10n/de_AT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_AT/lib.po b/l10n/de_AT/lib.po index 2ef50738508..e7176ac249e 100644 --- a/l10n/de_AT/lib.po +++ b/l10n/de_AT/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: de_AT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/de_AT/settings.po b/l10n/de_AT/settings.po index c5c02597dd7..345823c8cee 100644 --- a/l10n/de_AT/settings.po +++ b/l10n/de_AT/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -734,11 +734,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Passwort" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Abbrechen" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -976,19 +984,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Anderes" diff --git a/l10n/de_AT/user_ldap.po b/l10n/de_AT/user_ldap.po index 2f403e37a05..56f454cbdf6 100644 --- a/l10n/de_AT/user_ldap.po +++ b/l10n/de_AT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 00:50+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: Malspherus \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -50,11 +50,11 @@ msgstr "Keine Aktion angegeben" msgid "No configuration specified" msgstr "Keine Konfiguration angegeben" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Keine Daten angegeben" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Konfiguration %s konnte nicht gespeichert werden" @@ -103,65 +103,65 @@ msgstr "Basis DN konnte nicht festgelegt werden" msgid "Please specify the port" msgstr "Bitte den Port angeben" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Konfiguration OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Konfiguration fehlerhaft" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Konfiguration unvollständig" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Gruppen wählen" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Objekt-Klassen wählen" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Attribute wählen" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Verbindungsversuch erfolgreich" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Verbindungsversuch gescheitert" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Soll die momentane Server-Konfiguration wirklich gelöscht werden?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Löschen bestätigen" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:321 lib/wizard.php:1057 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Funktion konnte nicht gefunden werden" -#: lib/wizard.php:864 lib/wizard.php:876 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Ungültiger Host" diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index 0346910ae91..4bd4564ffbd 100644 --- a/l10n/de_CH/core.po +++ b/l10n/de_CH/core.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -158,27 +158,27 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Datei" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Ordner" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Speichern..." diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po index 0671f8cf51b..da0d3b764b2 100644 --- a/l10n/de_CH/files.po +++ b/l10n/de_CH/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_CH/files_external.po b/l10n/de_CH/files_external.po index 926879c51a7..e7e41c18842 100644 --- a/l10n/de_CH/files_external.po +++ b/l10n/de_CH/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -244,29 +244,29 @@ msgstr "" msgid "Saved" msgstr "Gespeichert" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/de_CH/files_trashbin.po b/l10n/de_CH/files_trashbin.po index 8f98f92d175..ef6f7616065 100644 --- a/l10n/de_CH/files_trashbin.po +++ b/l10n/de_CH/files_trashbin.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_CH/lib.po b/l10n/de_CH/lib.po index 33f0503c845..c5699afffe9 100644 --- a/l10n/de_CH/lib.po +++ b/l10n/de_CH/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -21,33 +21,33 @@ msgstr "" "Language: de_CH\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -169,12 +169,12 @@ msgstr "Token abgelaufen. Bitte laden Sie die Seite neu." msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s geben Sie den Datenbank-Benutzernamen an." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s geben Sie den Datenbank-Namen an." @@ -190,7 +190,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL Benutzername und/oder Passwort ungültig: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Sie müssen entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben." @@ -199,23 +199,23 @@ msgstr "Sie müssen entweder ein existierendes Benutzerkonto oder das Administra msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB Fehler: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -240,15 +240,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Die Oracle-Verbindung konnte nicht aufgebaut werden." -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle Benutzername und/oder Passwort ungültig" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" diff --git a/l10n/de_CH/settings.po b/l10n/de_CH/settings.po index 192f5ea7cad..9138f86a788 100644 --- a/l10n/de_CH/settings.po +++ b/l10n/de_CH/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -60,7 +60,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Verschlüsselung" @@ -742,11 +742,11 @@ msgstr "Mehr" msgid "Less" msgstr "Weniger" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Version" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Sie verwenden %s der verfügbaren %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Passwort" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Ihr Passwort wurde geändert." -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Das Passwort konnte nicht geändert werden" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Ihre E-Mail-Adresse" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Abbrechen" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Sprache" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Helfen Sie bei der Übersetzung" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Login-Passwort" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Alle Dateien entschlüsseln" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Loginname" @@ -984,19 +992,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Unbegrenzt" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Andere" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index e7be1cc2ea3..33653a87343 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -159,27 +159,27 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Datei" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Ordner" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Bild" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Speichern..." diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 24a0dfce7d2..072bb94c918 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index d5770fce2e6..186a2fd6abc 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -248,29 +248,29 @@ msgstr "" msgid "Saved" msgstr "Gespeichert" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Hinweis: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "und" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Hinweis: Die cURL-Unterstützung von PHP ist nicht aktiviert oder installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wenden Sie sich zur Installation an Ihren Systemadministrator." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Hinweis: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wenden Sie sich zur Installation an Ihren Systemadministrator." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 953cd2bccc8..78874750651 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index cc593201872..672465f7772 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -23,33 +23,33 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Das Schreiben in das \"config\"-Verzeichnis nicht möglich!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Dies kann normalerweise repariert werden, indem dem Webserver Schreibzugriff auf das config-Verzeichnis gegeben wird" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Siehe %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Dies kann normalerweise repariert werden, indem dem Webserver %s Schreibzugriff auf das config-Verzeichnis %s gegeben wird." -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "Beispielkonfiguration gefunden" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -171,12 +171,12 @@ msgstr "Token abgelaufen. Bitte laden Sie die Seite neu." msgid "Unknown user" msgstr "Unbekannter Benutzer" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s geben Sie den Datenbank-Benutzernamen an." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s geben Sie den Datenbank-Namen an." @@ -192,7 +192,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL Benutzername und/oder Passwort ungültig: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Sie müssen entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben." @@ -201,23 +201,23 @@ msgstr "Sie müssen entweder ein existierendes Benutzerkonto oder das Administra msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB Benutzername und/oder Passwort sind nicht gültig" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB Fehler: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -242,15 +242,15 @@ msgstr "MySQL/MariaDB Benutzer '%s'@'%%' existiert bereits" msgid "Drop this user from MySQL/MariaDB." msgstr "Löschen Sie diesen Benutzer von MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Die Oracle-Verbindung konnte nicht aufgebaut werden." -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle Benutzername und/oder Passwort ungültig" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index b15a0c9b652..0e85d48932c 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -63,7 +63,7 @@ msgstr "Sie müssen Ihre Benutzer-E-Mail-Adresse einstellen, bevor Sie Test-E-Ma msgid "Send mode" msgstr "Sendemodus" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Verschlüsselung" @@ -745,11 +745,11 @@ msgstr "Mehr" msgid "Less" msgstr "Weniger" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Version" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Sie verwenden %s der verfügbaren %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Passwort" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Ihr Passwort wurde geändert." -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Das Passwort konnte nicht geändert werden" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Vollständiger Name" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Ihre E-Mail-Adresse" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Geben Sie eine E-Mail-Adresse an, um eine Wiederherstellung des Passworts zu ermöglichen und Benachrichtigungen zu empfangen" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profilbild" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Neues hochladen" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Neues aus Dateien wählen" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Bild entfernen" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Entweder PNG oder JPG. Im Idealfall quadratisch, aber Sie können es zuschneiden." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Ihr Avatar wird von Ihrerem ursprünglichenKonto verwendet." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Abbrechen" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Als Profilbild wählen" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Sprache" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Helfen Sie bei der Übersetzung" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Die Verschlüsselungsanwendung ist nicht länger aktiv, bitte entschlüsseln Sie alle ihre Daten" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Login-Passwort" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Alle Dateien entschlüsseln" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Ihre Verschlüsselungsschlüssel wiederherstellen wurden zu einem Backup-Speicherort verschoben. Wenn irgendetwas schief läuft können die Schlüssel wiederhergestellt werden. Löschen Sie diese nur dann dauerhaft, wenn Sie sich sicher sind, dass alle Dateien korrekt entschlüsselt wurden." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Verschlüsselungsschlüssel wiederherstellen" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Verschlüsselungsschlüssel löschen" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Loginname" @@ -987,19 +995,19 @@ msgstr "Jeder" msgid "Admins" msgstr "Administratoren" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Standardkontingent" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Bitte Speicherkontingent eingeben (z.B.: „512 MB“ oder „12 GB“)" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Unbegrenzt" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Andere" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index a1f27ebd31f..5a82f9d2269 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -55,11 +55,11 @@ msgstr "Keine Aktion spezifiziert" msgid "No configuration specified" msgstr "Keine Konfiguration spezifiziert" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Keine Daten spezifiziert" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Die Konfiguration %s konnte nicht gesetzt werden" @@ -108,65 +108,65 @@ msgstr "Base-DN konnte nicht festgestellt werden" msgid "Please specify the port" msgstr "Bitte Port spezifizieren" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Konfiguration OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Konfiguration nicht korrekt" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Konfiguration nicht vollständig" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Wähle Gruppen" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Objekt-Klassen auswählen" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Attribute auswählen" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Verbindungstest erfolgreich" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Verbindungstest fehlgeschlagen" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Möchten Sie die aktuelle Serverkonfiguration wirklich löschen?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Löschung bestätigen" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s Gruppe gefunden" msgstr[1] "%s Gruppen gefunden" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s Benutzer gefunden" msgstr[1] "%s Benutzer gefunden" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Konnte die gewünschte Funktion nicht finden" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Ungültiger Host" @@ -258,60 +258,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Bestimmt den Filter, welcher bei einer Anmeldung angewandt wird. %%uid ersetzt den Benutzernamen bei der Anmeldung. Beispiel: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Server" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Server:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Serverkonfiguration hinzufügen" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Konfiguration löschen" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Host" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Sie können das Protokoll auslassen, außer wenn Sie SSL benötigen. Beginnen Sie dann mit ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Benutzer-DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für einen anonymen Zugriff lassen Sie DN und Passwort leer." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Passwort" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Lassen Sie die Felder DN und Passwort für einen anonymen Zugang leer." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Ein Basis-DN pro Zeile" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Sie können Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren" diff --git a/l10n/el/core.po b/l10n/el/core.po index a074320cb05..b63e4328d93 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -160,27 +160,27 @@ msgstr "Νοέμβριος" msgid "December" msgstr "Δεκέμβριος" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Αρχείο" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Φάκελος" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Εικόνα" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Ήχος" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Γίνεται αποθήκευση..." diff --git a/l10n/el/files.po b/l10n/el/files.po index acc523c7558..1f116a13012 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: evigiannakou \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index f5dc997d3b9..f69db901cf7 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -248,29 +248,29 @@ msgstr "" msgid "Saved" msgstr "Αποθηκεύτηκαν" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Σημείωση: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "και" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Σημείωση: Η υποστήριξη cURL στην PHP δεν είναι ενεργοποιημένη ή εγκατεστημένη. Η προσάρτηση του %s δεν είναι δυνατή. Παρακαλώ ζητήστε από τον διαχειριστή συστημάτων σας να την εγκαταστήσει." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Σημείωση: Η υποστήριξη FTP στην PHP δεν είναι ενεργοποιημένη ή εγκατεστημένη. Δεν είναι δυνατή η προσάρτηση του %s. Παρακαλώ ζητήστε από τον διαχειριστή συστημάτων σας να την εγκαταστήσει." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index abfc957abc0..8850a49731c 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: Vassilis Kehayas \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 13c04b4c681..603d5f43e1f 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: evigiannakou \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -25,33 +25,33 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Αδυναμία εγγραφής στον κατάλογο \"config\"!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Αυτό μπορεί συνήθως να διορθωθεί παρέχοντας δικαιώματα εγγραφής για το φάκελο config στο διακομιστή δικτύου" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Δείτε %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Αυτό μπορεί συνήθως να διορθωθεί %sπαρέχοντας δικαιώματα εγγραφής για το φάκελο config στο διακομιστή δικτύου%s." -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "Ανιχνεύθηκε δείγμα εγκατάστασης" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -173,12 +173,12 @@ msgstr "Το αναγνωριστικό έληξε. Παρακαλώ φορτώ msgid "Unknown user" msgstr "Άγνωστος χρήστης" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s εισάγετε το όνομα χρήστη της βάσης δεδομένων." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s εισάγετε το όνομα της βάσης δεδομένων." @@ -194,7 +194,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Το όνομα χρήστη και/ή ο κωδικός της MS SQL δεν είναι έγκυρα: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Χρειάζεται να εισάγετε είτε έναν υπάρχον λογαριασμό ή του διαχειριστή." @@ -203,23 +203,23 @@ msgstr "Χρειάζεται να εισάγετε είτε έναν υπάρχ msgid "MySQL/MariaDB username and/or password not valid" msgstr "Μη έγκυρο όνομα χρήστη ή/και συνθηματικό της MySQL/MariaDB" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Σφάλμα Βάσης Δεδομένων: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -244,15 +244,15 @@ msgstr "Υπάρχει ήδη ο χρήστης '%s'@'%%' της MySQL/MariaDB" msgid "Drop this user from MySQL/MariaDB." msgstr "Κατάργηση του χρήστη από MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Αδυναμία σύνδεσης Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Μη έγκυρος χρήστης και/ή συνθηματικό της Oracle" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Η εντολη παραβατικοτητας ηταν: \"%s\", ονομα: %s, κωδικος: %s" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 443f279b200..cc2f479f47f 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" -"Last-Translator: evigiannakou \n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -62,7 +62,7 @@ msgstr "Πρέπει να ορίσετε το email του χρήστη πριν msgid "Send mode" msgstr "Κατάσταση αποστολής" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Κρυπτογράφηση" @@ -744,11 +744,11 @@ msgstr "Περισσότερα" msgid "Less" msgstr "Λιγότερα" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Έκδοση" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Χρησιμοποιήσατε %s από τα %s διαθέσιμα" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Συνθηματικό" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Το συνθηματικό σας έχει αλλάξει" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Δεν ήταν δυνατή η αλλαγή του κωδικού πρόσβασης" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Τρέχων συνθηματικό" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Νέο συνθηματικό" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Αλλαγή συνθηματικού" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Πλήρες όνομα" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Ηλεκτρονικό ταχυδρομείο" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Η διεύθυνση ηλ. ταχυδρομείου σας" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Συμπληρώστε μια διεύθυνση email για να ενεργοποιήσετε την επαναφορά συνθηματικού και να λαμβάνετε ειδοποιήσεις" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Φωτογραφία προφίλ" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Μεταφόρτωση νέου" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Επιλογή νέου από τα Αρχεία" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Αφαίρεση εικόνας" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Είτε png ή jpg. Ιδανικά τετράγωνη αλλά θα είστε σε θέση να την περικόψετε." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Το άβατάρ σας παρέχεται από τον αρχικό σας λογαριασμό." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Άκυρο" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Επιλογή εικόνας προφίλ" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Γλώσσα" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Βοηθήστε στη μετάφραση" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Η εφαρμογή κρυπτογράφησης δεν είναι πλέον ενεργοποιημένη, παρακαλώ αποκρυπτογραφήστε όλα τα αρχεία σας" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Συνθηματικό εισόδου" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Αποκρυπτογράφηση όλων των Αρχείων" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Τα κλειδιά κρυπτογράφησής σας μεταφέρονται σε θέση αντιγράφου ασφαλείας. Αν κάτι πάει στραβά, μπορείτε να τα επαναφέρετε. Διαγράψτε τα οριστικά μόνο αν είστε βέβαιοι ότι όλα τα αρχεία αποκρυπτογραφήθηκαν σωστά." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Επαναφορά κλειδιών κρυπτογράφησης" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Διαγραφή κλειδιών κρυπτογράφησης" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Όνομα Σύνδεσης" @@ -986,19 +994,19 @@ msgstr "Όλοι" msgid "Admins" msgstr "Διαχειριστές" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Προεπιλεγμένο Όριο" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Παρακαλώ εισάγετε επιτρεπόμενα μερίδια αποθηκευτικού χώρου (π.χ. \"512 MB\" ή \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Απεριόριστο" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Άλλο" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 542fc42e11e..9d5393145c9 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: Vassilis Kehayas \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -53,11 +53,11 @@ msgstr "Καμμία εντολή δεν προσδιορίστηκε" msgid "No configuration specified" msgstr "Καμμία διαμόρφωση δεν προσδιορίστηκε" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Δεν προσδιορίστηκαν δεδομένα" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Αδυναμία ρύθμισης %s" @@ -106,65 +106,65 @@ msgstr "Δεν ήταν δυνατό να καθοριστεί το βασικό msgid "Please specify the port" msgstr "Παρακαλώ ορίστε την θύρα" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Η διαμόρφωση είναι εντάξει" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Η διαμόρφωση είναι λανθασμένη" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Η διαμόρφωση είναι ελλιπής" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Επιλέξτε ομάδες" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Επιλογή κλάσης αντικειμένων" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Επιλογή χαρακτηριστικών" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Επιτυχημένη δοκιμαστική σύνδεση" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Αποτυχημένη δοκιμαστική σύνδεσης." -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Θέλετε να διαγράψετε τις τρέχουσες ρυθμίσεις του διακομιστή;" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Επιβεβαίωση Διαγραφής" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s ομάδα βρέθηκε" msgstr[1] "%s ομάδες βρέθηκαν" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s χρήστης βρέθηκε" msgstr[1] "%s χρήστες βρέθηκαν" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Αδυναμία εύρεσης επιθυμητου χαρακτηριστικού" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Άκυρος εξυπηρετητής" @@ -256,60 +256,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Ορίζει το φίλτρο που θα εφαρμοστεί, όταν επιχειριθεί σύνδεση. Το %%uid αντικαθιστά το όνομα χρήστη κατά τη σύνδεση. Παράδειγμα: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Διακομιστής" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Διακομιστής:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Προσθήκη Ρυθμίσεων Διακομιστή" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Απαλοιφή ρυθμίσεων" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Διακομιστής" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Μπορείτε να παραλείψετε το πρωτόκολλο, εκτός αν απαιτείται SSL. Σε αυτή την περίπτωση ξεκινήστε με ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Θύρα" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "User DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "Το DN του χρήστη πελάτη με το οποίο θα πρέπει να γίνει η σύνδεση, π.χ. uid=agent,dc=example,dc=com. Για χρήση χωρίς πιστοποίηση, αφήστε το DN και τον Κωδικό κενά." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Συνθηματικό" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Για ανώνυμη πρόσβαση, αφήστε κενά τα πεδία DN και Pasword." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Ένα DN Βάσης ανά γραμμή " -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Μπορείτε να καθορίσετε το Base DN για χρήστες και ομάδες από την καρτέλα Προηγμένες ρυθμίσεις" diff --git a/l10n/en@pirate/settings.po b/l10n/en@pirate/settings.po index ce6e6c40e09..9a0f7175c1b 100644 --- a/l10n/en@pirate/settings.po +++ b/l10n/en@pirate/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Passcode" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po index eb185fc0f2c..ad3e0932758 100644 --- a/l10n/en_GB/core.po +++ b/l10n/en_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -149,27 +149,27 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Settings" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "File" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Folder" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Image" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Saving..." diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index c8a13ff58ff..be3928e70f6 100644 --- a/l10n/en_GB/files.po +++ b/l10n/en_GB/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en_GB/files_external.po b/l10n/en_GB/files_external.po index 51fbad9859d..9cdfbfda808 100644 --- a/l10n/en_GB/files_external.po +++ b/l10n/en_GB/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"Last-Translator: Darren Richardson \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -234,39 +234,39 @@ msgstr "System" #: js/settings.js:196 msgid "All users. Type to select user or group." -msgstr "" +msgstr "All users. Type to select user or group." #: js/settings.js:279 msgid "(group)" -msgstr "" +msgstr "(group)" #: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Saved" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Note: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr " and " -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/en_GB/files_trashbin.po b/l10n/en_GB/files_trashbin.po index 13160286965..54e27cc801d 100644 --- a/l10n/en_GB/files_trashbin.po +++ b/l10n/en_GB/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en_GB/lib.po b/l10n/en_GB/lib.po index 94777a7ffe7..61595f3e955 100644 --- a/l10n/en_GB/lib.po +++ b/l10n/en_GB/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -18,33 +18,33 @@ msgstr "" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Cannot write into \"config\" directory!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "This can usually be fixed by giving the webserver write access to the config directory" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "See %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "This can usually be fixed by %sgiving the webserver write access to the config directory%s." -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "Sample configuration detected" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -166,12 +166,12 @@ msgstr "Token expired. Please reload page." msgid "Unknown user" msgstr "Unknown user" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s enter the database username." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s enter the database name." @@ -187,7 +187,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL username and/or password not valid: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "You need to enter either an existing account or the administrator." @@ -196,23 +196,23 @@ msgstr "You need to enter either an existing account or the administrator." msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB username and/or password not valid" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB Error: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -237,15 +237,15 @@ msgstr "MySQL/MariaDB user '%s'@'%%' already exists" msgid "Drop this user from MySQL/MariaDB." msgstr "Drop this user from MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Oracle connection could not be established" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle username and/or password not valid" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Offending command was: \"%s\", name: %s, password: %s" diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index 71956761d62..630f586cf6d 100644 --- a/l10n/en_GB/settings.po +++ b/l10n/en_GB/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" -"Last-Translator: Darren Richardson \n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,7 +52,7 @@ msgstr "You need to set your user email before being able to send test emails." msgid "Send mode" msgstr "Send mode" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Encryption" @@ -734,11 +734,11 @@ msgstr "More" msgid "Less" msgstr "Less" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Version" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "You have used %s of the available %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Password" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Your password was changed" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Unable to change your password" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Current password" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "New password" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Change password" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Full Name" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Email" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Your email address" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Fill in an email address to enable password recovery and receive notifications" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profile picture" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Upload new" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Select new from Files" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Remove image" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Either png or jpg. Ideally square but you will be able to crop it." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Your avatar is provided by your original account." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Cancel" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Choose as profile image" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Language" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Help translate" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "The encryption app is no longer enabled, please decrypt all your files" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Log-in password" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Decrypt all Files" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Restore Encryption Keys" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Delete Encryption Keys" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Login Name" @@ -976,19 +984,19 @@ msgstr "Everyone" msgid "Admins" msgstr "Admins" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Default Quota" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Please enter storage quota (e.g. \"512 MB\" or \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Unlimited" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Other" diff --git a/l10n/en_GB/user_ldap.po b/l10n/en_GB/user_ldap.po index 8fd3ad71f1f..0c21160ab3d 100644 --- a/l10n/en_GB/user_ldap.po +++ b/l10n/en_GB/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: Darren Richardson \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -50,11 +50,11 @@ msgstr "No action specified" msgid "No configuration specified" msgstr "No configuration specified" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "No data specified" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr " Could not set configuration %s" @@ -103,65 +103,65 @@ msgstr "Could not determine Base DN" msgid "Please specify the port" msgstr "Please specify the port" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Configuration OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Configuration incorrect" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Configuration incomplete" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Select groups" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Select object classes" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Select attributes" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Connection test succeeded" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Connection test failed" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Do you really want to delete the current Server Configuration?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Confirm Deletion" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s group found" msgstr[1] "%s groups found" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s user found" msgstr[1] "%s users found" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Could not find the desired feature" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Invalid Host" @@ -253,60 +253,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Server" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Server:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Add Server Configuration" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Delete Configuration" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Host" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "You can omit the protocol, except you require SSL. Then start with ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "User DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "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." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Password" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "For anonymous access, leave DN and Password empty." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "One Base DN per line" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "You can specify Base DN for users and groups in the Advanced tab" diff --git a/l10n/en_NZ/settings.po b/l10n/en_NZ/settings.po index 0cb5bfe31ec..a9ca5678a38 100644 --- a/l10n/en_NZ/settings.po +++ b/l10n/en_NZ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (New Zealand) (http://www.transifex.com/projects/p/owncloud/language/en_NZ/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index a062f111ee5..bb0c78a51c0 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -150,27 +150,27 @@ msgstr "Novembro" msgid "December" msgstr "Decembro" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Agordo" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Dosiero" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Dosierujo" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Bildo" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Konservante..." diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 07b58d098a9..085ad3b79e7 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index de4cc2fa2de..14bb153364b 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -244,29 +244,29 @@ msgstr "" msgid "Saved" msgstr "Konservita" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Noto:" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "kaj" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index 8ea3c8476c1..62956b310ea 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index b3cc3d1d277..c33df7418eb 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -18,33 +18,33 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -166,12 +166,12 @@ msgstr "Ĵetono eksvalidiĝis. Bonvolu reŝargi la paĝon." msgid "Unknown user" msgstr "Nekonata uzanto" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s enigu la uzantonomon de la datumbazo." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s enigu la nomon de la datumbazo." @@ -187,7 +187,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "La uzantonomo de MS SQL aŭ la pasvorto ne validas: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -196,23 +196,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "La MySQL/MariaDB-uzantonomo kajaŭ pasvorto ne validas." -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Datumbaza eraro: “%s”" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -237,15 +237,15 @@ msgstr "La MySQL/MariaDB-uzanto '%s'@'%%' jam ekzistas" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Konekto al Oracle ne povas stariĝi" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "La uzantonomo de Oracle aŭ la pasvorto ne validas" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 8764f04d201..3f5763739b0 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "Sendi pli" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Ĉifrado" @@ -734,11 +734,11 @@ msgstr "Pli" msgid "Less" msgstr "Malpli" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Eldono" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Vi uzas %s el la disponeblaj %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Pasvorto" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Via pasvorto ŝanĝiĝis" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Ne eblis ŝanĝi vian pasvorton" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Nuna pasvorto" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nova pasvorto" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Ŝanĝi la pasvorton" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Plena nomo" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Retpoŝto" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Via retpoŝta adreso" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profila bildo" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Alŝuti novan" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Elekti novan el dosieroj" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Forigi bildon" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Aŭ PNG aŭ JPG. Prefere ĝi kvadratu, sed vi povos stuci ĝin." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Nuligi" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Elekti kiel profilan bildon" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Lingvo" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Helpu traduki" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Ensaluta pasvorto" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Malĉifri ĉiujn dosierojn" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Viaj ĉifroklavoj moviĝis al savokopia loko. Se io malsukcesas, vi povas restaŭri la klavojn. Nur forigu ilin porĉiame se vi certas, ke ĉiuj dosieroj malĉifriĝis korekte." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Restaŭri ĉifroklavojn" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Forigi ĉifroklavojn" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Ensaluti" @@ -976,19 +984,19 @@ msgstr "Ĉiuj" msgid "Admins" msgstr "Administrantoj" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Defaŭlta kvoto" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Senlima" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Alia" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index c243195d296..c68d15bb5c2 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -50,11 +50,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -103,65 +103,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "La agordaro ĝustas" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "La agordaro malĝustas" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "La agordaro neplenas" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Elekti grupojn" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Elekti objektoklasojn" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Elekti atribuojn" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Provo de konekto sukcesis" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Provo de konekto malsukcesis" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Konfirmi forigon" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s grupo troviĝis" msgstr[1] "%s grupoj troviĝis" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s uzanto troviĝis" msgstr[1] "%s uzanto troviĝis" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Nevalida gastigo" @@ -253,60 +253,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Servilo" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Servilo:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Aldoni agordon de servilo" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Forigi agordaron" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Gastigo" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Vi povas neglekti la protokolon, escepte se vi bezonas SSL-on. Tiuokaze, komencu per ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Pordo" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Uzanto-DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Pasvorto" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Por sennoman aliron, lasu DN-on kaj Pasvorton malplenaj." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/es/core.po b/l10n/es/core.po index c698ddfd39f..757ab6fdd85 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -33,8 +33,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -174,27 +174,27 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Ajustes" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Archivo" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Carpeta" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Imagen" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Guardando..." diff --git a/l10n/es/files.po b/l10n/es/files.po index 104240f09ce..012d43438e6 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index ab3e7cea174..3cdc8d86a6a 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -4,6 +4,7 @@ # # Translators: # Artopal , 2014 +# Artopal , 2014 # joses , 2014 # Miguel Reyes Canales , 2014 # Raul Fernandez Garcia , 2014 @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"Last-Translator: Artopal \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" @@ -238,39 +239,39 @@ msgstr "Sistema" #: js/settings.js:196 msgid "All users. Type to select user or group." -msgstr "" +msgstr "Todos los usuarios. Teclee para seleccionar un usuario o grupo." #: js/settings.js:279 msgid "(group)" -msgstr "" +msgstr "(grupo)" #: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Guardado" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Nota: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "y" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Nota: El soporte de cURL en PHP no está activado o instalado. No se puede montar %s. Pídale al administrador de sistema que lo instale." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Nota: El soporte de FTP en PHP no está activado o instalado. No se puede montar %s. Pídale al administrador de sistema que lo instale." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 3766f4abf28..4a2a89fc3ab 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 1aafedeeaee..f3d21e035fc 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -31,33 +31,33 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "¡No se puede escribir en el directorio de Configuración!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Esto puede ser facilmente solucionado, dando permisos de escritura al directorio de configuración en el servidor Web" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Mirar %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Esto puede ser facilmente solucionado, %sdando permisos de escritura al directorio de configuración en el servidor Web%s." -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "Ejemplo de configuración detectado" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -179,12 +179,12 @@ msgstr "Token expirado. Por favor, recarga la página." msgid "Unknown user" msgstr "Usuario desconocido" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s ingresar el usuario de la base de datos." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s ingresar el nombre de la base de datos" @@ -200,7 +200,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Usuario y/o contraseña de MS SQL no válidos: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Tiene que ingresar una cuenta existente o la del administrador." @@ -209,23 +209,23 @@ msgstr "Tiene que ingresar una cuenta existente o la del administrador." msgid "MySQL/MariaDB username and/or password not valid" msgstr "Nombre de usuario y/o contraseña de MySQL/MariaDB inválidos" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Error BD: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -250,15 +250,15 @@ msgstr "El usuario de MySQL/MariaDB '%s'@'%%' ya existe" msgid "Drop this user from MySQL/MariaDB." msgstr "Eliminar este usuario de MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "No se pudo establecer la conexión a Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Usuario y/o contraseña de Oracle no válidos" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Comando infractor: \"%s\", nombre: %s, contraseña: %s" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index c3fb09c634e..dfa5addbd16 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -25,9 +25,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" -"Last-Translator: Artopal \n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,7 +69,7 @@ msgstr "Tiene que configurar su dirección de correo electrónico antes de poder msgid "Send mode" msgstr "Modo de envío" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Cifrado" @@ -751,11 +751,11 @@ msgstr "Más" msgid "Less" msgstr "Menos" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versión" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Ha usado %s de los %s disponibles" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Contraseña" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Su contraseña ha sido cambiada" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "No se ha podido cambiar su contraseña" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Contraseña actual" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nueva contraseña" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Cambiar contraseña" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Nombre completo" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Correo electrónico" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Su dirección de correo" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Introducir una dirección de correo electrónico para activar la recuperación de contraseñas y recibir notificaciones" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Foto de perfil" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Subir otra" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Seleccionar otra desde Archivos" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Borrar imagen" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Archivo PNG o JPG. Preferiblemente cuadrado, pero tendrás la posibilidad de recortarlo." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Su avatar es proporcionado por su cuenta original." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Cancelar" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Seleccionar como imagen de perfil" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Idioma" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Ayúdanos a traducir" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "La aplicación de cifrado ya no está activada, descifre todos sus archivos" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Contraseña de acceso" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Descifrar archivos" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Sus claves de cifrado se archivarán en una localización segura. Así en caso de que algo fuese mal podrá recuperan sus claves. Borre sus claves de cifrado permanentemente solamente si esta seguro de que sus archivos han sido descifrados correctamente." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Restaurar claves de cifrado" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Eliminar claves de cifrado" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Nombre de usuario" @@ -993,19 +1001,19 @@ msgstr "Todos" msgid "Admins" msgstr "Administradores" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Cuota predeterminada" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Por favor indique la cúota de almacenamiento (ej: \"512 MB\" o \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Ilimitado" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Otro" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index f19969be280..38b5314985d 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: Artopal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -61,11 +61,11 @@ msgstr "No se ha especificado la acción" msgid "No configuration specified" msgstr "No se ha especificado la configuración" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "No se han especificado los datos" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "No se pudo establecer la configuración %s" @@ -114,65 +114,65 @@ msgstr "No se pudo determinar un DN base" msgid "Please specify the port" msgstr "Especifique el puerto" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Configuración Correcta" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Configuración Incorrecta" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Configuración incompleta" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Seleccionar grupos" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Seleccionar la clase de objeto" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Seleccionar atributos" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "La prueba de conexión fue exitosa" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "La prueba de conexión falló" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "¿Realmente desea eliminar la configuración actual del servidor?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Confirmar eliminación" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "Grupo %s encontrado" msgstr[1] "Grupos %s encontrados" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "Usuario %s encontrado" msgstr[1] "Usuarios %s encontrados" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "No se puede encontrar la función deseada." -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Host inválido" @@ -264,60 +264,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Define el filtro a aplicar cuando se intenta identificar. %%uid remplazará al nombre de usuario en el proceso de identificación. Por ejemplo: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Servidor" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Servidor:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Agregar configuracion del servidor" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Borrar Configuración" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Servidor" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Puede omitir el protocolo, excepto si requiere SSL. En ese caso, empiece con ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Puerto" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN usuario" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, deje DN y contraseña vacíos." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Contraseña" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Para acceso anónimo, deje DN y contraseña vacíos." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Un DN Base por línea" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Puede especificar el DN base para usuarios y grupos en la pestaña Avanzado" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 66a963a7856..06645e3d5ed 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -150,27 +150,27 @@ msgstr "noviembre" msgid "December" msgstr "diciembre" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Configuración" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Archivo" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Carpeta" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Imagen" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Guardando..." diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 3bff106fe2f..fcdd2cdfb01 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index 7df211b087b..8debbe14de0 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -244,29 +244,29 @@ msgstr "" msgid "Saved" msgstr "Guardado" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 3c6e6efdb51..726872b3238 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 6ceced0e219..6b41a05c0a2 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -19,33 +19,33 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -167,12 +167,12 @@ msgstr "Token expirado. Por favor, recargá la página." msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s Entrá el usuario de la base de datos" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s Entrá el nombre de la base de datos." @@ -188,7 +188,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nombre de usuario y contraseña de MS SQL no son válidas: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Tenés que ingresar una cuenta existente o el administrador." @@ -197,23 +197,23 @@ msgstr "Tenés que ingresar una cuenta existente o el administrador." msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Error DB: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -238,15 +238,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "No fue posible establecer la conexión a Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "El nombre de usuario y/o contraseña no son válidos" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "El comando no comprendido es: \"%s\", nombre: \"%s\", contraseña: \"%s\"" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 0c1c2cc675c..94264c885f2 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -55,7 +55,7 @@ msgstr "Necesita especificar el usuario de correo electrónico antes de poder en msgid "Send mode" msgstr "Modo de envio" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Encriptación" @@ -737,11 +737,11 @@ msgstr "Más" msgid "Less" msgstr "Menos" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versión" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Usás %s de los %s disponibles" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Contraseña" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Tu contraseña fue cambiada" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "No fue posible cambiar tu contraseña" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Contraseña actual" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nueva contraseña:" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Cambiar contraseña" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Nombre completo" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "e-mail" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Tu dirección de e-mail" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Rellene una direccion de correo para habilitar la recuperacion de contraseña y recibir notificaciones. " -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Imágen de perfil" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Subir nuevo" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Seleccionar nuevo desde archivos" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Remover imagen" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Sólo png o jpg. Lo ideal que sea cuadrada sino luego podrás recortarlo." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Su avatar es proveído por su cuenta original." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Cancelar" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Elegir como imagen de perfil" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Idioma" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Ayudanos a traducir" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "La aplicación de encriptación ya no está habilidata, por favor desencripte todos sus archivos." -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Clave de acceso" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Desencriptar todos los archivos" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Nombre de Usuario" @@ -979,19 +987,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Cuota predeterminada" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Por favor ingrese la cuota de almacenamiento (ej.: \"512 MB\" o \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Ilimitado" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Otros" diff --git a/l10n/es_BO/settings.po b/l10n/es_BO/settings.po index 022caebdf1a..339046744bd 100644 --- a/l10n/es_BO/settings.po +++ b/l10n/es_BO/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Bolivia) (http://www.transifex.com/projects/p/owncloud/language/es_BO/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/es_CL/core.po b/l10n/es_CL/core.po index f8470d6874d..2c8bd9a0d5f 100644 --- a/l10n/es_CL/core.po +++ b/l10n/es_CL/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -149,27 +149,27 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Configuración" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "" diff --git a/l10n/es_CL/lib.po b/l10n/es_CL/lib.po index 968ab769cc3..b872f2748a0 100644 --- a/l10n/es_CL/lib.po +++ b/l10n/es_CL/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -18,33 +18,33 @@ msgstr "" "Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "No se puede escribir en el directorio \"config\"!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Generalmente esto se puede resolver otorgando permisos de escritura al servidor web en la carpeta configurada" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Ver %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Generalmente esto se puede resolver %s otorgando permisos de escritura al servidor web en la carpeta configurada %s" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -166,12 +166,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -187,7 +187,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -196,23 +196,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -237,15 +237,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/es_CL/settings.po b/l10n/es_CL/settings.po index 7a00cfbf091..b937173a32d 100644 --- a/l10n/es_CL/settings.po +++ b/l10n/es_CL/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Clave" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Cancelar" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/es_CO/settings.po b/l10n/es_CO/settings.po index e1eb75afd3b..eacd85d479a 100644 --- a/l10n/es_CO/settings.po +++ b/l10n/es_CO/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/projects/p/owncloud/language/es_CO/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/es_CR/settings.po b/l10n/es_CR/settings.po index b859d6dfc63..abec3dcc10e 100644 --- a/l10n/es_CR/settings.po +++ b/l10n/es_CR/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/es_EC/settings.po b/l10n/es_EC/settings.po index 1b555d86eae..2d268217969 100644 --- a/l10n/es_EC/settings.po +++ b/l10n/es_EC/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Ecuador) (http://www.transifex.com/projects/p/owncloud/language/es_EC/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/es_MX/core.po b/l10n/es_MX/core.po index 3f61e0e2550..aa75ebb9a3e 100644 --- a/l10n/es_MX/core.po +++ b/l10n/es_MX/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -148,27 +148,27 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Ajustes" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Archivo" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Carpeta" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Guardando..." diff --git a/l10n/es_MX/files.po b/l10n/es_MX/files.po index bf7bd695dea..050dd539daa 100644 --- a/l10n/es_MX/files.po +++ b/l10n/es_MX/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_MX/files_external.po b/l10n/es_MX/files_external.po index 36e43601849..97282ebeedc 100644 --- a/l10n/es_MX/files_external.po +++ b/l10n/es_MX/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/es_MX/files_trashbin.po b/l10n/es_MX/files_trashbin.po index 5fca2c2a0ec..031cfdb4d89 100644 --- a/l10n/es_MX/files_trashbin.po +++ b/l10n/es_MX/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_MX/lib.po b/l10n/es_MX/lib.po index f7c1cd7df09..0dba13e7afd 100644 --- a/l10n/es_MX/lib.po +++ b/l10n/es_MX/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "Token expirado. Por favor, recarga la página." msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s ingresar el usuario de la base de datos." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s ingresar el nombre de la base de datos" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Usuario y/o contraseña de MS SQL no válidos: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Tiene que ingresar una cuenta existente o la del administrador." @@ -195,23 +195,23 @@ msgstr "Tiene que ingresar una cuenta existente o la del administrador." msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Error BD: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "No se pudo establecer la conexión a Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Usuario y/o contraseña de Oracle no válidos" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Comando infractor: \"%s\", nombre: %s, contraseña: %s" diff --git a/l10n/es_MX/settings.po b/l10n/es_MX/settings.po index 684d7593c8e..cee486b9635 100644 --- a/l10n/es_MX/settings.po +++ b/l10n/es_MX/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Cifrado" @@ -733,11 +733,11 @@ msgstr "Más" msgid "Less" msgstr "Menos" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versión" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Ha usado %s de los %s disponibles" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Contraseña" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Su contraseña ha sido cambiada" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "No se ha podido cambiar su contraseña" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Contraseña actual" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nueva contraseña" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Cambiar contraseña" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Nombre completo" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Correo electrónico" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Su dirección de correo" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Foto de perfil" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Subir otra" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Seleccionar otra desde Archivos" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Borrar imagen" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Archivo PNG o JPG. Preferiblemente cuadrado, pero tendrás la posibilidad de recortarlo." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Su avatar es proporcionado por su cuenta original." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Cancelar" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Seleccionar como imagen de perfil" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Idioma" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Ayúdanos a traducir" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "La aplicación de cifrado ya no está activada, descifre todos sus archivos" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Contraseña de acceso" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Descifrar archivos" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Nombre de usuario" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Por favor indique la cúota de almacenamiento (ej: \"512 MB\" o \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Ilimitado" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Otro" diff --git a/l10n/es_PE/settings.po b/l10n/es_PE/settings.po index dc0ef817d7c..a6f1bfac5ea 100644 --- a/l10n/es_PE/settings.po +++ b/l10n/es_PE/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Peru) (http://www.transifex.com/projects/p/owncloud/language/es_PE/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/es_PY/settings.po b/l10n/es_PY/settings.po index 5d8c96e4804..afe99bcd798 100644 --- a/l10n/es_PY/settings.po +++ b/l10n/es_PY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Paraguay) (http://www.transifex.com/projects/p/owncloud/language/es_PY/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/es_US/settings.po b/l10n/es_US/settings.po index e1e8f0ec5de..479428ffee4 100644 --- a/l10n/es_US/settings.po +++ b/l10n/es_US/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (United States) (http://www.transifex.com/projects/p/owncloud/language/es_US/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/es_UY/settings.po b/l10n/es_UY/settings.po index 7cb33bbbaed..0ad54de72b3 100644 --- a/l10n/es_UY/settings.po +++ b/l10n/es_UY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Uruguay) (http://www.transifex.com/projects/p/owncloud/language/es_UY/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index f2b6cc362ae..4b628c87539 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -150,27 +150,27 @@ msgstr "November" msgid "December" msgstr "Detsember" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Seaded" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Fail" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Kaust" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Pilt" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Helid" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Salvestamine..." @@ -816,7 +816,7 @@ msgstr "" #: templates/untrustedDomain.php:14 #, php-format msgid "Add \"%s\" as trusted domain" -msgstr "" +msgstr "Lisa \"%s\" usaldusväärse domeenina" #: templates/update.admin.php:3 #, php-format diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 7ea73c0d322..e8fe2319f4c 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -328,7 +328,7 @@ msgstr "{dirs} ja {files}" #: lib/app.php:80 #, php-format msgid "%s could not be renamed as it has been deleted" -msgstr "" +msgstr "%s ei saa ümber nimetada, kuna see on kustutatud" #: lib/app.php:113 #, php-format diff --git a/l10n/et_EE/files_encryption.po b/l10n/et_EE/files_encryption.po index 3259fe23b2d..e72cd6fc6eb 100644 --- a/l10n/et_EE/files_encryption.po +++ b/l10n/et_EE/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-12 01:54-0400\n" -"PO-Revision-Date: 2014-08-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 09:30+0000\n" +"Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,11 +37,11 @@ msgid "" "Could not disable recovery key. Please check your recovery key password!" msgstr "Ei suuda keelata taastevõtit. Palun kontrolli oma taastevõtme parooli!" -#: ajax/changeRecoveryPassword.php:49 +#: ajax/changeRecoveryPassword.php:50 msgid "Password successfully changed." msgstr "Parool edukalt vahetatud." -#: ajax/changeRecoveryPassword.php:51 +#: ajax/changeRecoveryPassword.php:52 msgid "Could not change the password. Maybe the old password was not correct." msgstr "Ei suutnud vahetada parooli. Võib-olla on vana parool valesti sisestatud." @@ -93,7 +93,7 @@ msgid "" " the encryption app has been disabled." msgstr "Palun veendu, et on paigaldatud PHP 5.3.3 või uuem ning PHP OpenSSL laiendus on lubatud ning seadistatud korrektselt. Hetkel krüpteerimise rakendus on peatatud." -#: hooks/hooks.php:293 +#: hooks/hooks.php:298 msgid "Following users are not set up for encryption:" msgstr "Järgmised kasutajad pole seadistatud krüpteeringuks:" @@ -163,7 +163,7 @@ msgstr "Muuda parooli" #: templates/settings-personal.php:12 msgid "Your private key password no longer matches your log-in password." -msgstr "" +msgstr "Sinu provaatvõtme parool ei kattu enam sinu sisselogimise parooliga." #: templates/settings-personal.php:15 msgid "Set your old private key password to your current log-in password:" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index ae4a45cb5df..294852b3037 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -235,39 +235,39 @@ msgstr "Süsteem" #: js/settings.js:196 msgid "All users. Type to select user or group." -msgstr "" +msgstr "Kõik kasutajad. Kirjuta, et valida kasutaja või grupp." #: js/settings.js:279 msgid "(group)" -msgstr "" +msgstr "(grupp)" #: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Salvestatud" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Märkus:" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "ja" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Märkus: cURL tugi puudub PHP paigalduses. FTP %s hoidla ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata cURL tugi." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Märkus: FTP tugi puudub PHP paigalduses. FTP %s hoidla ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata FTP tugi." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 15fbafc166f..0fc96c0b188 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 09:30+0000\n" +"Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,21 +25,21 @@ msgstr "Serverist serverisse jagamine pole antud serveris lubatud" #: ajax/external.php:38 msgid "Invalid or untrusted SSL certificate" -msgstr "" +msgstr "Vigane või tundmatu SSL sertifikaat" #: ajax/external.php:52 msgid "Couldn't add remote share" msgstr "Ei suutnud lisada kaugjagamist" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Sinuga jagatud" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Teistega jagatud" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Jagatud lingiga" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index c9c24732b34..02bf57ef6ca 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index d673d1213ef..832be4633f1 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,33 +19,33 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Ei saa kirjutada \"config\" kataloogi!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Tavaliselt saab selle lahendada andes veebiserverile seatete kataloogile \"config\" kirjutusõigused" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Vaata %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Tavaliselt saab selle lahendada %s andes veebiserverile seadete kataloogile \"config\" kirjutusõigused %s" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" -msgstr "" +msgstr "Tuvastati näidisseaded" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -167,12 +167,12 @@ msgstr "Kontrollkood aegus. Paelun lae leht uuesti." msgid "Unknown user" msgstr "Tundmatu kasutaja" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s sisesta andmebaasi kasutajatunnus." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s sisesta andmebaasi nimi." @@ -188,7 +188,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL kasutajatunnus ja/või parool pole õiged: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Sisesta kas juba olemasolev konto või administrator." @@ -197,23 +197,23 @@ msgstr "Sisesta kas juba olemasolev konto või administrator." msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB kasutajatunnus ja/või parool pole õiged" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Andmebaasi viga: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -238,15 +238,15 @@ msgstr "MySQL/MariaDB user '%s'@'%%' on juba olemas" msgid "Drop this user from MySQL/MariaDB." msgstr "Kustuta see MySQL/MariaDB kasutaja." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Ei suuda luua ühendust Oracle baasiga" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle kasutajatunnus ja/või parool pole õiged" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Tõrkuv käsk oli: \"%s\", nimi: %s, parool: %s" @@ -359,7 +359,7 @@ msgstr "" #: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" -msgstr "" +msgstr "Aegumiskuupäeva ei saa määrata. Aegumise kuupäev on minevikus" #: private/share/share.php:1095 #, php-format diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 7cfad404111..fbdc8d98d0a 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -4,13 +4,13 @@ # # Translators: # Pisike Sipelgas , 2013-2014 -# Rivo Zängov , 2013 +# Rivo Zängov , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "Pead seadistama oma e-postienne kui on võimalik saata test-kirju." msgid "Send mode" msgstr "Saatmise viis" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Krüpteerimine" @@ -197,11 +197,11 @@ msgstr "Ei suuda parooli muuta" #: js/admin.js:45 msgid "Are you really sure you want add \"{domain}\" as trusted domain?" -msgstr "" +msgstr "Oled sa kindel, et soovid lisada domeeni \"{domain}\" usaldusväärseks domeeniks?" #: js/admin.js:46 msgid "Add trusted domain" -msgstr "" +msgstr "Lis ausaldusväärne domeen" #: js/admin.js:146 msgid "Sending..." @@ -504,7 +504,7 @@ msgstr "Sinu PHP versioon on aegunud. Soovitame tungivalt uuenda versioonile 5.3 #: templates/admin.php:151 msgid "PHP charset is not set to UTF-8" -msgstr "" +msgstr "PHP märgistik pole UTF-8" #: templates/admin.php:154 msgid "" @@ -549,7 +549,7 @@ msgstr "Serveril puudub toimiv internetiühendus. See tähendab, et mõned funkt #: templates/admin.php:203 msgid "URL generation in notification emails" -msgstr "" +msgstr "URL-ide loomine teavituskirjades" #: templates/admin.php:206 #, php-format @@ -735,11 +735,11 @@ msgstr "Rohkem" msgid "Less" msgstr "Vähem" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versioon" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Kasutad %s saadavalolevast %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Parool" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Sinu parooli on muudetud" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Sa ei saa oma parooli muuta" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Praegune parool" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Uus parool" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Muuda parooli" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Täispikk nimi" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-post" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Sinu e-posti aadress" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Täida e-posti aadress võimaldamaks parooli taastamist ning teadete saamist." -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profiili pilt" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Laadi uus üles" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Vali failidest uus" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Eemalda pilt" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Kas png või jpg. Võimalikult ruudukujuline, kuid sul on võimalus seda veel lõigata." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Sinu avatari pakub sinu algne konto." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Loobu" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Vali profiilipildiks" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Keel" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Aita tõlkida" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Küpteeringu rakend pole lubatud, dekrüpteeri kõik oma failid" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Sisselogimise parool" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Dekrüpteeri kõik failid" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Sinu krüpteerimisvõtmed on tõstetud varukoopiasse. Kui midagi läheb valesti, siis saad võtmed taastada. Kustuta lõplikult ainult juhul kui oled kindel, et failid on dekrüteeritud korrektselt." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Taasta krüpteerimisvõtmed" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Kustuta krüpteerimisvõtmed" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Kasutajanimi" @@ -977,19 +985,19 @@ msgstr "Igaüks" msgid "Admins" msgstr "Haldurid" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Vaikimisi kvoot" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Palun sisesta mahupiir (nt: \"512 MB\" või \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Piiramatult" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Muu" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 8c044180661..bf66ad75e1f 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: Pisike Sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -51,11 +51,11 @@ msgstr "Tegevusi pole määratletud" msgid "No configuration specified" msgstr "Seadistust pole määratletud" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Andmeid pole määratletud" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Ei suutnud seadistada %s" @@ -104,65 +104,65 @@ msgstr "Baas DN-i tuvastamine ebaõnnestus" msgid "Please specify the port" msgstr "Palun määra post" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Seadistus on korras" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Seadistus on vigane" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Seadistus on puudulik" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Vali grupid" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Vali objekti klassid" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Vali atribuudid" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Ühenduse testimine õnnestus" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Ühenduse testimine ebaõnnestus" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Oled kindel, et tahad kustutada praegust serveri seadistust?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Kinnita kustutamine" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s grupp leitud" msgstr[1] "%s gruppi leitud" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s kasutaja leitud" msgstr[1] "%s kasutajat leitud" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Ei suuda leida soovitud funktsioonaalsust" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Vigane server" @@ -254,60 +254,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Määrab sisselogimisel kasutatava filtri. %%uid asendab sisselogimistegevuses kasutajanime. Näide: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Server" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Server:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Lisa serveri seadistus" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Kustuta seadistused" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Host" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Sa ei saa protokolli ära jätta, välja arvatud siis, kui sa nõuad SSL-ühendust. Sel juhul alusta eesliitega ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Kasutaja DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "Klientkasutaja DN, kellega seotakse, nt. uid=agent,dc=näidis,dc=com. Anonüümseks ligipääsuks jäta DN ja parool tühjaks." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Parool" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Anonüümseks ligipääsuks jäta DN ja parool tühjaks." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Üks baas-DN rea kohta" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Sa saad kasutajate ja gruppide baas DN-i määrata lisavalikute vahekaardilt" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index a3560017e07..d494a2242e8 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -152,27 +152,27 @@ msgstr "Azaroa" msgid "December" msgstr "Abendua" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Fitxategia" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Karpeta" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Irudia" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Gordetzen..." diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 8adfb4b1896..9bd357e282d 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index c9b43aeac2e..9aa628371f2 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -246,29 +246,29 @@ msgstr "" msgid "Saved" msgstr "Gordeta" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Oharra:" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "eta" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Oharra: :PHPko cURL euskarria ez dago instalatuta edo gaitua. Ezinezko da %s muntatzea. Mesedez eskatu sistema administratzaleari instala dezan. " -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Oharra: :PHPko FTP euskarria ez dago instalatuta edo gaitua. Ezinezko da %s muntatzea. Mesedez eskatu sistema administratzaleari instala dezan. " -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 0ef7937e4bf..f55fc7db1b2 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 67308cd9262..0740fc2733a 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -21,33 +21,33 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Ezin da idatzi \"config\" karpetan!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Hau normalean konpondu daitekesweb zerbitzarira config karpetan idazteko baimenak emanez" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Ikusi %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Hau normalean konpondu daiteke %sweb zerbitzarira config karpetan idazteko baimenak emanez%s." -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "Adibide-ezarpena detektatua" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -169,12 +169,12 @@ msgstr "Tokena iraungitu da. Mesedez birkargatu orria." msgid "Unknown user" msgstr "Erabiltzaile ezezaguna" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s sartu datu basearen erabiltzaile izena." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s sartu datu basearen izena." @@ -190,7 +190,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL erabiltzaile izena edota pasahitza ez dira egokiak: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Existitzen den kontu bat edo administradorearena jarri behar duzu." @@ -199,23 +199,23 @@ msgstr "Existitzen den kontu bat edo administradorearena jarri behar duzu." msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB erabiltzaile edota pasahitza ez dira egokiak" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB errorea: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -240,15 +240,15 @@ msgstr "MySQL/MariaDB '%s'@'%%' erabiltzailea dagoeneko existitzen da" msgid "Drop this user from MySQL/MariaDB." msgstr "Ezabatu erabiltzaile hau MySQL/MariaDBtik." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Ezin da Oracle konexioa sortu" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle erabiltzaile edota pasahitza ez dira egokiak." -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Errorea komando honek sortu du: \"%s\", izena: %s, pasahitza: %s" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index f3c5e857c89..8fe44ed491b 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" -"Last-Translator: Alexander Gabilondo \n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,7 +56,7 @@ msgstr "Epostaren erabiltzailea zehaztu behar duzu probako eposta bidali aurreti msgid "Send mode" msgstr "Bidaltzeko modua" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Enkriptazioa" @@ -738,11 +738,11 @@ msgstr "Gehiago" msgid "Less" msgstr "Gutxiago" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Bertsioa" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Dagoeneko %s erabili duzu eskuragarri duzun %setatik" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Pasahitza" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Zure pasahitza aldatu da" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Ezin izan da zure pasahitza aldatu" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Uneko pasahitza" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Pasahitz berria" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Aldatu pasahitza" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Izena" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-posta" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Zure e-posta" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Bete ezazu eposta helbide bat pasahitza berreskuratzeko eta jakinarazpenak jasotzeko" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profilaren irudia" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Igo berria" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Hautatu berria Fitxategietatik" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Irudia ezabatu" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "png edo jpg. Hobe karratua baina mozteko aukera izango duzu." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Zure jatorrizko kontuak ezarri du zure avatar." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Ezeztatu" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Profil irudi bezala aukeratu" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Hizkuntza" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Lagundu itzultzen" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Enkriptazio aplikazioa ez dago jada gaiturik, mesedez desenkriptatu zure fitxategi guztiak." -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Saioa hasteko pasahitza" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Desenkripattu fitxategi guztiak" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Zure enkriptatze gakoak babeskopiara eraman dira. Zerbait gaizki ateratzen bada berreskura ditzakezu giltzak. Behin betirako ezabatu bakarrik ziur bazaude fitxategi guztiak ongi deskodetu badira." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Lehenera itzazu enkriptatze gakoak." -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Ezabatu enkriptatze gakoak" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Sarrera Izena" @@ -980,19 +988,19 @@ msgstr "Edonor" msgid "Admins" msgstr "Administratzaileak" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Kuota lehentsia" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Mesedez sartu biltegiratze kouta (adb: \"512 MB\" edo \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Mugarik gabe" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Bestelakoa" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index c7c275941f7..90a1b6d6c2a 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-28 01:54-0400\n" -"PO-Revision-Date: 2014-07-27 07:51+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: Alexander Gabilondo \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -51,11 +51,11 @@ msgstr "Ez da ekintzarik zehaztu" msgid "No configuration specified" msgstr "Ez da konfiguraziorik zehaztu" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Ez da daturik zehaztu" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Ezin izan da %s konfigurazioa ezarri" @@ -104,65 +104,65 @@ msgstr "Ezin izan da zehaztu Base DN" msgid "Please specify the port" msgstr "Mesdez zehaztu portua" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Konfigurazioa ongi dago" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Konfigurazioa ez dago ongi" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Konfigurazioa osatu gabe dago" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Hautatu taldeak" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Hautatu objektu klaseak" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Hautatu atributuak" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Konexio froga ongi burutu da" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Konexio frogak huts egin du" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Ziur zaude Zerbitzariaren Konfigurazioa ezabatu nahi duzula?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Baieztatu Ezabatzea" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "Talde %s aurkitu da" msgstr[1] "%s talde aurkitu dira" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "Erabiltzaile %s aurkitu da" msgstr[1] "%s erabiltzaile aurkitu dira" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Ezin izan da nahi zen ezaugarria aurkitu" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Baliogabeko hostalaria" @@ -254,60 +254,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Definitu aplikatu beharreko iragazkia sartzen saiatzean. %%uid erabiltzailearen izena ordezten du sartzeko ekintzan. Adibidez: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Zerbitzaria" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Zerbitzaria:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Gehitu Zerbitzariaren Konfigurazioa" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Ezabatu Konfigurazioa" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Hostalaria" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Protokoloa ez da beharrezkoa, SSL behar baldin ez baduzu. Honela bada hasi ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Portua" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Erabiltzaile DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "Lotura egingo den bezero erabiltzailearen DNa, adb. uid=agent,dc=example,dc=com. Sarrera anonimoak gaitzeko utzi DN eta Pasahitza hutsik." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Pasahitza" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Sarrera anonimoak gaitzeko utzi DN eta Pasahitza hutsik." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "DN Oinarri bat lerroko" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Erabiltzaile eta taldeentzako Oinarrizko DN zehaztu dezakezu Aurreratu fitxan" diff --git a/l10n/eu_ES/core.po b/l10n/eu_ES/core.po index 2f54f4914b2..a4efaee05d0 100644 --- a/l10n/eu_ES/core.po +++ b/l10n/eu_ES/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -148,27 +148,27 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "" diff --git a/l10n/eu_ES/files.po b/l10n/eu_ES/files.po index 6e6b2515085..5015cf3d2b5 100644 --- a/l10n/eu_ES/files.po +++ b/l10n/eu_ES/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/eu_ES/files_external.po b/l10n/eu_ES/files_external.po index 4296ffafe10..dad89f7328d 100644 --- a/l10n/eu_ES/files_external.po +++ b/l10n/eu_ES/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/eu_ES/files_trashbin.po b/l10n/eu_ES/files_trashbin.po index e44703e93e4..a6bb8031911 100644 --- a/l10n/eu_ES/files_trashbin.po +++ b/l10n/eu_ES/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/eu_ES/settings.po b/l10n/eu_ES/settings.po index e32771d8f79..be4a6fb6d07 100644 --- a/l10n/eu_ES/settings.po +++ b/l10n/eu_ES/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Ezeztatu" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Bestea" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index ca0aadf939c..9b4bb4b144d 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -153,27 +153,27 @@ msgstr "نوامبر" msgid "December" msgstr "دسامبر" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "تنظیمات" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "فایل" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "پوشه" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "تصویر" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "صدا" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "در حال ذخیره سازی..." diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 5a7ca0d26d1..57454bb3fb2 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index cb67bcf986c..1542b2c2329 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -244,29 +244,29 @@ msgstr "" msgid "Saved" msgstr "ذخیره شد" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index d63f5f98222..04b20a2154b 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: Mohammad \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 75e82df1712..c8ef5c48079 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -18,33 +18,33 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -166,12 +166,12 @@ msgstr "رمز منقضی شده است. لطفا دوباره صفحه را ب msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s نام کاربری پایگاه داده را وارد نمایید." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s نام پایگاه داده را وارد نمایید." @@ -187,7 +187,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "نام کاربری و / یا رمزعبور MS SQL معتبر نیست: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "شما نیاز به وارد کردن یک حساب کاربری موجود یا حساب مدیریتی دارید." @@ -196,23 +196,23 @@ msgstr "شما نیاز به وارد کردن یک حساب کاربری موج msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "خطای پایگاه داده: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -237,15 +237,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "ارتباط اراکل نمیتواند برقرار باشد." -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "نام کاربری و / یا رمزعبور اراکل معتبر نیست." -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "دستور متخلف عبارت است از: \"%s\"، نام: \"%s\"، رمزعبور:\"%s\"" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 81bcf65d2ba..148d9b934e7 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -55,7 +55,7 @@ msgstr "" msgid "Send mode" msgstr "حالت ارسال" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "رمزگذاری" @@ -737,11 +737,11 @@ msgstr "بیش‌تر" msgid "Less" msgstr "کم‌تر" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "نسخه" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "شما استفاده کردید از %s از میزان در دسترس %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "گذرواژه" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "رمز عبور شما تغییر یافت" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "ناتوان در تغییر گذرواژه" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "گذرواژه کنونی" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "گذرواژه جدید" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "تغییر گذر واژه" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "نام کامل" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "ایمیل" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "پست الکترونیکی شما" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "تصویر پروفایل" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "بارگذاری جدید" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "انتخاب جدید از میان فایل ها" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "تصویر پاک شود" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "هردوی jpg و png ها مربع گونه می‌باشند. با این حال شما می‌توانید آنها را برش بزنید." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "منصرف شدن" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "یک تصویر پروفایل انتخاب کنید" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "زبان" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "به ترجمه آن کمک کنید" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "رمز ورود" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "تمام فایلها رمزگشایی شود" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "بازیابی کلید های رمزگذاری" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "حذف کلید های رمزگذاری" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "نام کاربری" @@ -979,19 +987,19 @@ msgstr "همه" msgid "Admins" msgstr "مدیران" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "سهم پیش فرض" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "لطفا سهمیه ذخیره سازی را وارد کنید (به عنوان مثال: \" 512MB\" یا \"12GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "نامحدود" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "دیگر" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 691206eb16f..7bef4211849 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-13 01:54-0400\n" -"PO-Revision-Date: 2014-08-12 11:06+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: Mohammad \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -51,11 +51,11 @@ msgstr "فعالیتی مشخص نشده است" msgid "No configuration specified" msgstr "هیچ پیکربندی مشخص نشده است" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "داده ای مشخص نشده است" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -104,63 +104,63 @@ msgstr "امکان تشخیص نام دامنه (DN) پایه وجود ندار msgid "Please specify the port" msgstr "لطفا پورت مورد نظر را مشخص کنید." -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "پیکربندی صحیح است" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "پیکربندی نادرست است" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "پیکربندی کامل نیست" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "انتخاب گروه ها" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "انتخاب کلاس های اشیا" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "انتخاب مشخصه ها" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "تست اتصال با موفقیت انجام گردید" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "تست اتصال ناموفق بود" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "آیا واقعا می خواهید پیکربندی کنونی سرور را حذف کنید؟" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "تایید حذف" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s گروه بافت شد" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s کاربر بافت شد" -#: lib/wizard.php:321 lib/wizard.php:1057 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:864 lib/wizard.php:876 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "هاست نامعتبر است" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 84930888a95..ae12946c20e 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -151,27 +151,27 @@ msgstr "marraskuu" msgid "December" msgstr "joulukuu" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Asetukset" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Tiedosto" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Kansio" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Kuva" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Ääni" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Tallennetaan..." @@ -812,7 +812,7 @@ msgstr "Ota yhteys ylläpitäjään. Jos olet tämän ownCloudin ylläpitäjä, msgid "" "Depending on your configuration, as an administrator you might also be able " "to use the button below to trust this domain." -msgstr "" +msgstr "Riippuen määrityksistä, ylläpitäjänä saatat kyetä käyttämään alla olevaa painiketta luodaksesi luottamussuhteen tähän toimialueeseen." #: templates/untrustedDomain.php:14 #, php-format diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 0ceecea57de..736c57ee4bd 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 9b9a6e0e292..475f6d36c3a 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" @@ -134,7 +134,7 @@ msgstr "" #: appinfo/app.php:92 msgid "Secure ftps://" -msgstr "" +msgstr "Salattu ftps://" #: appinfo/app.php:100 msgid "Client ID" @@ -234,39 +234,39 @@ msgstr "Järjestelmä" #: js/settings.js:196 msgid "All users. Type to select user or group." -msgstr "" +msgstr "Kaikki käyttäjät. Kirjoita valitaksesi käyttäjän tai ryhmän." #: js/settings.js:279 msgid "(group)" -msgstr "" +msgstr "(ryhmä)" #: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Tallennettu" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Huomio: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "ja" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Huomio: PHP:n cURL-tuki ei ole käytössä tai sitä ei ole asennettu. Kohteen %s liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää ottamaan cURL-tuki käyttöön." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Huomio: PHP:n FTP-tuki ei ole käytössä tai sitä ei ole asennettu. Kohteen %s liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää ottamaan FTP-tuki käyttöön." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 1e55557c31b..ce78e46bbd5 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 407628c64ea..e28401479fb 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -18,33 +18,33 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Hakemistoon \"config\" kirjoittaminen ei onnistu!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -166,12 +166,12 @@ msgstr "Valtuutus vanheni. Lataa sivu uudelleen." msgid "Unknown user" msgstr "Tuntematon käyttäjä" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s anna tietokannan käyttäjätunnus." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s anna tietokannan nimi." @@ -187,7 +187,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL -käyttäjätunnus ja/tai -salasana on väärin: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -196,23 +196,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB-käyttäjätunnus ja/tai salasana on virheellinen" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Tietokantavirhe: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -237,15 +237,15 @@ msgstr "MySQL/MariaDB-käyttäjä '%s'@'%%' on jo olemassa" msgid "Drop this user from MySQL/MariaDB." msgstr "Pudota tämä käyttäjä MySQL/MariaDB:stä." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Oracle-yhteyttä ei voitu muodostaa" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oraclen käyttäjätunnus ja/tai salasana on väärin" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Loukkaava komento oli: \"%s\", nimi: %s, salasana: %s" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 0c6bd0d4bd2..9018770b45f 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "Aseta sähköpostiosoite, jotta voit testata sähköpostin toimivuutta." msgid "Send mode" msgstr "Lähetystila" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Salaus" @@ -734,11 +734,11 @@ msgstr "Enemmän" msgid "Less" msgstr "Vähemmän" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versio" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Käytössäsi on %s/%s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Salasana" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Salasanasi vaihdettiin" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Salasanaasi ei voitu vaihtaa" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Nykyinen salasana" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Uusi salasana" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Vaihda salasana" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Koko nimi" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Sähköpostiosoite" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Sähköpostiosoitteesi" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Anna sähköpostiosoitteesi, jotta unohdettu salasana on mahdollista palauttaa ja voit vastaanottaa ilmoituksia" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profiilikuva" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Lähetä uusi" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Valitse uusi tiedostoista" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Poista kuva" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Joko png- tai jpg-kuva. Mieluiten neliö, voit kuitenkin rajata kuvaa." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Avatar-kuvasi pohjautuu alkuperäiseen tiliisi." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Peru" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Valitse profiilikuvaksi" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Kieli" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Auta kääntämisessä" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Salaussovellus ei ole enää käytössä, joten pura kaikkien tiedostojesi salaus" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Kirjautumissalasana" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Pura kaikkien tiedostojen salaus" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Palauta salausavaimet" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Poista salausavaimet" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Kirjautumisnimi" @@ -976,19 +984,19 @@ msgstr "Kaikki" msgid "Admins" msgstr "Ylläpitäjät" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Oletuskiintiö" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Määritä tallennustilan kiintiö (esim. \"512 MB\" tai \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Rajoittamaton" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Muu" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 8e1678ea4f9..1458fc79967 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+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" @@ -50,11 +50,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -103,65 +103,65 @@ msgstr "" msgid "Please specify the port" msgstr "Määritä portti" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Määritykset OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Määritykset väärin" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Määritykset puutteelliset" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Valitse ryhmät" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Yhteystesti onnistui" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Yhteystesti epäonnistui" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Haluatko varmasti poistaa nykyisen palvelinmäärityksen?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Vahvista poisto" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s ryhmä löytynyt" msgstr[1] "%s ryhmää löytynyt" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s käyttäjä löytynyt" msgstr[1] "%s käyttäjää löytynyt" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -253,60 +253,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Palvelin" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Palvelin:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Lisää palvelinmääritys" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Poista määritys" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Isäntä" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Voit jättää protokollan määrittämättä, paitsi kun vaadit SSL:ää. Aloita silloin ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Portti" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Käyttäjän DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "Asiakasohjelman DN, jolla yhdistäminen tehdään, ts. uid=agent,dc=example,dc=com. Mahdollistaaksesi anonyymin yhteyden, jätä DN ja salasana tyhjäksi." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Salasana" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Jos haluat mahdollistaa anonyymin pääsyn, jätä DN ja Salasana tyhjäksi " -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Voit määrittää käyttäjien ja ryhmien oletus DN:n (distinguished name) 'tarkemmat asetukset'-välilehdeltä " diff --git a/l10n/fr/core.po b/l10n/fr/core.po index b24eac526b6..d1963b12ace 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -160,27 +160,27 @@ msgstr "novembre" msgid "December" msgstr "décembre" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Paramètres" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Fichier" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Dossier" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Image" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Enregistrement..." diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 24fea12e32d..aaa1a1d6393 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 4f2b4c86f8a..14dc42b94eb 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -251,29 +251,29 @@ msgstr "" msgid "Saved" msgstr "Sauvegarder" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Attention :" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "et" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Attention : Le support de cURL de PHP n'est pas activé ou installé. Le montage de %s n'est pas possible. Contactez votre administrateur système pour l'installer." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Attention : Le support FTP de PHP n'est pas activé ou installé. Le montage de %s n'est pas possible. Contactez votre administrateur système pour l'installer." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index 7378459aeb5..473e144116e 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index cda5d6a2b32..93a9a632ab8 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -27,33 +27,33 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Impossible d’écrire dans le répertoire \"config\" !" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Ce problème est généralement résolu en donnant au serveur web un accès en écriture à ce répertoire" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Voir %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Ce problème est généralement résolu %sen donnant au serveur web un accès en écriture au répertoire de configuration%s." -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -175,12 +175,12 @@ msgstr "La session a expiré. Veuillez recharger la page." msgid "Unknown user" msgstr "Utilisateur inconnu" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s entrez le nom d'utilisateur de la base de données." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s entrez le nom de la base de données." @@ -196,7 +196,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Le nom d'utilisateur et/ou le mot de passe de la base MS SQL est invalide : %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Vous devez spécifier soit le nom d'un compte existant, soit celui de l'administrateur." @@ -205,23 +205,23 @@ msgstr "Vous devez spécifier soit le nom d'un compte existant, soit celui de l' msgid "MySQL/MariaDB username and/or password not valid" msgstr "Nom d'utilisateur et/ou mot de passe MySQL/MariaDB invalide" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Erreur de la base de données : \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -246,15 +246,15 @@ msgstr "L'utilisateur MySQL/MariaDB '%s'@'%%' existe déjà" msgid "Drop this user from MySQL/MariaDB." msgstr "Retirer cet utilisateur de la base MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "La connexion Oracle ne peut pas être établie" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Nom d'utilisateur et/ou mot de passe de la base Oracle invalide" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "La requête en cause est : \"%s\", nom : %s, mot de passe : %s" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 43085950f5e..4e9b3a83340 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -23,8 +23,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "Vous devez configurer votre e-mail d'utilisateur avant de pouvoir envoye msgid "Send mode" msgstr "Mode d'envoi" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Chiffrement" @@ -749,11 +749,11 @@ msgstr "Plus" msgid "Less" msgstr "Moins" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Version" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Vous avez utilisé %s des %s disponibles" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Mot de passe" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Votre mot de passe a été changé" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Impossible de changer votre mot de passe" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Mot de passe actuel" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nouveau mot de passe" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Changer de mot de passe" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Nom complet" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Adresse mail" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Votre adresse e-mail" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Saisir une adresse e-mail pour permettre la réinitialisation du mot de passe et la réception des notifications" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Photo de profil" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Télécharger nouveau" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Sélectionner un nouveau depuis les documents" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Supprimer l'image" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Soit png ou jpg. Idéalement carrée mais vous pourrez la recadrer." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Votre avatar est fourni par votre compte original." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Annuler" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Choisir en temps que photo de profil " -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Langue" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Aidez à traduire" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "L'app de chiffrement n’est plus activée, veuillez déchiffrer tous vos fichiers" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Mot de passe de connexion" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Déchiffrer tous les fichiers" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Vos clés de chiffrement ont été déplacées dans l'emplacement de backup. Si quelque chose devait mal se passer, vous pouvez restaurer les clés. Choisissez la suppression permanente seulement si vous êtes sûr que tous les fichiers ont été déchiffrés correctement." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Restaurer les clés de chiffrement" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Supprimer les clés de chiffrement" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Nom d'utilisateur" @@ -991,19 +999,19 @@ msgstr "Tout le monde" msgid "Admins" msgstr "Administrateurs" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Quota par défaut" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Veuillez entrer le quota de stockage (ex. \"512 MB\" ou \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Illimité" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Autre" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index a8dee73333f..36d36c4590e 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: themen \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -56,11 +56,11 @@ msgstr "Aucune action spécifiée" msgid "No configuration specified" msgstr "Aucune configuration spécifiée" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Aucune donnée spécifiée" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Impossible de spécifier la configuration %s" @@ -109,65 +109,65 @@ msgstr "Impossible de déterminer la Base DN" msgid "Please specify the port" msgstr "Veuillez indiquer le port" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Configuration OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Configuration incorrecte" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Configuration incomplète" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Sélectionnez les groupes" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Sélectionner les classes d'objet" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Sélectionner les attributs" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Test de connexion réussi" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Test de connexion échoué" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Êtes-vous vraiment sûr de vouloir effacer la configuration actuelle du serveur ?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Confirmer la suppression" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s groupe trouvé" msgstr[1] "%s groupes trouvés" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s utilisateur trouvé" msgstr[1] "%s utilisateurs trouvés" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Impossible de trouver la fonction souhaitée" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Hôte invalide" @@ -259,60 +259,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Définit le filtre à appliquer lors d'une tentative de connexion. %%uid remplace le nom d'utilisateur lors de la connexion. Exemple : \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Serveur" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Serveur:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Ajouter une configuration du serveur" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Suppression de la configuration" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Hôte" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Vous pouvez omettre le protocole, sauf si vous avez besoin de SSL. Dans ce cas préfixez avec ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN Utilisateur (Autorisé à consulter l'annuaire)" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "DN de l'utilisateur client pour lequel la liaison doit se faire, par exemple uid=agent,dc=example,dc=com. Pour un accès anonyme, laisser le DN et le mot de passe vides." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Mot de passe" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Pour un accès anonyme, laisser le DN utilisateur et le mot de passe vides." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Un DN racine par ligne" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Vous pouvez spécifier les DN Racines de vos utilisateurs et groupes via l'onglet Avancé" diff --git a/l10n/fr_CA/settings.po b/l10n/fr_CA/settings.po index 52e2c98e0a0..e1ed2e8fcb0 100644 --- a/l10n/fr_CA/settings.po +++ b/l10n/fr_CA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index bc47c1bb3e0..0d2c2afcca4 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -150,27 +150,27 @@ msgstr "novembro" msgid "December" msgstr "decembro" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Axustes" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Ficheiro" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Cartafol" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Imaxe" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Son" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Gardando..." diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 006f35eaef7..cbb23823c5e 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 5e0deebff2e..26faf3d80dc 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -244,29 +244,29 @@ msgstr "" msgid "Saved" msgstr "Gardado" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Nota: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "e" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Nota: A compatibilidade de cURL en PHP non está activada, ou non está instalado. Non é posíbel a montaxe de %s. Consulte co administrador do sistema como instalalo." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Nota: A compatibilidade de FTP en PHP non está activada, ou non está instalado. Non é posíbel a montaxe de %s. Consulte co administrador do sistema como instalalo." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index 8290c466943..f8fa423a475 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: Miguel Anxo Bouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index f351260ef4a..6f718c965bb 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -19,33 +19,33 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Non é posíbel escribir no directorio «config»!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Polo xeral, isto pode ser fixado para permitirlle ao servidor web acceso de escritura ao directorio «config»" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Vexa %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Polo xeral, isto pode ser fixado para %spermitirlle ao servidor web acceso de escritura ao directorio «config»%s." -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -167,12 +167,12 @@ msgstr "Testemuña caducada. Recargue a páxina." msgid "Unknown user" msgstr "Usuario descoñecido" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s introduza o nome de usuario da base de datos" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s introduza o nome da base de datos" @@ -188,7 +188,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nome de usuario e/ou contrasinal de MS SQL incorrecto: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Deberá introducir unha conta existente ou o administrador." @@ -197,23 +197,23 @@ msgstr "Deberá introducir unha conta existente ou o administrador." msgid "MySQL/MariaDB username and/or password not valid" msgstr "O nome e/ou o contrasinal do usuario de MySQL/MariaDB non é correcto" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Produciuse un erro na base de datos: «%s»" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -238,15 +238,15 @@ msgstr "Xa existe o usuario «%s»@«%%» no MySQL/MariaDB" msgid "Drop this user from MySQL/MariaDB." msgstr "Eliminar este usuario do MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Non foi posíbel estabelecer a conexión con Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Nome de usuario e/ou contrasinal de Oracle incorrecto" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "A orde infractora foi: «%s», nome: %s, contrasinal: %s" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index d28cbb47648..c8f0d6896b5 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "É necesario configurar o correo do usuario antes de poder enviar mensax msgid "Send mode" msgstr "Modo de envío" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Cifrado" @@ -735,11 +735,11 @@ msgstr "Máis" msgid "Less" msgstr "Menos" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versión" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Ten en uso %s do total dispoñíbel de %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Contrasinal" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "O seu contrasinal foi cambiado" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Non é posíbel cambiar o seu contrasinal" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Contrasinal actual" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Novo contrasinal" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Cambiar o contrasinal" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Nome completo" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Correo" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "O seu enderezo de correo" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Escriba un enderezo de correo para permitir a recuperación de contrasinais e recibir notificacións" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Imaxe do perfil" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Novo envío" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Seleccione unha nova de ficheiros" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Retirar a imaxe" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Calquera png ou jpg. É preferíbel que sexa cadrada, mais poderá recortala." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "O seu avatar é fornecido pola súa conta orixinal." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Cancelar" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Escolla unha imaxe para o perfil" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Idioma" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Axude na tradución" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "A aplicación de cifrado non está activada, descifre todos os ficheiros" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Contrasinal de acceso" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Descifrar todos os ficheiros" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "As chaves de cifrado foron movidas á copia de seguranza. Se ten algún problema pode restaurar as chaves. Elimineas permanentemente só se está seguro de que é posíbel descifrar correctamente todos os ficheiros." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Restaurar as chaves de cifrado" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Eliminar as chaves de cifrado" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Nome de acceso" @@ -977,19 +985,19 @@ msgstr "Todos" msgid "Admins" msgstr "Administradores" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Cota por omisión" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Introduza a cota de almacenamento (p.ex. «512 MB» ou «12 GB»)" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Sen límites" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Outro" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 6721d7bd78a..473ddbed416 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-15 01:54-0400\n" -"PO-Revision-Date: 2014-08-14 18:20+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: Miguel Anxo Bouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -52,11 +52,11 @@ msgstr "Non se especificou unha acción" msgid "No configuration specified" msgstr "Non se especificou unha configuración" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Non se especificaron datos" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Non foi posíbel estabelecer a configuración %s" @@ -105,65 +105,65 @@ msgstr "Non se puido determinar o DN base" msgid "Please specify the port" msgstr "Por favor indique un porto" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Configuración correcta" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Configuración incorrecta" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Configuración incompleta" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Seleccionar grupos" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Seleccione as clases de obxectos" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Seleccione os atributos" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "A proba de conexión foi satisfactoria" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "A proba de conexión fracasou" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Confirma que quere eliminar a configuración actual do servidor?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Confirmar a eliminación" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "Atopouse %s grupo" msgstr[1] "Atopáronse %s grupos" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "Atopouse %s usuario" msgstr[1] "Atopáronse %s usuarios" -#: lib/wizard.php:321 lib/wizard.php:1057 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Non foi posíbel atopar a función desexada" -#: lib/wizard.php:864 lib/wizard.php:876 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Máquina incorrecta" diff --git a/l10n/he/core.po b/l10n/he/core.po index 8c67b94e7d7..7a176428a89 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -150,27 +150,27 @@ msgstr "נובמבר" msgid "December" msgstr "דצמבר" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "הגדרות" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "תיקייה" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "שמירה…" diff --git a/l10n/he/files.po b/l10n/he/files.po index a8ea2357b53..9a073a6a03b 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index 809d5a82c5d..839169a37bc 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "נשמר" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index 5bbe4a01304..923f23d0b9a 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 8f5a369df4e..39e1d68c41a 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "פג תוקף. נא לטעון שוב את הדף." msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 5efbad0316d..2677e75d02b 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "הצפנה" @@ -734,11 +734,11 @@ msgstr "יותר" msgid "Less" msgstr "פחות" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "גרסא" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "השתמשת ב־%s מתוך %s הזמינים לך" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "סיסמא" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "הססמה שלך הוחלפה" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "לא ניתן לשנות את הססמה שלך" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "ססמה נוכחית" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "ססמה חדשה" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "שינוי ססמה" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "דואר אלקטרוני" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "כתובת הדוא״ל שלך" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "תמונת פרופיל" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "ביטול" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "פה" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "עזרה בתרגום" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "שם כניסה" @@ -976,19 +984,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "מכסת בררת המחדל" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "ללא הגבלה" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "אחר" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 407c37a9d2c..8bb2f864d12 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -150,27 +150,27 @@ msgstr "नवंबर" msgid "December" msgstr "दिसम्बर" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "सेटिंग्स" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 3652128f944..f67760c5c68 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index bfbf98c76c8..4ac9ce1a24b 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -733,11 +733,11 @@ msgstr "और अधिक" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "पासवर्ड" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "नया पासवर्ड" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "रद्द करें " -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/hi_IN/settings.po b/l10n/hi_IN/settings.po index c6fd65a34db..fda98d86b89 100644 --- a/l10n/hi_IN/settings.po +++ b/l10n/hi_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (India) (http://www.transifex.com/projects/p/owncloud/language/hi_IN/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index e20598d4f61..67697f98938 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -148,27 +148,27 @@ msgstr "Studeni" msgid "December" msgstr "Prosinac" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Postavke" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "mapa" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Spremanje..." diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 7af0d35974e..03531809080 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index b7aff410ffd..c3183289d3b 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -244,29 +244,29 @@ msgstr "" msgid "Saved" msgstr "Snimljeno" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index e26faf83572..e16716614a2 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 983602718f4..f10b787c7e8 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 931e6ae984d..127fc7a1521 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -733,11 +733,11 @@ msgstr "više" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Lozinka" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Nemoguće promijeniti lozinku" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Trenutna lozinka" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nova lozinka" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Izmjena lozinke" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "e-mail adresa" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Vaša e-mail adresa" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Odustani" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Jezik" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Pomoć prevesti" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Prijava" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "standardni kvota" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "ostali" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 8d0bd66e12c..3ac23999700 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -154,27 +154,27 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Beállítások" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Fájl" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Mappa" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Kép" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Hang" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Mentés..." diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index ddff74582a6..33b80f25d8e 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 5a186a240ce..3663839c471 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -244,29 +244,29 @@ msgstr "" msgid "Saved" msgstr "Elmentve" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index c6b6280016e..2a5441a1826 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index d56e9e98bc3..ccc2b403581 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -21,33 +21,33 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Nem írható a \"config\" könyvtár!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Ez rendszerint úgy oldható meg, hogy írási jogot adunk a webszervernek a config könyvtárra." -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Lásd %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Ez rendszerint úgy oldható meg, hogy %sírási jogot adunk a webszervernek a config könyvtárra%s." -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "A példabeállítások vannak beállítva" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -169,12 +169,12 @@ msgstr "A token lejárt. Frissítse az oldalt." msgid "Unknown user" msgstr "Ismeretlen felhasználó" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s adja meg az adatbázist elérő felhasználó login nevét." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s adja meg az adatbázis nevét." @@ -190,7 +190,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Az MS SQL felhasználónév és/vagy jelszó érvénytelen: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Vagy egy létező felhasználó vagy az adminisztrátor bejelentkezési nevét kell megadnia" @@ -199,23 +199,23 @@ msgstr "Vagy egy létező felhasználó vagy az adminisztrátor bejelentkezési msgid "MySQL/MariaDB username and/or password not valid" msgstr "A MySQL/MariaDB felhasználónév és/vagy jelszó nem megfelelő" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Adatbázis hiba: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -240,15 +240,15 @@ msgstr "A MySQL/MariaDB felhasználó '%s'@'%%' már létezik." msgid "Drop this user from MySQL/MariaDB." msgstr "Töröljük ez a felhasználót a MySQL/MariaDB-rendszerből." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Az Oracle kapcsolat nem hozható létre" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Az Oracle felhasználói név és/vagy jelszó érvénytelen" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "A hibát okozó parancs ez volt: \"%s\", login név: %s, jelszó: %s" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 6afb82dca3e..aefa741c675 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,7 +55,7 @@ msgstr "Előbb meg kell adnia az e-mail címét, mielőtt tesztelni tudná az e- msgid "Send mode" msgstr "Küldési mód" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Titkosítás" @@ -737,11 +737,11 @@ msgstr "Több" msgid "Less" msgstr "Kevesebb" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Verzió" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Az Ön tárterület-felhasználása jelenleg: %s. Maximálisan ennyi áll rendelkezésére: %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Jelszó" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "A jelszava megváltozott" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "A jelszó nem változtatható meg" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "A jelenlegi jelszó" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Az új jelszó" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "A jelszó megváltoztatása" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Teljes név" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-mail" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Az Ön e-mail címe" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Adja meg az e-mail címét, hogy vissza tudja állítani a jelszavát, illetve, hogy rendszeres jelentéseket kaphasson!" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profilkép" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Új feltöltése" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Új kiválasztása a Fájlokból" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "A kép eltávolítása" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "A kép png vagy jpg formátumban legyen. Legjobb, ha négyzet alakú, de később még átszabható." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "A kép az eredeti bejelentkezési adatai alapján lett beállítva." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Mégsem" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Válasszuk ki profilképnek" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Nyelv" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Segítsen a fordításban!" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "A titkosító alkalmazás a továbbiakban nincs engedélyezve, kérem állítsa vissza az állományait titkostásmentes állapotba!" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Bejelentkezési jelszó" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Mentesíti a titkosítástól az összes fájlt" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "A titkosító kulcsai egy mentési területre kerültek. Ha valami hiba történik, még vissza tudja állítani a titkosító kulcsait. Csak akkor törölje őket véglegesen, ha biztos benne, hogy minden állományt sikerült a visszaállítani a titkosított állapotából." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "A titkosító kulcsok visszaállítása" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "A titkosító kulcsok törlése" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Bejelentkezési név" @@ -979,19 +987,19 @@ msgstr "Mindenki" msgid "Admins" msgstr "Adminok" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Alapértelmezett kvóta" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Kérjük adja meg a tárolási kvótát (pl. \"512 MB\" vagy \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Korlátlan" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Más" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index bfb8c323e7d..c803a01e470 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-27 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 19:21+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -52,11 +52,11 @@ msgstr "Nincs megadva parancs" msgid "No configuration specified" msgstr "Nincs megadva konfiguráció" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Nincs adat megadva" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "A(z) %s konfiguráció nem állítható be" @@ -105,65 +105,65 @@ msgstr "nem sikerült azonosítani az alap/Base/ DN-t" msgid "Please specify the port" msgstr "Add meg a portot" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Konfiguráció OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Konfiguráió hibás" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Konfiguráció nincs befejezve" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Csoportok kiválasztása" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Objektumosztályok kiválasztása" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Attribútumok kiválasztása" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "A kapcsolatellenőrzés eredménye: sikerült" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "A kapcsolatellenőrzés eredménye: nem sikerült" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Tényleg törölni szeretné a kiszolgáló beállításait?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "A törlés megerősítése" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s csoport van" msgstr[1] "%s csoport van" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s felhasználó van" msgstr[1] "%s felhasználó van" -#: lib/wizard.php:321 lib/wizard.php:1057 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "A kívánt funkció nem található" -#: lib/wizard.php:864 lib/wizard.php:876 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Érvénytelen gépnév" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index 1062dae3750..d19915f9a3d 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -148,27 +148,27 @@ msgstr "Նոյեմբեր" msgid "December" msgstr "Դեկտեմբեր" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 677061404b3..56a2cb915a4 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index 59ded924776..1b5f2e8084d 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index 624823c0bbd..ae1ebe8bf12 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 40eb06af385..5750586bac3 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Այլ" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 45387240939..54a5e2df142 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -149,27 +149,27 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Configurationes" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "File" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Dossier" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Imagine" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Salveguardante..." diff --git a/l10n/ia/files.po b/l10n/ia/files.po index a5a26d248da..07e9fb2e079 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index 57ea0c214df..1ee919c2cdb 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index ad6e92d86aa..f60b031cbe6 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 637b8f77814..cf8c7b8b25e 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 4dd992bfaa1..1522a467e21 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -733,11 +733,11 @@ msgstr "Plus" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Contrasigno" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Non pote cambiar tu contrasigno" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Contrasigno currente" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nove contrasigno" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Cambiar contrasigno" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-posta" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Tu adresse de e-posta" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Imagine de profilo" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Cancellar" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Linguage" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Adjuta a traducer" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Quota predeterminate" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Altere" diff --git a/l10n/id/core.po b/l10n/id/core.po index 774ba028bef..776ea672229 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -149,27 +149,27 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Pengaturan" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Berkas" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Folder" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "gambar" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Menyimpan..." diff --git a/l10n/id/files.po b/l10n/id/files.po index ea5dccafce9..435ccaae6d3 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index dc16312fcbc..21e0cc027d7 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -244,29 +244,29 @@ msgstr "" msgid "Saved" msgstr "Disimpan" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Catatan: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "dan" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Catatan: Dukungan cURL di PHP tidak diaktifkan atau belum diinstal. Mengaitkan %s tidak dimungkinkan. Silakan tanyakan ke administrator sistem Anda untuk menginstalnya." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Catatan: Dukungan FTP di PHP tidak diaktifkan atau belum diinstal. Mengaitkan %s tidak dimungkinkan. Silakan tanyakan ke administrator sistem Anda untuk menginstalnya." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index 6e33e71251c..72d3624089c 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 4863f054335..230c2a94930 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "Token sudah kedaluwarsa. Silakan muat ulang halaman." msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s masukkan nama pengguna basis data." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s masukkan nama basis data." @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nama pengguna dan/atau sandi MySQL tidak sah: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Anda harus memasukkan akun yang sudah ada atau administrator." @@ -195,23 +195,23 @@ msgstr "Anda harus memasukkan akun yang sudah ada atau administrator." msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Galat Basis Data: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Koneksi Oracle tidak dapat dibuat" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Nama pengguna dan/atau sandi Oracle tidak sah" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Perintah yang bermasalah: \"%s\", nama pengguna: %s, sandi: %s" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index c93854dae13..60f8d524089 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "Anda perlu menetapkan email pengguna Anda sebelum dapat mengirim email p msgid "Send mode" msgstr "Modus kirim" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Enkripsi" @@ -734,11 +734,11 @@ msgstr "Lainnya" msgid "Less" msgstr "Ciutkan" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versi" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Anda telah menggunakan %s dari total %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Sandi" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Sandi Anda telah diubah" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Gagal mengubah sandi Anda" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Sandi saat ini" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Sandi baru" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Ubah sandi" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Nama Lengkap" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Email" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Alamat email Anda" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Isikan alamat email untuk mengaktifkan pemulihan sandi dan menerima notifikasi" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Foto profil" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Unggah baru" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Pilih baru dari Berkas" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Hapus gambar" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Bisa png atau jpg. Idealnya berbentuk persegi tetapi jika tidak Anda bisa memotongnya nanti." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Avatar disediakan oleh akun asli Anda." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Batal" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Pilih sebagai gambar profil" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Bahasa" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Bantu menerjemahkan" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Aplikasi enkripsi tidak lagi diaktifkan, silahkan mendekripsi semua file Anda" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Sandi masuk" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Deskripsi semua Berkas" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Nama Masuk" @@ -976,19 +984,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Kuota default" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Silakan masukkan jumlah penyimpanan (contoh: \"512 MB\" atau \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Tak terbatas" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Lainnya" diff --git a/l10n/io/settings.po b/l10n/io/settings.po index 5de41a4b122..427477f0ed2 100644 --- a/l10n/io/settings.po +++ b/l10n/io/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Ido (http://www.transifex.com/projects/p/owncloud/language/io/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/is/core.po b/l10n/is/core.po index 41d226dbb2f..5fd9fc053db 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -149,27 +149,27 @@ msgstr "Nóvember" msgid "December" msgstr "Desember" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Stillingar" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Mappa" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Er að vista ..." diff --git a/l10n/is/files.po b/l10n/is/files.po index 3074ca01cb2..1303bfb0a2c 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index 9baef836b6e..381384f78cf 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index a6db00a2a95..a2125cc5705 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 790e5359eb4..8d69cac6721 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "Auðkenning útrunnin. Vinsamlegast skráðu þig aftur inn." msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 7280b5b3160..187d09a702d 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Dulkóðun" @@ -734,11 +734,11 @@ msgstr "Meira" msgid "Less" msgstr "Minna" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Útgáfa" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Þú hefur notað %s af tiltæku %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Lykilorð" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Lykilorði þínu hefur verið breytt" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Ekki tókst að breyta lykilorðinu þínu" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Núverandi lykilorð" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nýtt lykilorð" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Breyta lykilorði" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Netfang" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Netfangið þitt" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Hætta við" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Tungumál" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Hjálpa við þýðingu" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -976,19 +984,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Ótakmarkað" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Annað" diff --git a/l10n/it/core.po b/l10n/it/core.po index 85bf01c1f0a..ae6c17e6ee0 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -152,27 +152,27 @@ msgstr "Novembre" msgid "December" msgstr "Dicembre" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Impostazioni" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "File" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Cartella" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Immagine" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Salvataggio in corso..." diff --git a/l10n/it/files.po b/l10n/it/files.po index a478bca8959..b8e2998173b 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 6298c956092..a49a1a3e776 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" @@ -237,39 +237,39 @@ msgstr "Sistema" #: js/settings.js:196 msgid "All users. Type to select user or group." -msgstr "" +msgstr "Tutti gli utenti. Digita per selezionare utente o gruppo." #: js/settings.js:279 msgid "(group)" -msgstr "" +msgstr "(gruppo)" #: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Salvato" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Nota:" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "e" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Nota: il supporto a cURL di PHP non è abilitato o installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Nota: il supporto a FTP in PHP non è abilitato o installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index e5694b172d3..c8d127391bb 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index b60b5e279db..63274212bfc 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -21,33 +21,33 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Impossibile scrivere nella cartella \"config\"." -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Ciò può essere normalmente corretto fornendo al server web accesso in scrittura alla cartella \"config\"" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Vedere %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Ciò può essere normalmente corretto %sfornendo al server web accesso in scrittura alla cartella \"config\"%s" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "Configurazione di esempio rilevata" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -169,12 +169,12 @@ msgstr "Token scaduto. Ricarica la pagina." msgid "Unknown user" msgstr "Utente sconosciuto" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s digita il nome utente del database." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s digita il nome del database." @@ -190,7 +190,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nome utente e/o password MS SQL non validi: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "È necessario inserire un account esistente o l'amministratore." @@ -199,23 +199,23 @@ msgstr "È necessario inserire un account esistente o l'amministratore." msgid "MySQL/MariaDB username and/or password not valid" msgstr "Nome utente e/o password di MySQL/MariaDB non validi" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Errore DB: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -240,15 +240,15 @@ msgstr "L'utente MySQL/MariaDB '%s'@'%%' esiste già" msgid "Drop this user from MySQL/MariaDB." msgstr "Elimina questo utente da MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "La connessione a Oracle non può essere stabilita" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Nome utente e/o password di Oracle non validi" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Il comando non consentito era: \"%s\", nome: %s, password: %s" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index a27f76f34e4..9be7fd4e04b 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,7 +55,7 @@ msgstr "Devi impostare l'indirizzo del tuo utente prima di poter provare l'invio msgid "Send mode" msgstr "Modalità di invio" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Cifratura" @@ -737,11 +737,11 @@ msgstr "Altro" msgid "Less" msgstr "Meno" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versione" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Hai utilizzato %s dei %s disponibili" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Password" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "La tua password è cambiata" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Modifica password non riuscita" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Password attuale" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nuova password" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Modifica password" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Nome completo" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Posta elettronica" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Il tuo indirizzo email" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Inserisci il tuo indirizzo di posta per abilitare il recupero della password e ricevere notifiche" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Immagine del profilo" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Carica nuova" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Seleziona nuova da file" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Rimuovi immagine" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Sia png che jpg. Preferibilmente quadrata, ma potrai ritagliarla." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Il tuo avatar è ottenuto dal tuo account originale." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Annulla" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Scegli come immagine del profilo" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Lingua" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Migliora la traduzione" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "L'applicazione di cifratura non è più abilitata, decifra tutti i tuoi file" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Password di accesso" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Decifra tutti i file" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Le tue chiavi di cifratura sono state spostate in una posizione sicura. Se qualcosa non dovesse funzionare, potrai ripristinare le chiavi. Eliminale definitivamente solo se sei sicuro che tutti i file siano stati decifrati." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Ripristina chiavi di cifratura" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Elimina chiavi di cifratura" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Nome utente" @@ -979,19 +987,19 @@ msgstr "Chiunque" msgid "Admins" msgstr "Amministratori" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Quota predefinita" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Digita la quota di archiviazione (ad es.: \"512 MB\" or \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Illimitata" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Altro" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index f03331593ce..0647bbfc932 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -52,11 +52,11 @@ msgstr "Nessuna azione specificata" msgid "No configuration specified" msgstr "Nessuna configurazione specificata" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Nessun dato specificato" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Impossibile impostare la configurazione %s" @@ -105,65 +105,65 @@ msgstr "Impossibile determinare il DN base" msgid "Please specify the port" msgstr "Specifica la porta" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Configurazione corretta" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Configurazione non corretta" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Configurazione incompleta" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Seleziona i gruppi" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Seleziona le classi di oggetti" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Seleziona gli attributi" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Prova di connessione riuscita" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Prova di connessione non riuscita" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Vuoi davvero eliminare la configurazione attuale del server?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Conferma l'eliminazione" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s gruppo trovato" msgstr[1] "%s gruppi trovati" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s utente trovato" msgstr[1] "%s utenti trovati" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Impossibile trovare la funzionalità desiderata" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Host non valido" @@ -255,60 +255,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Specifica quale filtro utilizzare quando si tenta l'accesso. %%uid sostituisce il nome utente all'atto dell'accesso. Esempio: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. server" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. server:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Aggiungi configurazione del server" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Elimina configurazione" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Host" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "È possibile omettere il protocollo, ad eccezione se è necessario SSL. Quindi inizia con ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Porta" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN utente" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "Il DN per il client dell'utente con cui deve essere associato, ad esempio uid=agent,dc=example,dc=com. Per l'accesso anonimo, lasciare vuoti i campi DN e Password" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Password" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Per l'accesso anonimo, lasciare vuoti i campi DN e Password" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Un DN base per riga" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Puoi specificare una DN base per gli utenti ed i gruppi nella scheda Avanzate" diff --git a/l10n/ja/core.po b/l10n/ja/core.po index 96eca47705d..c0b7d985b8e 100644 --- a/l10n/ja/core.po +++ b/l10n/ja/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -155,27 +155,27 @@ msgstr "11月" msgid "December" msgstr "12月" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "設定" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "ファイル" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "フォルダー" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "画像" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "オーディオ" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "保存中..." diff --git a/l10n/ja/files.po b/l10n/ja/files.po index 7856d7a1e9a..5890269b4ad 100644 --- a/l10n/ja/files.po +++ b/l10n/ja/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja/files_external.po b/l10n/ja/files_external.po index 4ac1332cb8d..d86daeb0a2e 100644 --- a/l10n/ja/files_external.po +++ b/l10n/ja/files_external.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -247,29 +247,29 @@ msgstr "" msgid "Saved" msgstr "保存されました" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "注意: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "と" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "注意: PHPにcURLのエクステンションが入っていないか、有効ではありません。%s をマウントすることができません。このシステムの管理者にインストールをお願いしてください。" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "注意: PHPにFTPのエクステンションが入っていないか、有効ではありません。%s をマウントすることができません。このシステムの管理者にインストールをお願いしてください。" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/ja/files_trashbin.po b/l10n/ja/files_trashbin.po index 7fd6bbf5fd5..3bd0cf06fa5 100644 --- a/l10n/ja/files_trashbin.po +++ b/l10n/ja/files_trashbin.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja/lib.po b/l10n/ja/lib.po index a7a2db4c7d8..0b433537503 100644 --- a/l10n/ja/lib.po +++ b/l10n/ja/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -23,33 +23,33 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "\"config\"ディレクトリに書き込めません!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "多くの場合、これはWebサーバーにconfigディレクトリへの書き込み権限を与えることで解決できます。" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "%s を閲覧" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "多くの場合、これは %s Webサーバーにconfigディレクトリ %s への書き込み権限を与えることで解決できます。" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -171,12 +171,12 @@ msgstr "トークンが無効になりました。ページを再読込してく msgid "Unknown user" msgstr "不明なユーザー" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s のデータベースのユーザー名を入力してください。" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s のデータベース名を入力してください。" @@ -192,7 +192,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL Serverのユーザー名/パスワードが正しくありません: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "既存のアカウントもしくは管理者のどちらかを入力する必要があります。" @@ -201,23 +201,23 @@ msgstr "既存のアカウントもしくは管理者のどちらかを入力す msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB のユーザー名及び/またはパスワードが無効" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DBエラー: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -242,15 +242,15 @@ msgstr "MySQL/MariaDB のユーザー '%s'@'%%' はすでに存在します" msgid "Drop this user from MySQL/MariaDB." msgstr "MySQL/MariaDB からこのユーザーを削除。" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Oracleへの接続が確立できませんでした。" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracleのユーザー名もしくはパスワードは有効ではありません" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "違反コマンド: \"%s\"、名前: %s、パスワード: %s" diff --git a/l10n/ja/settings.po b/l10n/ja/settings.po index ba0eac097b4..dddf181a415 100644 --- a/l10n/ja/settings.po +++ b/l10n/ja/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -57,7 +57,7 @@ msgstr "ユーザーメールを設定して初めて、テストメールを送 msgid "Send mode" msgstr "送信モード" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "暗号化" @@ -739,11 +739,11 @@ msgstr "もっと見る" msgid "Less" msgstr "閉じる" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "バージョン" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "現在 %s / %s を利用しています" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "パスワード" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "パスワードを変更しました" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "パスワードを変更することができません" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "現在のパスワード" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "新しいパスワード" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "パスワードを変更" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "名前" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "メール" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "あなたのメールアドレス" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "パスワードの回復を有効にし、通知を受け取るにはメールアドレスを入力してください" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "プロフィール写真" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "新たにアップロード" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "新しいファイルを選択" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "画像を削除" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "pngまたはjpg形式。正方形が理想ですが、切り取って加工することもできます。" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "あなたのアバターは、あなたのオリジナルのアカウントで提供されています。" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "キャンセル" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "プロファイル画像として選択" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "言語" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "翻訳に協力する" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "暗号化アプリはもはや有効ではありません、すべてのファイルを複合してください" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "ログインパスワード" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "すべてのファイルを複合する" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "暗号化キーはバックアップ場所に移動されました。何か問題があった場合は、キーを復元することができます。すべてのファイルが正しく復号化されたことが確信できる場合にのみ、キーを完全に削除してください。" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "暗号化キーを復元する" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "暗号化キーを削除する" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "ログイン名" @@ -981,19 +989,19 @@ msgstr "すべてのユーザー" msgid "Admins" msgstr "管理者" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "デフォルトのクォータサイズ" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "ストレージのクォータを入力してください (例: \"512MB\" や \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "無制限" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "その他" diff --git a/l10n/ja/user_ldap.po b/l10n/ja/user_ldap.po index 3c6f73b8aba..0063ad391df 100644 --- a/l10n/ja/user_ldap.po +++ b/l10n/ja/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-20 01:54-0400\n" -"PO-Revision-Date: 2014-08-19 14:11+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: kuromabo \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -54,11 +54,11 @@ msgstr "アクションが指定されていません" msgid "No configuration specified" msgstr "構成が指定されていません" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "データが指定されていません" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "構成 %s を設定できませんでした" @@ -107,63 +107,63 @@ msgstr "ベースDNを決定できませんでした" msgid "Please specify the port" msgstr "ポートを指定してください" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "設定OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "設定に誤りがあります" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "設定が不完全です" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "グループを選択" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "オブジェクトクラスを選択" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "属性を選択" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "接続テストに成功しました" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "接続テストに失敗しました" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "現在のサーバー設定を本当に削除してもよろしいですか?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "削除の確認" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s グループが見つかりました" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s ユーザーが見つかりました" -#: lib/wizard.php:321 lib/wizard.php:1057 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "望ましい機能は見つかりませんでした" -#: lib/wizard.php:864 lib/wizard.php:876 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "無効なホスト" diff --git a/l10n/jv/files_external.po b/l10n/jv/files_external.po index aaab9c77617..e037dc17ad8 100644 --- a/l10n/jv/files_external.po +++ b/l10n/jv/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/jv/settings.po b/l10n/jv/settings.po index b42abe13a97..45bcd5d7010 100644 --- a/l10n/jv/settings.po +++ b/l10n/jv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 2625e432b42..91698e3e787 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -148,27 +148,27 @@ msgstr "ნოემბერი" msgid "December" msgstr "დეკემბერი" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "პარამეტრები" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "საქაღალდე" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "სურათი" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "შენახვა..." diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index f344d8ffb18..6d6bcfe9c2c 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index b501f565dfb..e33bbcd5069 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 12171a6bd31..c4af2c39034 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 4061d4bc625..ad41322a37e 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "Token–ს ვადა გაუვიდა. გთხოვთ გ msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s შეიყვანეთ ბაზის იუზერნეიმი." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s შეიყვანეთ ბაზის სახელი." @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL მომხმარებელი და/ან პაროლი არ არის მართებული: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "თქვენ უნდა შეიყვანოთ არსებული მომხმარებელის სახელი ან ადმინისტრატორი." @@ -195,23 +195,23 @@ msgstr "თქვენ უნდა შეიყვანოთ არსებ msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB შეცდომა: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle იუზერნეიმი და/ან პაროლი არ არის სწორი" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Offending ბრძანება იყო: \"%s\", სახელი: %s, პაროლი: %s" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index e400a71a336..b41643ef30d 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "ენკრიპცია" @@ -734,11 +734,11 @@ msgstr "უფრო მეტი" msgid "Less" msgstr "უფრო ნაკლები" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "ვერსია" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "თქვენ გამოყენებული გაქვთ %s –ი –%s–დან" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "პაროლი" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "თქვენი პაროლი შეიცვალა" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "თქვენი პაროლი არ შეიცვალა" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "მიმდინარე პაროლი" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "ახალი პაროლი" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "პაროლის შეცვლა" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "იმეილი" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "თქვენი იმეილ მისამართი" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "უარყოფა" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "ენა" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "თარგმნის დახმარება" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "მომხმარებლის სახელი" @@ -976,19 +984,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "საწყისი ქვოტა" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "ულიმიტო" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "სხვა" diff --git a/l10n/km/core.po b/l10n/km/core.po index 9d5e3d29630..49972e261f3 100644 --- a/l10n/km/core.po +++ b/l10n/km/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -149,27 +149,27 @@ msgstr "ខែវិច្ឆិកា" msgid "December" msgstr "ខែធ្នូ" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "ការកំណត់" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "ថត" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "កំពុង​រក្សាទុក" diff --git a/l10n/km/files.po b/l10n/km/files.po index 1e2e10ee3d7..19ed97fbb0c 100644 --- a/l10n/km/files.po +++ b/l10n/km/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/km/files_external.po b/l10n/km/files_external.po index c4359ec7476..4ea69b17956 100644 --- a/l10n/km/files_external.po +++ b/l10n/km/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -244,29 +244,29 @@ msgstr "" msgid "Saved" msgstr "បាន​រក្សាទុក" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/km/files_trashbin.po b/l10n/km/files_trashbin.po index a15dbfae6d3..c628d9d9c0f 100644 --- a/l10n/km/files_trashbin.po +++ b/l10n/km/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/km/lib.po b/l10n/km/lib.po index 87e298a5057..be1a43839c6 100644 --- a/l10n/km/lib.po +++ b/l10n/km/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -19,33 +19,33 @@ msgstr "" "Language: km\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -167,12 +167,12 @@ msgstr "" msgid "Unknown user" msgstr "មិនស្គាល់អ្នកប្រើប្រាស់" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s វាយ​បញ្ចូល​ឈ្មោះ​អ្នក​ប្រើ​មូលដ្ឋាន​ទិន្នន័យ។" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s វាយ​បញ្ចូល​ឈ្មោះ​មូលដ្ឋាន​ទិន្នន័យ។" @@ -188,7 +188,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -197,23 +197,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "កំហុស DB៖ \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -238,15 +238,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "មិន​អាច​បង្កើត​ការ​តភ្ជាប់ Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/km/settings.po b/l10n/km/settings.po index 665530eabd7..b0dee64c8d4 100644 --- a/l10n/km/settings.po +++ b/l10n/km/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "អ្នក​ត្រូវ​តែ​កំណត់​អ៊ីម msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "កូដនីយកម្ម" @@ -735,11 +735,11 @@ msgstr "ច្រើន​ទៀត" msgid "Less" msgstr "តិច" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "កំណែ" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "អ្នក​បាន​ប្រើ %s ក្នុង​ចំណោម​ចំនួន​មាន %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "ពាក្យសម្ងាត់" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "ពាក្យ​សម្ងាត់​របស់​អ្នក​ត្រូវ​បាន​ប្ដូរ" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "មិន​អាច​ប្ដូរ​ពាក្យ​សម្ងាត់​របស់​អ្នក​បាន​ទេ" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "ពាក្យសម្ងាត់​បច្ចុប្បន្ន" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "ពាក្យ​សម្ងាត់​ថ្មី" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "ប្តូរ​ពាក្យសម្ងាត់" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "អ៊ីមែល" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "អ៊ីម៉ែល​របស់​អ្នក" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "រូបភាព​ប្រវត្តិរូប" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "ផ្ទុកឡើង​ថ្មី" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "ជ្រើស​ថ្មី​ពី​ឯកសារ" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "ដក​រូបភាព​ចេញ" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "លើកលែង" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "ភាសា" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "ជួយ​បក​ប្រែ" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "ពាក្យ​សម្ងាត់​ចូល​គណនី" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Decrypt ឯកសារ​ទាំង​អស់" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "ចូល" @@ -977,19 +985,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "មិន​កំណត់" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "ផ្សេងៗ" diff --git a/l10n/kn/settings.po b/l10n/kn/settings.po index d933139a234..53efefd48f4 100644 --- a/l10n/kn/settings.po +++ b/l10n/kn/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index f644c1482e3..fea3eabe745 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -155,27 +155,27 @@ msgstr "11월" msgid "December" msgstr "12월" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "설정" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "파일" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "폴더" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "그림" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "저장 중..." diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 9c96d0205e0..0881af4ebfe 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index 6699b421bd0..6c24a7c0ef8 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -245,29 +245,29 @@ msgstr "" msgid "Saved" msgstr "저장됨" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 793257c5f57..941c670bd04 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index ebed72bb50c..18b6f494a15 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -22,33 +22,33 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -170,12 +170,12 @@ msgstr "토큰이 만료되었습니다. 페이지를 새로 고치십시오." msgid "Unknown user" msgstr "알려지지 않은 사용자" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s 데이터베이스 사용자 이름을 입력해 주십시오." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s 데이터베이스 이름을 입력하십시오." @@ -191,7 +191,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL 사용자 이름이나 암호가 잘못되었습니다: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "기존 계정이나 administrator(관리자)를 입력해야 합니다." @@ -200,23 +200,23 @@ msgstr "기존 계정이나 administrator(관리자)를 입력해야 합니다." msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB 사용자 명 혹은 비밀번호가 일치하지 않습니다" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB 오류: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -241,15 +241,15 @@ msgstr "MySQL/MariaDB '%s'@'%%' 사용자가 이미 존재합니다" msgid "Drop this user from MySQL/MariaDB." msgstr "MySQL/MariaDB에서 이 사용자 제거하기" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Oracle 연결을 수립할 수 없습니다." -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle 사용자 이름이나 암호가 잘못되었습니다." -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "잘못된 명령: \"%s\", 이름: %s, 암호: %s" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index eb73b92baef..181506fffa9 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -56,7 +56,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "암호화" @@ -738,11 +738,11 @@ msgstr "더 중요함" msgid "Less" msgstr "덜 중요함" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "버전" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "현재 공간 중 %s/%s을(를) 사용 중입니다" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "암호" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "암호가 변경되었습니다" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "암호를 변경할 수 없음" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "현재 암호" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "새 암호" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "암호 변경" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "전체 이름" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "이메일" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "이메일 주소" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "프로필 사진" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "새로 업로드" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "파일에서 선택" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "그림 삭제" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "png나 jpg를 사용하십시오. 정사각형 형태가 가장 좋지만 잘라낼 수 있습니다." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "원본 계정의 아바타를 사용합니다." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "취소" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "프로필 이미지로 사용" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "언어" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "번역 돕기" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "암호화 앱이 비활성화되었습니다. 모든 파일을 복호화해야 합니다." -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "로그인 암호" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "모든 파일 복호화" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "암호화 키 복원" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "암호화 키 삭제" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "로그인 이름" @@ -980,19 +988,19 @@ msgstr "" msgid "Admins" msgstr "관리자" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "기본 할당량" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "저장소 할당량을 입력하십시오 (예: \"512 MB\", \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "무제한" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "기타" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 3d9064fa60a..812b430f750 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -148,27 +148,27 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "ده‌ستكاری" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "بوخچه" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "پاشکه‌وتده‌کات..." diff --git a/l10n/ku_IQ/files_external.po b/l10n/ku_IQ/files_external.po index 614292af19d..5f80beea342 100644 --- a/l10n/ku_IQ/files_external.po +++ b/l10n/ku_IQ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 94846efa7fd..a17e7e2ed83 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index ff99ffc0dcf..c134cde8948 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "نهێنیکردن" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "وشەی تێپەربو" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "وشەی نهێنی نوێ" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "ئیمه‌یل" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "لابردن" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "چوونەژوورەوە" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 2b5b2d57692..c42168e4cdb 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -150,27 +150,27 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Astellungen" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Fichier" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Dossier" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Speicheren..." diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 3e063bb511e..cff45fe9063 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index b7e0720780c..6015a32bf44 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 6e4933107ac..b34bd2e51de 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 86802bf4836..0ac867d3466 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -18,33 +18,33 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -166,12 +166,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -187,7 +187,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -196,23 +196,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -237,15 +237,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index f00ac64771c..8ec0b765491 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -734,11 +734,11 @@ msgstr "Méi" msgid "Less" msgstr "Manner" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Passwuert" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Konnt däin Passwuert net änneren" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Momentan 't Passwuert" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Neit Passwuert" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Passwuert änneren" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Email" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Deng Email Adress" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Ofbriechen" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Sprooch" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Hëllef iwwersetzen" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Login" @@ -976,19 +984,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Standard Quota" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Aner" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 2fdcb3f9eca..a2fca3f0362 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -153,27 +153,27 @@ msgstr "Lapkritis" msgid "December" msgstr "Gruodis" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Nustatymai" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Failas" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Katalogas" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Saugoma..." diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 690c22472f3..87246a397e0 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index 9ca921de9db..2717bdf99bf 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -244,29 +244,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 034764edb16..7cfc829b205 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index c6a2e9936b4..711128f1e79 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -21,33 +21,33 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -169,12 +169,12 @@ msgstr "Sesija baigėsi. Prašome perkrauti puslapį." msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s įrašykite duombazės naudotojo vardą." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s įrašykite duombazės pavadinimą." @@ -190,7 +190,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL naudotojo vardas ir/arba slaptažodis netinka: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Turite prisijungti su egzistuojančia paskyra arba su administratoriumi." @@ -199,23 +199,23 @@ msgstr "Turite prisijungti su egzistuojančia paskyra arba su administratoriumi. msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB klaida: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -240,15 +240,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Nepavyko sukurti Oracle ryšio" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Neteisingas Oracle naudotojo vardas ir/arba slaptažodis" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Vykdyta komanda buvo: \"%s\", name: %s, password: %s" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index cf397890b34..e7540452ad7 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -57,7 +57,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Šifravimas" @@ -739,11 +739,11 @@ msgstr "Daugiau" msgid "Less" msgstr "Mažiau" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versija" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Jūs naudojate %s iš galimų %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Slaptažodis" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Jūsų slaptažodis buvo pakeistas" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Neįmanoma pakeisti slaptažodžio" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Dabartinis slaptažodis" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Naujas slaptažodis" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Pakeisti slaptažodį" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Pilnas vardas" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "El. Paštas" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Jūsų el. pašto adresas" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profilio paveikslėlis" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Įkelti naują" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Pasirinkti naują iš failų" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Pašalinti paveikslėlį" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Arba png arba jpg. Geriausia kvadratinį, bet galėsite jį apkarpyti." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Atšaukti" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Pasirinkite profilio paveiksliuką" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Kalba" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Padėkite išversti" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Prisijungimo slaptažodis" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Iššifruoti visus failus" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Vartotojo vardas" @@ -981,19 +989,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Numatytoji kvota" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Neribota" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Kita" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 2ceaba08f86..34d69e80710 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -149,27 +149,27 @@ msgstr "Novembris" msgid "December" msgstr "Decembris" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Mape" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Saglabā..." diff --git a/l10n/lv/files.po b/l10n/lv/files.po index b27a1061035..554714b474c 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index 1c51f7d501e..83521962c82 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -244,29 +244,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 1ac61c793f3..0910e992258 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index c8699cd186a..cc1bdfcdce2 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -18,33 +18,33 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -166,12 +166,12 @@ msgstr "Pilnvarai ir beidzies termiņš. Lūdzu, pārlādējiet lapu." msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s ievadiet datubāzes lietotājvārdu." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s ievadiet datubāzes nosaukumu." @@ -187,7 +187,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nav derīga MySQL parole un/vai lietotājvārds — %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Jums jāievada vai nu esošs vai administratora konts." @@ -196,23 +196,23 @@ msgstr "Jums jāievada vai nu esošs vai administratora konts." msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB kļūda — “%s”" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -237,15 +237,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Nevar izveidot savienojumu ar Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Nav derīga Oracle parole un/vai lietotājvārds" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Vainīgā komanda bija \"%s\", vārds: %s, parole: %s" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index ab19a1de4c6..43406e7408c 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Šifrēšana" @@ -734,11 +734,11 @@ msgstr "Vairāk" msgid "Less" msgstr "Mazāk" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versija" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Jūs lietojat %s no pieejamajiem %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Parole" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Jūru parole tika nomainīta" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Nevar nomainīt jūsu paroli" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Pašreizējā parole" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Jauna parole" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Mainīt paroli" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-pasts" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Jūsu e-pasta adrese" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Atcelt" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Valoda" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Palīdzi tulkot" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Pieslēgšanās parole" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Atšifrēt visus failus" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Ierakstīšanās vārds" @@ -976,19 +984,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Apjoms pēc noklusējuma" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Neierobežota" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Cits" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index d84d678083d..5dd4b6ecc75 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -149,27 +149,27 @@ msgstr "Ноември" msgid "December" msgstr "Декември" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Подесувања" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Папка" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Снимам..." diff --git a/l10n/mk/files.po b/l10n/mk/files.po index e9e50ad8fca..a755dc946bd 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 2d381ebb616..dc3d4c706dd 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "Снимено" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index 3f060785f65..b6283ed9eef 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index d38177eb744..4ad452a6efc 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -18,33 +18,33 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -166,12 +166,12 @@ msgstr "Жетонот е истечен. Ве молам превчитајте msgid "Unknown user" msgstr "Непознат корисник" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s внеси го корисничкото име за базата." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s внеси го името на базата." @@ -187,7 +187,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -196,23 +196,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB грешка: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -237,15 +237,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle корисничкото име и/или лозинката не се валидни" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index b6ef9fdbb84..8917daff0aa 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "Мод на испраќање" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Енкрипција" @@ -734,11 +734,11 @@ msgstr "Повеќе" msgid "Less" msgstr "Помалку" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Верзија" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Имате искористено %s од достапните %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Лозинка" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Вашата лозинка беше променета." -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Вашата лозинка неможе да се смени" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Моментална лозинка" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Нова лозинка" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Смени лозинка" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Цело име" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Е-пошта" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Вашата адреса за е-пошта" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Фотографија за профил" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Префрли нова" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Одбери нова од датотеките" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Отстрани ја фотографијата" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Мора де биде png или jpg. Идеално квадрат, но ќе бидете во можност да ја исечете." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Вашиот аватар е креиран со вашата оригинална сметка" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Откажи" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Одбери фотографија за профилот" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Јазик" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Помогни во преводот" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Лозинка за најавување" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Дешифрирај ги сите датотеки" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Обнови ги енкрипциските клучеви" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Избриши ги енкрипцисиките клучеви" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Име за најава" @@ -976,19 +984,19 @@ msgstr "Секој" msgid "Admins" msgstr "Администратори" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Предефинирана квота" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Ве молам внесете квота за просторот (нпр: \"512 MB\" или \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Неограничено" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Останато" diff --git a/l10n/ml/settings.po b/l10n/ml/settings.po index cdaac2f5985..1303395d690 100644 --- a/l10n/ml/settings.po +++ b/l10n/ml/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/ml_IN/settings.po b/l10n/ml_IN/settings.po index ed1d32df4bf..c47aa37c20a 100644 --- a/l10n/ml_IN/settings.po +++ b/l10n/ml_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/mn/settings.po b/l10n/mn/settings.po index 0fdb9f98879..be6bfdb53c0 100644 --- a/l10n/mn/settings.po +++ b/l10n/mn/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index f97db6a3925..f2ca6aa6dc4 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -148,27 +148,27 @@ msgstr "November" msgid "December" msgstr "Disember" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Tetapan" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Folder" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Simpan..." diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 38c9ec08977..88c3a24f50e 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index d92e7cc6485..26742fd5316 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index dc87f52a384..a698ebe2a54 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: ervinnnchai \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 43e360ca751..2bd395711ca 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 90d3d6edafd..e6f40acabe0 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -733,11 +733,11 @@ msgstr "Lanjutan" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Kata laluan" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Gagal mengubah kata laluan anda " -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Kata laluan semasa" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Kata laluan baru" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Ubah kata laluan" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Email" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Alamat emel anda" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Gambar profil" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Batal" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Bahasa" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Bantu terjemah" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Log masuk" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Kuota Lalai" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Lain" diff --git a/l10n/my_MM/files_external.po b/l10n/my_MM/files_external.po index a7129867c76..34500ffebcd 100644 --- a/l10n/my_MM/files_external.po +++ b/l10n/my_MM/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/my_MM/settings.po b/l10n/my_MM/settings.po index 1f27cf65f62..2e2bfa78d10 100644 --- a/l10n/my_MM/settings.po +++ b/l10n/my_MM/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "စကားဝှက်" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "စကားဝှက်အသစ်" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "ပယ်ဖျက်မည်" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 7ff5d973b9c..2e81ec80aea 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -152,27 +152,27 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Innstillinger" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Fil" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Mappe" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Bilde" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Lagrer..." diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 30852c5d7fa..c815b427f80 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: vidaren \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index 03a60d84162..175a44e83dc 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -246,29 +246,29 @@ msgstr "" msgid "Saved" msgstr "Lagret" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Merk: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr " og " -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Merk: Støtte for cURL i PHP er ikke aktivert eller installert. Oppkobling av %s er ikke mulig. Be systemadministratoren om å installere det." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Merk: FTP-støtte i PHP er ikke slått på eller installert. Kan ikke koble opp %s. Ta kontakt med systemadministratoren for å installere det." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index c74cfe1de0e..f454aff28b1 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 6ad3ea1808d..486ae672914 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: vidaren \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -19,33 +19,33 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Kan ikke skrive i \"config\"-mappen!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Dette kan vanligvis ordnes ved å gi web-serveren skrivetilgang til config-mappen" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Se %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Dette kan vanligvis ordnes ved %så gi web-serveren skrivetilgang til config-mappen%s." -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "Eksempelkonfigurasjon oppdaget" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -167,12 +167,12 @@ msgstr "Symbol utløpt. Vennligst last inn siden på nytt." msgid "Unknown user" msgstr "Ukjent bruker" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s legg inn brukernavn for databasen." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s legg inn navnet på databasen." @@ -188,7 +188,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL-brukernavn og/eller passord ikke gyldig: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Du må legge inn enten en eksisterende konto eller administratoren." @@ -197,23 +197,23 @@ msgstr "Du må legge inn enten en eksisterende konto eller administratoren." msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB-brukernavn og/eller -passord ikke gyldig" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Databasefeil: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -238,15 +238,15 @@ msgstr "MySQL/MariaDB-bruker '%s'@'%%' finnes allerede" msgid "Drop this user from MySQL/MariaDB." msgstr "Fjern denne brukeren fra MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Klarte ikke å etablere forbindelse til Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle-brukernavn og/eller passord er ikke gyldig" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Kommando som feilet: \"%s\", navn: %s, passord: %s" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index f59a5fb26c3..e8d03233907 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" -"Last-Translator: vidaren \n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,7 +55,7 @@ msgstr "Du må sette e-postadressen for brukeren din før du kan teste sending a msgid "Send mode" msgstr "Sendemåte" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Kryptering" @@ -737,11 +737,11 @@ msgstr "Mer" msgid "Less" msgstr "Mindre" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versjon" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Du har brukt %s av tilgjengelig %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Passord" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Passord har blitt endret" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Kunne ikke endre passordet ditt" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Nåværende passord" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nytt passord" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Endre passord" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Fullt navn" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Epost" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Din e-postadresse" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Legg inn en e-postadresse for å aktivere passordgjenfinning og motta varsler" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profilbilde" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Last opp nytt" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Velg nytt fra Filer" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Fjern bilde" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Enten png eller jpg. Helst kvadratisk men du kan beskjære det." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Avataren din kommer fra din opprinnelige konto." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Avbryt" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Velg som profilbilde" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Språk" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Bidra til oversettelsen" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Krypterings-appen er ikke aktiv lenger. Vennligst dekrypter alle filene dine" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Innloggingspassord" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Dekrypter alle filer" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Krypteringsnøklene dine er flyttet til en plass for sikkerhetskopier. Hvis noe gikk galt kan du gjenopprette nøklene. Ikke slett dem permanent før du er ikker på at alle filer er dekryptert korrekt." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Gjenopprett krypteringsnøkler" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Slett krypteringsnøkler" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Brukernavn" @@ -979,19 +987,19 @@ msgstr "Alle" msgid "Admins" msgstr "Administratorer" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Standard kvote" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Legg inn lagringskvote (f.eks. \"512 MB\" eller \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Ubegrenset" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Annet" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index aca89c277ff..f81b1637b69 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: vidaren \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -50,11 +50,11 @@ msgstr "Ingen handling spesifisert" msgid "No configuration specified" msgstr "Ingen konfigurasjon spesifisert" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Ingen data spesifisert" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Klarte ikke å sette konfigurasjon %s" @@ -103,65 +103,65 @@ msgstr "Kunne ikke fastslå hoved-DN" msgid "Please specify the port" msgstr "Vennligst spesifiser port" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Konfigurasjon OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Konfigurasjon feil" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Konfigurasjon ufullstendig" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Velg grupper" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Velg objektklasser" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Velg attributter" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Tilkoblingstest lyktes" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Tilkoblingstest mislyktes" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Er du sikker på at du vil slette aktiv tjener-konfigurasjon?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Bekreft sletting" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s gruppe funnet" msgstr[1] "%s grupper funnet" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s bruker funnet" msgstr[1] "%s brukere funnet" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Fant ikke den ønskede funksjonaliteten" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Ugyldig tjener" @@ -253,60 +253,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Definerer filteret som skal brukes når noen prøver å logge inn. %%uid erstatter brukernavnet i innloggingen. Eksempel: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. server" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. server:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Legg til tjener-konfigurasjon" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Slett konfigurasjon" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Tjener" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Du kan utelate protokollen, men du er påkrevd å bruke SSL. Deretter starte med ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Bruker DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "DN nummeret til klienten som skal bindes til, f.eks. uid=agent,dc=example,dc=com. For anonym tilgang, la DN- og passord-feltet stå tomt." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Passord" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "For anonym tilgang, la DN- og passord-feltet stå tomt." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "En hoved-DN pr. linje" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Du kan spesifisere hoved-DN for brukere og grupper under Avansert fanen" diff --git a/l10n/nds/settings.po b/l10n/nds/settings.po index 776f583961f..f3cac835464 100644 --- a/l10n/nds/settings.po +++ b/l10n/nds/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/ne/settings.po b/l10n/ne/settings.po index 321c2b122c9..18c1cf30d4c 100644 --- a/l10n/ne/settings.po +++ b/l10n/ne/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index d26f70bb2a1..fad5a22535c 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -151,27 +151,27 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Instellingen" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Bestand" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Map" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Afbeelding" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Opslaan" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 6009e554778..feb65602427 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 2d35280384f..57fd64d7db5 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -234,39 +234,39 @@ msgstr "Systeem" #: js/settings.js:196 msgid "All users. Type to select user or group." -msgstr "" +msgstr "Alle gebruikers. Tikken om een gebruiker of groep te selecteren." #: js/settings.js:279 msgid "(group)" -msgstr "" +msgstr "(groep)" #: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Bewaard" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Let op: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "en" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Let op: Curl ondersteuning in PHP is niet geactiveerd of geïnstalleerd. Mounten van %s is niet mogelijk. Vraag uw systeembeheerder dit te installeren." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Let op: FTP ondersteuning in PHP is niet geactiveerd of geïnstalleerd. Mounten van %s is niet mogelijk. Vraag uw beheerder dit te installeren." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 82d3d64083b..4cb8355392f 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index a8428b2a5e4..8fadcd3cf35 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -20,33 +20,33 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Kan niet schrijven naar de \"config\" directory!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Dit kan hersteld worden door de webserver schrijfrechten te geven op de de config directory" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Zie %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Dit kan hersteld worden door de webserver schrijfrechten te %sgeven op de de config directory%s" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "Voorbeeldconfiguratie gevonden" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -168,12 +168,12 @@ msgstr "Token verlopen. Herlaad de pagina." msgid "Unknown user" msgstr "Onbekende gebruiker" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s opgeven database gebruikersnaam." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s opgeven databasenaam." @@ -189,7 +189,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL gebruikersnaam en/of wachtwoord niet geldig: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Geef of een bestaand account op of het beheerdersaccount." @@ -198,23 +198,23 @@ msgstr "Geef of een bestaand account op of het beheerdersaccount." msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB gebruikersnaam en/of wachtwoord ongeldig" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB Fout: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -239,15 +239,15 @@ msgstr "MySQL/MariaDB gebruiker '%s'@'%%' bestaat al" msgid "Drop this user from MySQL/MariaDB." msgstr "Verwijder deze gebruiker uit MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Er kon geen verbinding met Oracle worden bereikt" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle gebruikersnaam en/of wachtwoord ongeldig" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Onjuiste commando was: \"%s\", naam: %s, wachtwoord: %s" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 663ed6f712f..41e1cc3c11a 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" -"Last-Translator: Koen Willems \n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,7 +55,7 @@ msgstr "U moet uw e-mailadres invoeren voordat u testberichten kunt versturen." msgid "Send mode" msgstr "Verstuurmodus" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Versleuteling" @@ -737,11 +737,11 @@ msgstr "Meer" msgid "Less" msgstr "Minder" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versie" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "U heeft %s gebruikt van de beschikbare %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Wachtwoord" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Je wachtwoord is veranderd" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Niet in staat om uw wachtwoord te wijzigen" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Huidig wachtwoord" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nieuw" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Wijzig wachtwoord" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Volledige naam" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-mailadres" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Uw e-mailadres" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Vul een e-mailadres in om wachtwoordherstel mogelijk te maken en meldingen te ontvangen" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profielafbeelding" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Upload een nieuwe" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Selecteer een nieuwe vanuit bestanden" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Verwijder afbeelding" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Of png, of jpg. Bij voorkeur vierkant, maar u kunt de afbeelding bijsnijden." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Uw avatar is verstrekt door uw originele account." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Annuleer" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Kies als profielafbeelding" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Taal" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Help met vertalen" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "De crypto app is niet langer geactiveerd, u moet alle bestanden decrypten." -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Inlog-wachtwoord" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Decodeer alle bestanden" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Uw cryptosleutels zijn verplaatst naar een backup locatie. Als iets iets verkeerd ging, kunt u de sleutels herstellen. Verwijder ze alleen permanent als u zeker weet dat de bestanden goed zijn versleuteld." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Herstel cryptosleutels" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Verwijder cryptosleutels" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Inlognaam" @@ -979,19 +987,19 @@ msgstr "Iedereen" msgid "Admins" msgstr "Beheerders" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Standaard limiet" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Geef de opslagquotering op (bijv. \"512 MB\" of \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Ongelimiteerd" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Anders" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 381cf66a73f..dd199e789d5 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-18 01:54-0400\n" -"PO-Revision-Date: 2014-08-18 05:10+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -52,11 +52,11 @@ msgstr "Geen actie opgegeven" msgid "No configuration specified" msgstr "Geen configuratie opgegeven" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Geen gegevens verstrekt" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Kon configuratie %s niet instellen" @@ -105,65 +105,65 @@ msgstr "Kon de Base DN niet vaststellen" msgid "Please specify the port" msgstr "Geef de poort op" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Configuratie OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Configuratie onjuist" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Configuratie incompleet" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Selecteer groepen" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Selecteer objectklasse" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Selecteer attributen" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Verbindingstest geslaagd" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Verbindingstest mislukt" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Wilt u werkelijk de huidige Serverconfiguratie verwijderen?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Bevestig verwijderen" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s groep gevonden" msgstr[1] "%s groepen gevonden" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s gebruiker gevonden" msgstr[1] "%s gebruikers gevonden" -#: lib/wizard.php:321 lib/wizard.php:1057 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Kon de gewenste functie niet vinden" -#: lib/wizard.php:864 lib/wizard.php:876 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Ongeldige server" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index f5241ef7190..99f58395760 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -152,27 +152,27 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Innstillingar" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Mappe" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Lagrar …" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 21f49a72c98..2497b286fe7 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index a0bd44497c6..461b697c5b6 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index a8b451bcc2b..fbfd2ac7c47 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index f8231de9ac4..dbcdab279f0 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -19,33 +19,33 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -167,12 +167,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -188,7 +188,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -197,23 +197,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -238,15 +238,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 7675daa7754..017d9f739f9 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Kryptering" @@ -736,11 +736,11 @@ msgstr "Meir" msgid "Less" msgstr "Mindre" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Utgåve" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Du har brukt %s av dine tilgjengelege %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Passord" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Passordet ditt er endra" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Klarte ikkje endra passordet" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Passord" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nytt passord" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Endra passord" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-post" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Di epost-adresse" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profilbilete" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Last opp ny" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Vel ny frå Filer" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Fjern bilete" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Anten PNG eller JPG. Helst kvadratisk, men du får moglegheita til å beskjera det." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Avbryt" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Vel som profilbilete" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Språk" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Hjelp oss å omsetja" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Innloggingspassord" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Dekrypter alle filene" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Innloggingsnamn" @@ -978,19 +986,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Ubegrensa" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Anna" diff --git a/l10n/nqo/settings.po b/l10n/nqo/settings.po index dd0fcb167d7..4cedb8af7c5 100644 --- a/l10n/nqo/settings.po +++ b/l10n/nqo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 6a8a740ae98..1713bf8b949 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -148,27 +148,27 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Configuracion" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Dorsièr" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Enregistra..." diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 582e5bcd3e6..2e3fc6db2d2 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index 57e5b278db5..759164de14f 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 2d7b9af88f0..6169c6600a7 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index b8e3fa8b5b9..8f138c998c3 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 848f79e9376..a6b2fb0bf6e 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -733,11 +733,11 @@ msgstr "Mai d'aquò" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Senhal" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Ton senhal a cambiat" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Pas possible de cambiar ton senhal" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Senhal en cors" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Senhal novèl" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Cambia lo senhal" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Corrièl" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Ton adreiça de corrièl" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Annula" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Lenga" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Ajuda a la revirada" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Login" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Quota per defaut" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Autres" diff --git a/l10n/or_IN/settings.po b/l10n/or_IN/settings.po index c494e449ea3..e2e6ca206c0 100644 --- a/l10n/or_IN/settings.po +++ b/l10n/or_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/pa/core.po b/l10n/pa/core.po index 316b68ace51..cb15576e96c 100644 --- a/l10n/pa/core.po +++ b/l10n/pa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -149,27 +149,27 @@ msgstr "ਨਵੰਬ" msgid "December" msgstr "ਦਸੰਬਰ" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "ਸੈਟਿੰਗ" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "...ਸੰਭਾਲਿਆ ਜਾ ਰਿਹਾ ਹੈ" diff --git a/l10n/pa/files.po b/l10n/pa/files.po index b12131698cc..0e7c3cf52cf 100644 --- a/l10n/pa/files.po +++ b/l10n/pa/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pa/files_external.po b/l10n/pa/files_external.po index 4bc1ab7e033..b3acba4c09c 100644 --- a/l10n/pa/files_external.po +++ b/l10n/pa/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/pa/files_trashbin.po b/l10n/pa/files_trashbin.po index c8cc97ef6a3..5b345206093 100644 --- a/l10n/pa/files_trashbin.po +++ b/l10n/pa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pa/lib.po b/l10n/pa/lib.po index 4bc61afc079..15cb398bce5 100644 --- a/l10n/pa/lib.po +++ b/l10n/pa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: pa\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/pa/settings.po b/l10n/pa/settings.po index d7649e265e7..59e523de2e0 100644 --- a/l10n/pa/settings.po +++ b/l10n/pa/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -734,11 +734,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "ਪਾਸਵਰ" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "ਪਾਸਵਰਡ ਬਦਲੋ" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "ਰੱਦ ਕਰੋ" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "ਲਾਗਇਨ" @@ -976,19 +984,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index f59b45781d7..0645612784b 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -153,27 +153,27 @@ msgstr "Listopad" msgid "December" msgstr "Grudzień" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Plik" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Folder" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Obraz" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Dźwięk" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Zapisywanie..." diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 821783f84dd..e02f4d15786 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: Maciej Przybecki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index d7fdf568aa7..85214797c43 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -246,29 +246,29 @@ msgstr "" msgid "Saved" msgstr "Zapisano" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Uwaga: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "oraz" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Uwaga: Wsparcie dla cURL w PHP nie zostało włączone lub zainstalowane. Zamontowanie %s nie jest możliwe. Proszę poproś Twojego administratora o zainstalowanie go." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Uwaga: Wsparcie dla FTP w PHP nie zostało włączone lub zainstalowane. Zamontowanie %s nie jest możliwe. Proszę poproś Twojego administratora o zainstalowanie go." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 5a3230c288d..57b73e9d572 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: Maciej Przybecki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 952557d917e..62a1e9a0ffb 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -24,33 +24,33 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Nie można zapisać do katalogu \"config\"!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Można to zwykle rozwiązać przez dodanie serwerowi www uprawnień zapisu do katalogu config." -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Zobacz %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Można to zwykle rozwiązać przez %sdodanie serwerowi www uprawnień zapisu do katalogu config%s." -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "Wykryto przykładową konfigurację" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -172,12 +172,12 @@ msgstr "Token wygasł. Proszę ponownie załadować stronę." msgid "Unknown user" msgstr "Nieznany użytkownik" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s wpisz nazwę użytkownika do bazy" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s wpisz nazwę bazy." @@ -193,7 +193,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nazwa i/lub hasło serwera MS SQL jest niepoprawne: %s." #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Należy wprowadzić istniejące konto użytkownika lub administratora." @@ -202,23 +202,23 @@ msgstr "Należy wprowadzić istniejące konto użytkownika lub administratora." msgid "MySQL/MariaDB username and/or password not valid" msgstr "Użytkownik i/lub hasło do MySQL/MariaDB są niepoprawne" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Błąd DB: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -243,15 +243,15 @@ msgstr "Użytkownik '%s'@'%%' MySQL/MariaDB już istnieje." msgid "Drop this user from MySQL/MariaDB." msgstr "Usuń tego użytkownika z MySQL/MariaDB" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Nie można ustanowić połączenia z bazą Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle: Nazwa użytkownika i/lub hasło jest niepoprawne" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Niepoprawne polecania: \"%s\", nazwa: %s, hasło: %s" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index f514dee55ea..3552e490c8e 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" -"Last-Translator: Maciej Przybecki \n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -57,7 +57,7 @@ msgstr "Musisz najpierw ustawić użytkownika e-mail, aby móc wysyłać wiadomo msgid "Send mode" msgstr "Tryb wysyłki" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Szyfrowanie" @@ -739,11 +739,11 @@ msgstr "Więcej" msgid "Less" msgstr "Mniej" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Wersja" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Wykorzystujesz %s z dostępnych %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Hasło" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Twoje hasło zostało zmienione" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Nie można zmienić hasła" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Bieżące hasło" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nowe hasło" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Zmień hasło" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Pełna nazwa" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Email" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Twój adres e-mail" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Wypełnij adres email aby włączyć odzyskiwanie hasła oraz otrzymywać powiadomienia" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Zdjęcie profilu" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Wczytaj nowe" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Wybierz nowe z plików" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Usuń zdjęcie" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Png lub jpg. Idealnie kwadratowy, ale będzie można je przyciąć." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Twój awatar jest ustawiony jako domyślny." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Anuluj" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Wybierz zdjęcie profilu" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Język" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Pomóż w tłumaczeniu" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Aplikacja szyfrowanie nie jest włączona, odszyfruj wszystkie plik" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Hasło logowania" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Odszyfruj wszystkie pliki" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Twoje klucze szyfrujące zostały przeniesione do lokalizacji archialnej. Jeśli coś poszło nie tak, możesz je przywrócić. Usuń je trwale tylko, gdy jesteś pewien(na), że wszystkie pliki zostały prawidłowo zdeszyfrowane." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Przywróć klucze szyfrujące" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Usuń klucze szyfrujące" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Login" @@ -981,19 +989,19 @@ msgstr "Wszyscy" msgid "Admins" msgstr "Administratorzy" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Domyślny udział" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Proszę ustawić ograniczenie zasobów (np. \"512 MB\" albo \"12 GB)" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Bez limitu" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Inne" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index bb151d7b71c..022e0c7f1dd 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: Maciej Przybecki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -54,11 +54,11 @@ msgstr "Nie określono akcji" msgid "No configuration specified" msgstr "Nie określono konfiguracji" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Nie określono danych" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Nie można ustawić konfiguracji %s" @@ -107,47 +107,47 @@ msgstr "Nie można ustalić bazowego DN" msgid "Please specify the port" msgstr "Proszę podać port" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Konfiguracja poprawna" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Konfiguracja niepoprawna" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Konfiguracja niekompletna" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Wybierz grupy" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Wybierz obiekty klas" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Wybierz atrybuty" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Test połączenia udany" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Test połączenia nie udany" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Czy chcesz usunąć bieżącą konfigurację serwera?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Potwierdź usunięcie" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -155,7 +155,7 @@ msgstr[0] "%s znaleziona grupa" msgstr[1] "%s znalezionych grup" msgstr[2] "%s znalezionych grup" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -163,11 +163,11 @@ msgstr[0] "%s znaleziony użytkownik" msgstr[1] "%s znalezionych użytkowników" msgstr[2] "%s znalezionych użytkowników" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Nie można znaleźć żądanej funkcji" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Niepoprawny Host" @@ -259,60 +259,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Określa jakiego filtru użyć podczas próby zalogowania. %%uid zastępuje nazwę użytkownika w procesie logowania. Przykład: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Serwer" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Serwer:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Dodaj konfigurację servera" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Usuń konfigurację" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Host" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Można pominąć protokół, z wyjątkiem wymaganego protokołu SSL. Następnie uruchom z ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Użytkownik DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "DN użytkownika klienta, z którym powiązanie wykonuje się, np. uid=agent,dc=example,dc=com. Dla dostępu anonimowego pozostawić DN i hasło puste" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Hasło" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Dla dostępu anonimowego pozostawić DN i hasło puste." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Jedna baza DN na linię" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Bazę DN można określić dla użytkowników i grup w karcie Zaawansowane" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 817e3fc4f2f..957056c391b 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -151,27 +151,27 @@ msgstr "Novembro" msgid "December" msgstr "Dezembro" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Configurações" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Arquivo" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Pasta" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Imagem" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Salvando..." diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 3597fc82ea0..3fca8af383f 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: dudanogueira \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index ace5979c10f..deb22e82e14 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -234,39 +234,39 @@ msgstr "Sistema" #: js/settings.js:196 msgid "All users. Type to select user or group." -msgstr "" +msgstr "Todos os usuários. Digite para selecionar usuário ou grupo." #: js/settings.js:279 msgid "(group)" -msgstr "" +msgstr "(grupo)" #: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Salvo" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Nota:" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "e" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Nota: O suporte cURL do PHP não está habilitado ou instalado. Montagem de %s não é possível. Por favor, solicite ao seu administrador do sistema para instalá-lo." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Nota: O suporte FTP no PHP não está habilitado ou instalado. Montagem de %s não é possível. Por favor, solicite ao seu administrador do sistema para instalá-lo." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index d77370da82d..f3812715766 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 7217d53e753..a201e679204 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -19,33 +19,33 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Não é possível gravar no diretório \"config\"!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Isso geralmente pode ser corrigido dando o acesso de gravação ao webserver para o diretório de configuração" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Ver %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Isso geralmente pode ser corrigido dando permissão de gravação %sgiving ao webserver para o directory%s de configuração." -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "Exemplo de configuração detectada" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -167,12 +167,12 @@ msgstr "Token expirou. Por favor recarregue a página." msgid "Unknown user" msgstr "Usuário desconhecido" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s insira o nome de usuário do banco de dados." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s insira o nome do banco de dados." @@ -188,7 +188,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nome de usuário e/ou senha MS SQL inválido(s): %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Você precisa inserir uma conta existente ou a do administrador." @@ -197,23 +197,23 @@ msgstr "Você precisa inserir uma conta existente ou a do administrador." msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB nome de usuário e/ou senha não é válida" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Erro no BD: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -238,15 +238,15 @@ msgstr "MySQL/MariaDB usuário '%s'@'%%' já existe" msgid "Drop this user from MySQL/MariaDB." msgstr "Eliminar esse usuário de MySQL/MariaDB" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Conexão Oracle não pode ser estabelecida" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Nome de usuário e/ou senha Oracle inválido(s)" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Comando ofensivo era: \"%s\", nome: %s, senha: %s" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 9b4c06f33dd..cafdc377f8a 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,7 +54,7 @@ msgstr "Você precisa configurar seu e-mail de usuário antes de ser capaz de en msgid "Send mode" msgstr "Modo enviar" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Criptografia" @@ -736,11 +736,11 @@ msgstr "Mais" msgid "Less" msgstr "Menos" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versão" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Você usou %s do seu espaço de %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Senha" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Sua senha foi alterada" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Não é possivel alterar a sua senha" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Senha atual" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nova senha" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Alterar senha" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Nome Completo" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-mail" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Seu endereço de e-mail" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Preencha com um e-mail para permitir a recuperação de senha e receber notificações" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Imagem para o perfil" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Enviar nova foto" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Selecinar uma nova dos Arquivos" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Remover imagem" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Ou png ou jpg. O ideal é quadrado, mas você vai ser capaz de cortá-la." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Seu avatar é fornecido por sua conta original." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Cancelar" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Escolha como imagem para o perfil" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Idioma" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Ajude a traduzir" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "O aplicativo de criptografia não está habilitado, por favor descriptar todos os seus arquivos" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Senha de login" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Descriptografar todos os Arquivos" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Suas chaves de criptografia forão movidas para o local de backup. Se alguma coisa deu errado, você pode salvar as chaves. Só excluí-las permanentemente se você tiver certeza de que todos os arquivos forão descriptografados corretamente." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Restaurar Chaves de Criptografia" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Eliminar Chaves de Criptografia" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Nome de Login" @@ -978,19 +986,19 @@ msgstr "Para todos" msgid "Admins" msgstr "Administradores" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Quota Padrão" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Por favor insira cota de armazenamento (ex: \"512\" ou \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Ilimitado" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Outro" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index b339f7e1eaa..21d5d003b36 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -51,11 +51,11 @@ msgstr "Nenhuma ação especificada" msgid "No configuration specified" msgstr "Nenhuma configuração especificada" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Não há dados especificados" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Não foi possível definir a configuração %s" @@ -104,65 +104,65 @@ msgstr "Não foi possível determinar a Base DN" msgid "Please specify the port" msgstr "Por favor, especifique a porta" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Configuração OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Configuração incorreta" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Configuração incompleta" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Selecionar grupos" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Selecione classes de objetos" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Selecione os atributos" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Teste de conexão bem sucedida" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Teste de conexão falhou" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Você quer realmente deletar as atuais Configurações de Servidor?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Confirmar Exclusão" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "grupo% s encontrado" msgstr[1] "grupos% s encontrado" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "usuário %s encontrado" msgstr[1] "usuários %s encontrados" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Não foi possível encontrar a função desejada" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Host Inválido" @@ -254,60 +254,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Define o filtro a ser aplicado, quando o login for feito. %%uid substitui o nome do usuário na ação de login. Exemplo: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Servidor" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Servidor:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Adicionar Configuração de Servidor" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Excluir Configuração" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Host" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Você pode omitir o protocolo, exceto quando requerer SSL. Então inicie com ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Porta" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN Usuário" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "O DN do cliente usuário com qual a ligação deverá ser feita, ex. uid=agent,dc=example,dc=com. Para acesso anônimo, deixe DN e Senha vazios." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Senha" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Para acesso anônimo, deixe DN e Senha vazios." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Uma base DN por linha" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Você pode especificar DN Base para usuários e grupos na guia Avançada" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 8bfad028d88..7b115c8400f 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -160,27 +160,27 @@ msgstr "Novembro" msgid "December" msgstr "Dezembro" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Configurações" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Ficheiro" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Pasta" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Imagem" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "A guardar..." diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index c33fb26517d..628190b35fd 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index 871c98476eb..a10e4b95cd5 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -249,29 +249,29 @@ msgstr "" msgid "Saved" msgstr "Guardado" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Aviso: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "e" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Aviso: O suporte cURL no PHP não está activo ou instalado. Não é possível montar %s. Peça ao seu administrador para instalar." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Aviso: O suporte FTP no PHP não está activo ou instalado. Não é possível montar %s. Peça ao seu administrador para instalar." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 4e84d511f49..da8bb109c3f 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 1c609f28548..b1902cae4a5 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: Nelson Rosado \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -25,33 +25,33 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Não é possível gravar na directoria \"configurar\"!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Isto pode ser resolvido normalmente dando ao servidor web direitos de escrita ao directório de configuração" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Ver %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Isto pode ser resolvido normalmente %sdando ao servidor web direitos de escrita no directório de configuração%s." -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "Exemplo de configuração detectada" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -173,12 +173,12 @@ msgstr "O token expirou. Por favor recarregue a página." msgid "Unknown user" msgstr "Utilizador desconhecido" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s introduza o nome de utilizador da base de dados" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s introduza o nome da base de dados" @@ -194,7 +194,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nome de utilizador/password do MySQL é inválido: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Precisa de introduzir uma conta existente ou de administrador" @@ -203,23 +203,23 @@ msgstr "Precisa de introduzir uma conta existente ou de administrador" msgid "MySQL/MariaDB username and/or password not valid" msgstr "Nome de utilizador/password do MySQL/Maria DB inválida" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Erro na BD: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -244,15 +244,15 @@ msgstr "O utilizador '%s'@'%%' do MySQL/MariaDB já existe" msgid "Drop this user from MySQL/MariaDB." msgstr "Eliminar este utilizador do MySQL/MariaDB" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Não foi possível estabelecer a ligação Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Nome de utilizador/password do Oracle inválida" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "O comando gerador de erro foi: \"%s\", nome: %s, password: %s" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index c279275a163..637f841462e 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" -"Last-Translator: Nelson Rosado \n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -63,7 +63,7 @@ msgstr "Você precisa de configurar o seu e-mail de usuário antes de ser capaz msgid "Send mode" msgstr "Modo de envio" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Encriptação" @@ -745,11 +745,11 @@ msgstr "Mais" msgid "Less" msgstr "Menos" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versão" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Usou %s do disponivel %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Password" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "A sua palavra-passe foi alterada" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Não foi possivel alterar a sua palavra-chave" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Palavra-chave actual" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nova palavra-chave" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Alterar palavra-chave" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Nome completo" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Email" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "O seu endereço de email" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Preencha com um endereço e-mail para permitir a recuperação de senha e receber notificações" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Foto do perfil" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Carregar novo" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Seleccionar novo a partir dos ficheiros" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Remover imagem" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Apenas png ou jpg. Idealmente quadrada, mas poderá corta-la depois." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "O seu avatar é fornecido pela sua conta original." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Cancelar" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Escolha uma fotografia de perfil" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Idioma" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Ajude a traduzir" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "A aplicação de encriptação já não está ativa, por favor desincripte todos os seus ficheiros" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Password de entrada" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Desencriptar todos os ficheiros" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "As suas chaves de encriptação foram movidas para um local de segurança. Em caso de algo correr mal você pode restaurar as chaves. Só deve eliminar as chaves permanentemente se tiver certeza absoluta que os ficheiros são decrepitados correctamente." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Restaurar as chaves de encriptação" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Apagar as chaves de encriptação" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Nome de utilizador" @@ -987,19 +995,19 @@ msgstr "Para todos" msgid "Admins" msgstr "Administrador" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Quota por padrão" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Insira a quota de armazenamento (ex: \"512 MB\" ou \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Ilimitado" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Outro" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index d763d6f5ef8..7a97ff037db 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-02 01:54-0400\n" -"PO-Revision-Date: 2014-08-01 18:51+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: Luis Jorge Simões das Neves \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -56,11 +56,11 @@ msgstr "Nenhuma acção especificada" msgid "No configuration specified" msgstr "Nenhuma configuração especificada" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Nenhuma data especificada" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Não foi possível definir a configuração %s" @@ -109,65 +109,65 @@ msgstr "Não foi possível determinar a Base DN" msgid "Please specify the port" msgstr "Por favor indique a porta" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Configuração OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Configuração incorreta" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Configuração incompleta" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Seleccionar grupos" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Selecionar classes de objetos" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Selecionar atributos" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Teste de ligação com sucesso." -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Erro no teste de ligação." -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Deseja realmente apagar as configurações de servidor actuais?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Confirmar a operação de apagar" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s grupo encontrado" msgstr[1] "%s grupos encontrados" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s utilizador encontrado" msgstr[1] "%s utilizadores encontrados" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Não se encontrou a função desejada" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Hospedeiro Inválido" @@ -259,60 +259,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Define o filtro a aplicar, quando se tenta uma sessão. %%uid substitui o nome de utilizador na ação de início de sessão. Exemplo: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Servidor" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Servvidor" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Adicionar configurações do servidor" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Apagar Configuração" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Anfitrião" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Pode omitir o protocolo, excepto se necessitar de SSL. Neste caso, comece com ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Porto" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN do utilizador" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "O DN to cliente " -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Password" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Para acesso anónimo, deixe DN e a Palavra-passe vazios." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Uma base DN por linho" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Pode especificar o ND Base para utilizadores e grupos no separador Avançado" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 5e107a0cd9f..b1c4d406818 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -154,27 +154,27 @@ msgstr "Noiembrie" msgid "December" msgstr "Decembrie" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Setări" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Fişier " -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Dosar" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Imagine" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Se salvează..." diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 09b91f43d14..fd357a0ac85 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index 836603ceab0..2e587514469 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -245,29 +245,29 @@ msgstr "" msgid "Saved" msgstr "Salvat" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 83c2663d526..c29c84f04fb 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 69c81ddfbd3..c91343b493b 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -19,33 +19,33 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -167,12 +167,12 @@ msgstr "Token expirat. Te rugăm să reîncarci pagina." msgid "Unknown user" msgstr "Utilizator necunoscut" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -188,7 +188,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nume utilizator și/sau parolă MS SQL greșită: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -197,23 +197,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "Nume utilizator și/sau parolă MySQL/MariaDB greșită" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Eroare Bază de Date: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -238,15 +238,15 @@ msgstr "Utilizatorul MySQL/MariaDB '%s'@'%%' deja există." msgid "Drop this user from MySQL/MariaDB." msgstr "Șterge acest utilizator din MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 33d3a73064d..656f38f7c91 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "" msgid "Send mode" msgstr "Modul de expediere" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Încriptare" @@ -736,11 +736,11 @@ msgstr "Mai mult" msgid "Less" msgstr "Mai puțin" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versiunea" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Ați utilizat %s din %s disponibile" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Parolă" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Parola a fost modificată" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Imposibil de-ați schimbat parola" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Parola curentă" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Noua parolă" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Schimbă parola" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Nume complet" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Email" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Adresa ta de email" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Imagine de profil" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Încarcă una nouă" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Selectează una din Fișiere" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Înlătură imagine" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Doar png sau jpg de formă pătrată. " -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Anulare" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Alege drept imagine de profil" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Limba" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Ajută la traducere" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Parolă" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Decriptează toate fișierele" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Autentificare" @@ -978,19 +986,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Cotă implicită" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Nelimitată" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Altele" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index d1b96c10485..92023f0c8b8 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -33,8 +33,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -174,27 +174,27 @@ msgstr "Ноябрь" msgid "December" msgstr "Декабрь" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Настройки" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Файл" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Каталог" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Изображение" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Аудио" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Сохранение..." diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 1a9db594d12..bf960c5442d 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -25,8 +25,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: sad2shade \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 909008d131b..37aa1655e88 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -252,29 +252,29 @@ msgstr "" msgid "Saved" msgstr "Сохранено" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Примечание: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "и" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Примечание: Поддержка cURL в PHP не включена или не установлена. Монтирование %s невозможно. Обратитесь к вашему системному администратору." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Примечание: Поддержка FTP в PHP не включена или не установлена. Монтирование %s невозможно. Пожалуйста, обратитесь к системному администратору." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 6ad4323effb..44af9635cca 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index f07f7222e82..8fc8ab9fbf7 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: sad2shade \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -30,33 +30,33 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Запись в каталог \"config\" невозможна" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Обычно это можно исправить, предоставив веб-серверу права на запись в папке конфигурации" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Просмотр %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Обычно это можно исправить, %sпредоставив веб-серверу права на запись в папке конфигурации%s." -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "Обнаружена конфигурация из примера" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -178,12 +178,12 @@ msgstr "Токен просрочен. Перезагрузите страниц msgid "Unknown user" msgstr "Неизвестный пользователь" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s введите имя пользователя базы данных." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s введите имя базы данных." @@ -199,7 +199,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Неверное имя пользователя и/или пароль MS SQL: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Вы должны войти или в существующий аккаунт или под администратором." @@ -208,23 +208,23 @@ msgstr "Вы должны войти или в существующий акка msgid "MySQL/MariaDB username and/or password not valid" msgstr "Неверное имя пользователя и/или пароль MySQL/MariaDB" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Ошибка БД: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -249,15 +249,15 @@ msgstr "Пользователь MySQL '%s'@'%%' уже существует." msgid "Drop this user from MySQL/MariaDB." msgstr "Удалить данного участника из MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "соединение с Oracle не может быть установлено" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Неверное имя пользователя и/или пароль Oracle" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Вызываемая команда была: \"%s\", имя: %s, пароль: %s" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 54ca1645789..9a5d6e524a9 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -32,9 +32,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" -"Last-Translator: sad2shade \n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -76,7 +76,7 @@ msgstr "Вы должны настроить свой e-mail пользоват msgid "Send mode" msgstr "Отправить сообщение" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Шифрование" @@ -758,11 +758,11 @@ msgstr "Больше" msgid "Less" msgstr "Меньше" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Версия" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Вы использовали %s из доступных %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Пароль" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Ваш пароль изменён" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Невозможно сменить пароль" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Текущий пароль" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Новый пароль" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Сменить пароль" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Полное имя" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-mail" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Ваш адрес электронной почты" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Введите свой email-адрес для того, чтобы включить возможность восстановления пароля и получения уведомлений" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Аватар" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Загрузить новый" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Выберите новый из файлов" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Удалить аватар" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Допустимые форматы: png и jpg. Если изображение не квадратное, то вам будет предложено обрезать его." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Будет использован аватар вашей оригинальной учетной записи." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Отменить" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Установить как аватар" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Язык" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Помочь с переводом" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Приложение для шифрования выключено, пожалуйста, расшифруйте ваши файлы" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Пароль входа" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Снять шифрование со всех файлов" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Ваши ключи шифрования были архивированы. Если что-то пойдёт не так, вы сможете восстановить ключи. Удаляйте ключи из архива только тогда, когда вы будете уверены, что все файлы были успешно расшифрованы." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Восстановить Ключи Шифрования" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Удалить Ключи Шифрования" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Имя пользователя" @@ -1000,19 +1008,19 @@ msgstr "Все" msgid "Admins" msgstr "Администраторы" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Квота по умолчанию" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Пожалуйста, введите квоту на хранилище (например: \"512 MB\" или \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Неограниченно" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Другое" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index 54604948178..ad23e4e79b7 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-08 01:54-0400\n" -"PO-Revision-Date: 2014-07-07 15:21+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: Alexander Savchenko\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -62,11 +62,11 @@ msgstr "Действие не указано" msgid "No configuration specified" msgstr "Конфигурация не создана" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Нет данных" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Невозможно создать конфигурацию %s" @@ -115,47 +115,47 @@ msgstr "Невозможно определить Base DN" msgid "Please specify the port" msgstr "Укажите порт" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Конфигурация в порядке" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Конфигурация неправильна" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Конфигурация не завершена" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Выберите группы" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Выберите объектные классы" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Выберите атрибуты" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Проверка соединения удалась" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Проверка соединения не удалась" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Вы действительно хотите удалить существующую конфигурацию сервера?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Подтверждение удаления" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -163,7 +163,7 @@ msgstr[0] "%s группа найдена" msgstr[1] "%s группы найдены" msgstr[2] "%s групп найдено" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -171,11 +171,11 @@ msgstr[0] "%s пользователь найден" msgstr[1] "%s пользователя найдено" msgstr[2] "%s пользователей найдено" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Не могу найти требуемой функциональности" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Неверный сервер" @@ -267,60 +267,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Определяет фильтр для применения при попытке входа. %%uid заменяет имя пользователя при входе в систему. Например: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Сервер" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Сервер:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Добавить конфигурацию сервера" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Удалить конфигурацию" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Сервер" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Можно опустить протокол, за исключением того, когда вам требуется SSL. Тогда начните с ldaps :/ /" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Порт" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN пользователя" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "DN пользователя, под которым выполняется подключение, например, uid=agent,dc=example,dc=com. Для анонимного доступа оставьте DN и пароль пустыми." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Пароль" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Для анонимного доступа оставьте DN и пароль пустыми." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "По одной базе поиска (Base DN) в строке." -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Вы можете задать Base DN для пользователей и групп на вкладке \"Расширенное\"" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 5888feaa2ef..03a237ba88a 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -148,27 +148,27 @@ msgstr "නොවැම්බර්" msgid "December" msgstr "දෙසැම්බර්" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "සිටුවම්" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "ෆෝල්ඩරය" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "පින්තූරය" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "සුරැකෙමින් පවතී..." diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 15f80bfb0d5..8cb27f5ba63 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index 928f8516b87..8a24a7090c9 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index 4a37b94f797..e2bc55c436d 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 08f19611abc..23f33be5991 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "ටෝකනය කල් ඉකුත් වී ඇත. පිටුව msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 247b479dc0d..8068b65ea0d 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "ගුප්ත කේතනය" @@ -733,11 +733,11 @@ msgstr "වැඩි" msgid "Less" msgstr "අඩු" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "මුර පදය" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "ඔබගේ මුර පදය වෙනස් කෙරුණි" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "මුර පදය වෙනස් කළ නොහැකි විය" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "වත්මන් මුරපදය" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "නව මුරපදය" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "මුරපදය වෙනස් කිරීම" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "විද්‍යුත් තැපෑල" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "ඔබගේ විද්‍යුත් තැපෑල" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "එපා" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "භාෂාව" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "පරිවර්ථන සහය" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "ප්‍රවිශ්ටය" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "සාමාන්‍ය සලාකය" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "වෙනත්" diff --git a/l10n/sk/core.po b/l10n/sk/core.po index 41d72125351..4733ba2f05b 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -148,27 +148,27 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "" diff --git a/l10n/sk/files.po b/l10n/sk/files.po index ee3e1e1cfdd..5a5721ddaa9 100644 --- a/l10n/sk/files.po +++ b/l10n/sk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/files_external.po b/l10n/sk/files_external.po index f8331a9e456..b3eec10c996 100644 --- a/l10n/sk/files_external.po +++ b/l10n/sk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/sk/files_trashbin.po b/l10n/sk/files_trashbin.po index 40f89a2ea23..d9cf754cce0 100644 --- a/l10n/sk/files_trashbin.po +++ b/l10n/sk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index 68be5332c3e..e783896bb7a 100644 --- a/l10n/sk/lib.po +++ b/l10n/sk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po index 159c5c4422c..820b263eaa5 100644 --- a/l10n/sk/settings.po +++ b/l10n/sk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Zrušiť" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Ostatné" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index d84d1cb2543..2ee1983d25b 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -150,27 +150,27 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Súbor" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Priečinok" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Obrázok" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Zvuk" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Ukladám..." diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 1ce183b190a..fcc480a735c 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 44c991098d8..145e8cbfed0 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -245,29 +245,29 @@ msgstr "" msgid "Saved" msgstr "Uložené" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Poznámka: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "a" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Poznámka: cURL podpora v PHP nie je zapnutá alebo nainštalovaná. Pripojenie %s nie je možné. Požiadajte správcu systému, aby ju nainštaloval." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Poznámka: FTP podpora v PHP nie je zapnutá alebo nainštalovaná. Pripojenie %s nie je možné. Požiadajte správcu systému, aby ju nainštaloval." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index b56b94d8ec5..8cb43d0eeac 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: Marián Hvolka \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index d1444570461..912cf8bfd96 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -21,33 +21,33 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Nie je možné zapisovat do priečinka \"config\"!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "To je zvyčajne možné opraviť tým, že udelíte webovému serveru oprávnenie na zápis k adresáru s konfiguráciou." -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Pozri %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "To je zvyčajne možné opraviť tým, že %sudelíte webovému serveru oprávnenie na zápis k adresáru s konfiguráciou%s." -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -169,12 +169,12 @@ msgstr "Token vypršal. Obnovte, prosím, stránku." msgid "Unknown user" msgstr "Neznámy používateľ" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "Zadajte používateľské meno %s databázy." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "Zadajte názov databázy pre %s databázy." @@ -190,7 +190,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Používateľské meno, alebo heslo MS SQL nie je platné: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Musíte zadať jestvujúci účet alebo administrátora." @@ -199,23 +199,23 @@ msgstr "Musíte zadať jestvujúci účet alebo administrátora." msgid "MySQL/MariaDB username and/or password not valid" msgstr "Používateľské meno a/alebo heslo pre MySQL/MariaDB databázu je neplatné" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Chyba DB: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -240,15 +240,15 @@ msgstr "Používateľ '%s'@'%%' už v MySQL/MariaDB existuje" msgid "Drop this user from MySQL/MariaDB." msgstr "Zahodiť používateľa z MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Nie je možné pripojiť sa k Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Používateľské meno a/alebo heslo pre Oracle databázu je neplatné" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Podozrivý príkaz bol: \"%s\", meno: %s, heslo: %s" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 504a0041695..4bedbf13cdd 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "Musíte nastaviť svoj po​​užívateľský email, než budete môcť msgid "Send mode" msgstr "Mód odosielania" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Šifrovanie" @@ -736,11 +736,11 @@ msgstr "Viac" msgid "Less" msgstr "Menej" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Verzia" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Použili ste %s z %s dostupných " -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Heslo" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Vaše heslo bolo zmenené" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Nie je možné zmeniť vaše heslo" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Aktuálne heslo" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nové heslo" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Zmeniť heslo" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Meno a priezvisko" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Email" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Vaša emailová adresa" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Zadajte emailovú adresu pre umožnenie obnovy zabudnutého hesla a pre prijímanie upozornení a oznámení" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Avatar" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Nahrať nový" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Vyberte nový zo súborov" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Zmazať obrázok" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Formát súboru png alebo jpg. V ideálnom prípade štvorec, ale budete mať možnosť ho orezať." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Váš avatar je použitý z pôvodného účtu." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Zrušiť" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Vybrať ako avatara" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Jazyk" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Pomôcť s prekladom" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Šifrovacia aplikácia už nie je spustená, dešifrujte všetky svoje súbory." -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Prihlasovacie heslo" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Dešifrovať všetky súbory" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Vaše šifrovacie kľúče boli zazálohované. Ak by sa niečo nepodarilo, dajú sa znovu obnoviť. Natrvalo ich vymažte len ak ste si istí, že sú všetky súbory bezchybne dešifrované." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Obnoviť šifrovacie kľúče" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Vymazať šifrovacie kľúče" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Prihlasovacie meno" @@ -978,19 +986,19 @@ msgstr "Všetci" msgid "Admins" msgstr "Administrátori" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Predvolená kvóta" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Prosím zadajte kvótu úložného priestoru (napr.: \"512 MB​​\" alebo \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Nelimitované" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Iné" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 50cd6abdeb8..52ad25812a4 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-19 01:54-0400\n" -"PO-Revision-Date: 2014-08-18 13:50+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: helix84 \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -52,11 +52,11 @@ msgstr "Nie je vybraná akcia" msgid "No configuration specified" msgstr "Nie je určená konfigurácia" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Nie sú vybraté dáta" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Nemôžem nastaviť konfiguráciu %s" @@ -105,47 +105,47 @@ msgstr "Nemožno určiť základnú DN" msgid "Please specify the port" msgstr "Prosím, zadajte port" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Konfigurácia je v poriadku" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Nesprávna konfigurácia" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Nekompletná konfigurácia" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Vybrať skupinu" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Vyberte triedy objektov" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Vyberte atribúty" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Test pripojenia bol úspešný" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Test pripojenia zlyhal" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Naozaj chcete zmazať súčasné nastavenie servera?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Potvrdiť vymazanie" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -153,7 +153,7 @@ msgstr[0] "%s nájdená skupina" msgstr[1] "%s nájdené skupiny" msgstr[2] "%s nájdených skupín" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -161,11 +161,11 @@ msgstr[0] "%s nájdený používateľ" msgstr[1] "%s nájdení používatelia" msgstr[2] "%s nájdených používateľov" -#: lib/wizard.php:321 lib/wizard.php:1057 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Nemožno nájsť požadovanú funkciu" -#: lib/wizard.php:864 lib/wizard.php:876 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Neplatný hostiteľ" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index a38a4adf678..e5f7bc39502 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -150,27 +150,27 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Datoteka" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Mapa" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Slika" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Zvok" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Poteka shranjevanje ..." diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 7d2a85b81fd..6ce4099afa5 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 9190ecc4d1e..77bebd6915b 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"Last-Translator: Matej Urbančič <>\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" @@ -234,39 +234,39 @@ msgstr "Sistem" #: js/settings.js:196 msgid "All users. Type to select user or group." -msgstr "" +msgstr "Vsi uporabniki. Skupino ali uporabnika je mogoče tudi izbrati." #: js/settings.js:279 msgid "(group)" -msgstr "" +msgstr "(skupina)" #: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Shranjeno" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Opomba: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "in" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Opomba: Podpora za naslove cURL v PHP ni omogočena, ali pa ni ustrezno nameščenih programov. Priklapljanje %s ni mogoče. Za pomoč pri namestitvi se obrnite na sistemskega skrbnika." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Opomba: Podpora za protokol FTP v PHP ni omogočena, ali pa ni ustrezno nameščenih programov. Priklapljanje %s ni mogoče. Za pomoč pri namestitvi se obrnite na sistemskega skrbnika." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index a9a30f3595d..124d1951223 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 799198b33c5..fd0635758c2 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -19,33 +19,33 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Mapa 'config' nima določenih ustreznih dovoljenj za pisanje!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Oglejte si %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -167,12 +167,12 @@ msgstr "Žeton je potekel. Stran je treba ponovno naložiti." msgid "Unknown user" msgstr "Neznan uporabnik" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s - vnos uporabniškega imena podatkovne zbirke." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s - vnos imena podatkovne zbirke." @@ -188,7 +188,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Uporabniško ime ali geslo MS SQL ni veljavno: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Prijaviti se je treba v obstoječi ali pa skrbniški račun." @@ -197,23 +197,23 @@ msgstr "Prijaviti se je treba v obstoječi ali pa skrbniški račun." msgid "MySQL/MariaDB username and/or password not valid" msgstr "Uporabniško ime ali geslo za MySQL/MariaDB ni veljavno" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Napaka podatkovne zbirke: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -238,15 +238,15 @@ msgstr "Uporabnik podatkovne zbirke MySQL/MariaDB '%s'@'%%' že obstaja." msgid "Drop this user from MySQL/MariaDB." msgstr "Odstrani uporabnika iz podatkovne zbirke MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Povezave s sistemom Oracle ni mogoče vzpostaviti." -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Uporabniško ime ali geslo Oracle ni veljavno" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Napačni ukaz je: \"%s\", ime: %s, geslo: %s" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index a4e89454332..34dc0f718f0 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" -"Last-Translator: Matej Urbančič <>\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -53,7 +53,7 @@ msgstr "Pred preizkusnim pošiljanjem sporočil je treba nastaviti elektronski n msgid "Send mode" msgstr "Način pošiljanja" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Šifriranje" @@ -735,11 +735,11 @@ msgstr "Več" msgid "Less" msgstr "Manj" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Različica" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Uporabljenega je %s od razpoložljivih %s prostora." -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Geslo" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Geslo je spremenjeno" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Gesla ni mogoče spremeniti." -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Trenutno geslo" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Novo geslo" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Spremeni geslo" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Polno ime" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Elektronski naslov" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Osebni elektronski naslov" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Slika profila" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Pošlji novo" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Izberi novo iz menija datotek" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Odstrani sliko" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Slika je lahko png ali jpg. Slika naj bo kvadratna, ni pa to pogoj, saj jo bo mogoče obrezati." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Podoba je podana v izvornem računu." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Prekliči" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Izberi kot sliko profila" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Jezik" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Sodelujte pri prevajanju" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Program za šifriranje ni več omogočen. Odšifrirati je treba vse datoteke." -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Prijavno geslo" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Odšifriraj vse datoteke" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Obnovi šifrirne ključe" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Izbriši šifrirne ključe" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Prijavno ime" @@ -977,19 +985,19 @@ msgstr "Vsi" msgid "Admins" msgstr "Skrbniki" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Privzeta količinska omejitev" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Vnesite količinsko omejitev prostora (na primer: \"512 MB\" ali \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Neomejeno" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Drugo" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index 0df210e095f..3462b6c35e9 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: Matej Urbančič <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -51,11 +51,11 @@ msgstr "Ni določenega dejanja" msgid "No configuration specified" msgstr "Ni določenih nastavitev" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Ni navedenih podatkov" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Ni mogoče uveljaviti nastavitev %s" @@ -104,47 +104,47 @@ msgstr "" msgid "Please specify the port" msgstr "Določiti je treba vrata" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Nastavitev je ustrezna" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Nastavitev ni ustrezna" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Nastavitev je nepopolna" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Izberi skupine" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Izbor razredov predmeta" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Izbor atributov" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Preizkus povezave je uspešno končan." -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Preizkus povezave je spodletel." -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Ali res želite izbrisati trenutne nastavitve strežnika?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Potrdi brisanje" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -153,7 +153,7 @@ msgstr[1] "%s najdeni skupini" msgstr[2] "%s najdene skupine" msgstr[3] "%s najdenih skupin" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -162,11 +162,11 @@ msgstr[1] "%s najdena uporabnika" msgstr[2] "%s najdeni uporabniki" msgstr[3] "%s najdenih uporabnikov" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Želene zmožnosti ni mogoče najti" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Neveljaven gostitelj" @@ -258,60 +258,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Določi filter, ki bo uveljavljen ob poskusu prijave. %%uid zamenja uporabniško ime pri prijavi, na primer: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. strežnik" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. strežnik:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Dodaj nastavitve strežnika" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Izbriši nastavitve" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Gostitelj" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Protokol je lahko izpuščen, če ni posebej zahtevan SSL. V tem primeru se mora naslov začeti z ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Vrata" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Uporabnikovo enolično ime" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "Enolično ime uporabnikovega odjemalca, s katerim naj se opravi vezava, npr. uid=agent,dc=example,dc=com. Za brezimni dostop sta polji prikaznega imena in gesla prazni." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Geslo" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Za brezimni dostop naj bosta polji imena in gesla prazni." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Eno osnovno enolično ime na vrstico" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Osnovno enolično ime za uporabnike in skupine lahko določite v zavihku naprednih možnosti." diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 33a36a9bcc0..b138dc8fb31 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -150,27 +150,27 @@ msgstr "Nëntor" msgid "December" msgstr "Dhjetor" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Parametra" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Dosje" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Duke ruajtur..." diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 30bc6f18d23..56ef851cb48 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index a79055c719c..79298b1822b 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "U ruajt" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index 2481622c2a9..6e0adb35844 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 266c01f44c0..e33bd4e1e82 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "Përmbajtja ka skaduar. Ju lutemi ringarkoni faqen." msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "% shkruani përdoruesin e database-it." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s shkruani emrin e database-it." @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Përdoruesi dhe/apo kodi i MS SQL i pavlefshëm: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Duhet të përdorni një llogari ekzistuese ose llogarinë e administratorit." @@ -195,23 +195,23 @@ msgstr "Duhet të përdorni një llogari ekzistuese ose llogarinë e administrat msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Veprim i gabuar i DB-it: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Përdoruesi dhe/apo kodi i Oracle-it i pavlefshëm" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Komanda e gabuar ishte: \"%s\", përdoruesi: %s, kodi: %s" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 9a3eeefbb72..cc5d64d862b 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "Mënyra e dërgimit" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Kodifikimi" @@ -734,11 +734,11 @@ msgstr "Më tepër" msgid "Less" msgstr "M'pak" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versioni" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Ju keni përdorur %s nga %s të mundshme " -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Fjalëkalim" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "fjalëkalimi juaj u ndryshua" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Nuk është e mundur të ndryshohet fjalëkalimi" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Fjalëkalimi aktual" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Fjalëkalimi i ri" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Ndrysho fjalëkalimin" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Emri i plotë" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Email" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Adresa juaj email" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Foto Profili" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Fshi imazh" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Anullo" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Vendos si foto profili" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Gjuha" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Ndihmoni në përkthim" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Fjalëkalimi i hyrjes" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Emri i Përdoruesit" @@ -976,19 +984,19 @@ msgstr "Të gjithë" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "E pakufizuar" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Tjetër" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 00a179dcbaf..ea5b75f9bca 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -148,27 +148,27 @@ msgstr "Новембар" msgid "December" msgstr "Децембар" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Поставке" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "фасцикла" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Чување у току..." diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 73ced54750f..2d72f4a3c56 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index 312642d540f..0f6c5467963 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 8f606276be0..d530a5e5240 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 77726188469..6377272ece1 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "Жетон је истекао. Поново учитајте стран msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index f814ab0a8c5..c2ccdb0f340 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Шифровање" @@ -733,11 +733,11 @@ msgstr "Више" msgid "Less" msgstr "Мање" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Верзија" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Искористили сте %s од дозвољених %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Лозинка" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Лозинка је промењена" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Не могу да изменим вашу лозинку" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Тренутна лозинка" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Нова лозинка" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Измени лозинку" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Е-пошта" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Ваша адреса е-поште" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Откажи" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Језик" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr " Помозите у превођењу" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Корисничко име" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Подразумевано ограничење" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Неограничено" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Друго" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 3674e90373f..eb225e90be9 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -151,27 +151,27 @@ msgstr "Novembar" msgid "December" msgstr "Decembar" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Podešavanja" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Fajl" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Direktorijum" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Slika" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 003da16a8e0..4e1d2229db2 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index 67f371b09d9..9447b10b20d 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 6c4b4037b0a..f72d83eab9a 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 9008c9478ec..4960fe2b756 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 25a0e098732..b12f08bfee9 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Lozinka" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Ne mogu da izmenim vašu lozinku" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Trenutna lozinka" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nova lozinka" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Izmeni lozinku" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-mail" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Otkaži" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Jezik" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Drugo" diff --git a/l10n/su/settings.po b/l10n/su/settings.po index 31061fe2246..2882cb77906 100644 --- a/l10n/su/settings.po +++ b/l10n/su/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 1815f91accb..952604d5279 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -157,27 +157,27 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Inställningar" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Fil" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Mapp" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Bild" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Ljud" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Sparar..." diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 8165d962da2..00e5f455e59 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 705b710fac6..706fa9fe2d8 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -249,29 +249,29 @@ msgstr "" msgid "Saved" msgstr "Sparad" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr " OBS: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "och" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr " OBS: cURL stöd i PHP inte är aktiverat eller installeras. Montering av %s är inte möjlig. Be din systemadministratör att installera det." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr " OBS: Den FTP-stöd i PHP inte är aktiverat eller installeras. Montering av %s är inte möjlig. Be din systemadministratör att installera det." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index f03fc96e615..e1cd73a1c22 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index a41bb0d6353..5ead36f8deb 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -26,33 +26,33 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Kan inte skriva till \"config\" katalogen!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Detta kan vanligtvis åtgärdas genom att ge skrivrättigheter till config katalgogen" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Se %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -174,12 +174,12 @@ msgstr "Ogiltig token. Ladda om sidan." msgid "Unknown user" msgstr "Okänd användare" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s ange databasanvändare." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s ange databasnamn" @@ -195,7 +195,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL-användaren och/eller lösenordet var inte giltigt: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Du måste antingen ange ett befintligt konto eller administratör." @@ -204,23 +204,23 @@ msgstr "Du måste antingen ange ett befintligt konto eller administratör." msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB användarnamn och/eller lösenord är felaktigt" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB error: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -245,15 +245,15 @@ msgstr "MySQL/MariaDB användare '%s'@'%%' existerar redan" msgid "Drop this user from MySQL/MariaDB." msgstr "Radera denna användare från MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Oracle-anslutning kunde inte etableras" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle-användarnamnet och/eller lösenordet är felaktigt" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Det felande kommandot var: \"%s\", name: %s, password: %s" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 46599364e26..45474a3b3c1 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -64,7 +64,7 @@ msgstr "Du behöver ställa in din användares e-postadress före du kan skicka msgid "Send mode" msgstr "Sändningsläge" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Kryptering" @@ -746,11 +746,11 @@ msgstr "Mer" msgid "Less" msgstr "Mindre" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Version" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Du har använt %s av tillgängliga %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Lösenord" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Ditt lösenord har ändrats" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Kunde inte ändra ditt lösenord" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Nuvarande lösenord" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nytt lösenord" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Ändra lösenord" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Hela namnet" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-post" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Din e-postadress" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Fyll i en e-postadress för att aktivera återställning av lösenord och mottagande av notifieringar" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profilbild" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Ladda upp ny" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Välj ny från filer" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Radera bild" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Antingen png eller jpg. Helst fyrkantig, men du kommer att kunna beskära den." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Din avatar tillhandahålls av ditt ursprungliga konto." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Avbryt" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Välj som profilbild" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Språk" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Hjälp att översätta" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Krypteringsapplikationen är inte längre aktiverad, vänligen dekryptera alla dina filer" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Inloggningslösenord" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Dekryptera alla filer" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Dina krypteringsnycklar flyttas till en backup. Om något gick fel kan du återställa nycklarna. Bara ta bort dem permanent om du är säker på att alla filer dekrypteras korrekt." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Återställ krypteringsnycklar" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Radera krypteringsnycklar" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Inloggningsnamn" @@ -988,19 +996,19 @@ msgstr "Alla" msgid "Admins" msgstr "Administratörer" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Förvald datakvot" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Var god skriv in lagringskvot (ex: \"512MB\" eller \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Obegränsad" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Annat" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index a5265bbee87..931120dd933 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: Juho Ojala\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -60,11 +60,11 @@ msgstr "Ingen åtgärd har angetts" msgid "No configuration specified" msgstr "Ingen konfiguration har angetts" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Ingen data har angetts" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Kunde inte sätta inställning %s" @@ -113,65 +113,65 @@ msgstr "Det gick inte att avgöra Base DN" msgid "Please specify the port" msgstr "Specificera en port" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Konfigurationen är OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Felaktig konfiguration" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Konfigurationen är ej komplett" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Välj grupper" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Välj Objekt-klasser" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Välj attribut" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Anslutningstestet lyckades" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Anslutningstestet misslyckades" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Vill du verkligen radera den nuvarande serverinställningen?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Bekräfta radering" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s grupp hittad" msgstr[1] "%s grupper hittade" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s användare hittad" msgstr[1] "%s användare hittade" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Det gick inte hitta den önskade funktionen" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Felaktig Host" @@ -263,60 +263,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Definierar filter som tillämpas vid inloggning. %%uid ersätter användarnamn vid inloggningen. Exempel: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1.Server" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Server:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Lägg till serverinställning" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Radera Konfiguration" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Server" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Du behöver inte ange protokoll förutom om du använder SSL. Starta då med ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Användare DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "DN för användaren som skall användas, t.ex. uid=agent, dc=example, dc=com. För anonym åtkomst, lämna DN och lösenord tomt." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Lösenord" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "För anonym åtkomst, lämna DN och lösenord tomt." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Ett Start DN per rad" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Du kan ange start DN för användare och grupper under fliken Avancerat" diff --git a/l10n/sw_KE/settings.po b/l10n/sw_KE/settings.po index 09c0731cef2..3fc2febc178 100644 --- a/l10n/sw_KE/settings.po +++ b/l10n/sw_KE/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/ta_IN/core.po b/l10n/ta_IN/core.po index 3f80e1019ac..54187f0833d 100644 --- a/l10n/ta_IN/core.po +++ b/l10n/ta_IN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (India) (http://www.transifex.com/projects/p/owncloud/language/ta_IN/)\n" "MIME-Version: 1.0\n" @@ -148,27 +148,27 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "" diff --git a/l10n/ta_IN/lib.po b/l10n/ta_IN/lib.po index 3b4e987f94c..0512b25fb3f 100644 --- a/l10n/ta_IN/lib.po +++ b/l10n/ta_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (India) (http://www.transifex.com/projects/p/owncloud/language/ta_IN/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: ta_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/ta_IN/settings.po b/l10n/ta_IN/settings.po index 4316c78d89d..b41c8790050 100644 --- a/l10n/ta_IN/settings.po +++ b/l10n/ta_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (India) (http://www.transifex.com/projects/p/owncloud/language/ta_IN/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -733,11 +733,11 @@ msgstr "மேலும்" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 954b369343d..c0f02f3b9cb 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -148,27 +148,27 @@ msgstr "கார்த்திகை" msgid "December" msgstr "மார்கழி" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "கோப்புறை" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "சேமிக்கப்படுகிறது..." diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index eb3651b10bf..b7cc89b08ae 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index a7080cae5fd..6f93555f9ad 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 68704a7d00d..dc34c9aeb89 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index ba38c4f133c..be9d0aa8a78 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "அடையாளவில்லை காலாவதியாகி msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 2e9a3442416..44a3e9f9222 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "மறைக்குறியீடு" @@ -733,11 +733,11 @@ msgstr "மேலதிக" msgid "Less" msgstr "குறைவான" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "நீங்கள் %s இலுள்ள %sபயன்படுத்தியுள்ளீர்கள்" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "கடவுச்சொல்" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "உங்களுடைய கடவுச்சொல் மாற்றப்பட்டுள்ளது" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "உங்களுடைய கடவுச்சொல்லை மாற்றமுடியாது" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "தற்போதைய கடவுச்சொல்" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "புதிய கடவுச்சொல்" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "கடவுச்சொல்லை மாற்றுக" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "மின்னஞ்சல்" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "உங்களுடைய மின்னஞ்சல் முகவரி" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "இரத்து செய்க" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "மொழி" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "மொழிபெயர்க்க உதவி" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "புகுபதிகை" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "பொது இருப்பு பங்கு" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "மற்றவை" diff --git a/l10n/te/core.po b/l10n/te/core.po index 7daaab5196b..43fe7f67e05 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -149,27 +149,27 @@ msgstr "నవంబర్" msgid "December" msgstr "డిసెంబర్" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "అమరికలు" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "సంచయం" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "" diff --git a/l10n/te/files.po b/l10n/te/files.po index 4ecffff14ce..ce20672a401 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index 793a46dcbc3..ec3cb9552bf 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index 1d820fe6821..831d07b2f92 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 080060994e6..25edd02b6b9 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 777b7a0d2a7..da7eda886d9 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -733,11 +733,11 @@ msgstr "మరిన్ని" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "సంకేతపదం" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "కొత్త సంకేతపదం" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "ఈమెయిలు" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "మీ ఈమెయిలు చిరునామా" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "రద్దుచేయి" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "భాష" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index bb6b9698a3b..5aecedf8cd2 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -149,27 +149,27 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 827f0a8b5df..15f403c0745 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 1ba052eb261..12c90d7b66f 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index a89d0a0839d..56a00a10eaf 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of " "%s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please " diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index c139ad34f0f..cd1b081f8f3 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index d2d3dffedc9..dab4bb597b4 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 7970567e439..1af544eca57 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index dd04e14924f..f0b36731c3b 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,33 +18,33 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config " "directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can " "break your installation and is unsupported. Please read the documentation " @@ -166,12 +166,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -187,7 +187,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -196,23 +196,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -237,15 +237,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 842ce4ba22d..79633800c57 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -133,12 +133,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: setup/abstractdatabase.php:26 +#: setup/abstractdatabase.php:26 setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:29 +#: setup/abstractdatabase.php:29 setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -153,7 +153,7 @@ msgstr "" msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 +#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:128 #: setup/postgresql.php:31 setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -162,18 +162,18 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:144 -#: setup/oci.php:151 setup/oci.php:162 setup/oci.php:169 setup/oci.php:178 -#: setup/oci.php:186 setup/oci.php:195 setup/oci.php:201 +#: setup/mysql.php:67 setup/oci.php:68 setup/oci.php:135 setup/oci.php:158 +#: setup/oci.php:165 setup/oci.php:176 setup/oci.php:183 setup/oci.php:192 +#: setup/oci.php:200 setup/oci.php:209 setup/oci.php:215 #: setup/postgresql.php:103 setup/postgresql.php:112 setup/postgresql.php:129 #: setup/postgresql.php:139 setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:145 -#: setup/oci.php:152 setup/oci.php:163 setup/oci.php:179 setup/oci.php:187 -#: setup/oci.php:196 setup/postgresql.php:104 setup/postgresql.php:113 +#: setup/mysql.php:68 setup/oci.php:69 setup/oci.php:136 setup/oci.php:159 +#: setup/oci.php:166 setup/oci.php:177 setup/oci.php:193 setup/oci.php:201 +#: setup/oci.php:210 setup/postgresql.php:104 setup/postgresql.php:113 #: setup/postgresql.php:130 setup/postgresql.php:140 setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" @@ -197,15 +197,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: setup/oci.php:34 +#: setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: setup/oci.php:55 setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:170 setup/oci.php:202 +#: setup/oci.php:184 setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 51fe7b009b4..56082707c98 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -731,11 +731,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong " "you can restore the keys. Only delete them permanently if you are sure that " "all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -973,19 +981,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index a7159eb4d61..8c92e93f224 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -50,11 +50,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -103,65 +103,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:321 lib/wizard.php:1057 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:864 lib/wizard.php:876 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index e9285a1ebdc..7c0f354033b 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 465b10237b6..121c491bc83 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -148,27 +148,27 @@ msgstr "พฤศจิกายน" msgid "December" msgstr "ธันวาคม" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "แฟ้มเอกสาร" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "รูปภาพ" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "กำลังบันทึกข้อมูล..." diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 2876d491f9e..cf7d8d5e508 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index b36b1c12c54..0036b21bd87 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index fa9325b95bc..897b346f5ee 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index aaf56f98842..e8aafacd6a2 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "รหัสยืนยันความถูกต้องหมด msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index d42eaf57f70..e52fdd75b35 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "การเข้ารหัส" @@ -733,11 +733,11 @@ msgstr "มาก" msgid "Less" msgstr "น้อย" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "รุ่น" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "คุณได้ใช้งานไปแล้ว %s จากจำนวนที่สามารถใช้ได้ %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "รหัสผ่าน" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "รหัสผ่านของคุณถูกเปลี่ยนแล้ว" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "ไม่สามารถเปลี่ยนรหัสผ่านของคุณได้" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "รหัสผ่านปัจจุบัน" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "รหัสผ่านใหม่" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "เปลี่ยนรหัสผ่าน" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "อีเมล" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "ที่อยู่อีเมล์ของคุณ" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "รูปภาพโปรไฟล์" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "ยกเลิก" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "ภาษา" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "ช่วยกันแปล" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "ชื่อที่ใช้สำหรับเข้าสู่ระบบ" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "โควต้าที่กำหนดไว้เริ่มต้น" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "ไม่จำกัดจำนวน" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "อื่นๆ" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 10b37d941e7..0adb541c370 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -152,27 +152,27 @@ msgstr "Kasım" msgid "December" msgstr "Aralık" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Dosya" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Klasör" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "Resim" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "Ses" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Kaydediliyor..." diff --git a/l10n/tr/files.po b/l10n/tr/files.po index c6cfb5a311a..995ecbc05d1 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index d6fe17b5601..9ba0a8c6b66 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"Last-Translator: Volkan Gezer \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" @@ -234,39 +234,39 @@ msgstr "Sistem" #: js/settings.js:196 msgid "All users. Type to select user or group." -msgstr "" +msgstr "Tüm kullanıcılar. Kullanıcı veya grup seçmek için yazın." #: js/settings.js:279 msgid "(group)" -msgstr "" +msgstr "(grup)" #: js/settings.js:445 js/settings.js:452 msgid "Saved" msgstr "Kaydedildi" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Not: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "ve" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Not: PHP'de cURL desteği etkin veya kurulu değil. %s bağlaması mümkün olmayacak. Lütfen kurulumu için sistem yöneticilerinizle iletişime geçin." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Not: PHP'de FTP desteği etkin veya kurulu değil. %s bağlaması mümkün olmayacak. Lütfen kurulumu için sistem yöneticilerinizle iletişime geçin." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index bd6e31cd34f..503c57dc558 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: Volkan Gezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 2a1842f80d8..6c1b93e2bab 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -21,33 +21,33 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "\"config\" dizinine yazılamıyor!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Bu genellikle, web sunucusuna config dizinine yazma erişimi verilerek çözülebilir" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Bakınız: %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Bu genellikle, %sweb sunucusuna config dizinine yazma erişimi verilerek%s çözülebilir" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "Örnek yapılandırma tespit edildi" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -169,12 +169,12 @@ msgstr "Belirteç süresi geçti. Lütfen sayfayı yenileyin." msgid "Unknown user" msgstr "Bilinmeyen kullanıcı" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s veritabanı kullanıcı adını girin." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s veritabanı adını girin." @@ -190,7 +190,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL kullanıcı adı ve/veya parolası geçersiz: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Mevcut bit hesap ya da yönetici hesabını girmelisiniz." @@ -199,23 +199,23 @@ msgstr "Mevcut bit hesap ya da yönetici hesabını girmelisiniz." msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB kullanıcı adı ve/veya parolası geçersiz" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "VT Hatası: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -240,15 +240,15 @@ msgstr "MySQL/MariaDB kullanıcısı '%s'@'%%' zaten mevcut" msgid "Drop this user from MySQL/MariaDB." msgstr "Bu kullanıcıyı MySQL/MariaDB'dan at (drop)." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Oracle bağlantısı kurulamadı" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle kullanıcı adı ve/veya parolası geçerli değil" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Hatalı komut: \"%s\", ad: %s, parola: %s" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 43f64890f4b..00c8b50c4f5 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" -"Last-Translator: Volkan Gezer \n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,7 +55,7 @@ msgstr "Sınama e-postaları göndermeden önce kullanıcı e-postasını ayarla msgid "Send mode" msgstr "Gönderme kipi" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Şifreleme" @@ -737,11 +737,11 @@ msgstr "Daha fazla" msgid "Less" msgstr "Daha az" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Sürüm" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Kullandığınız: %s. Kullanılabilir alan: %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Parola" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Parolanız değiştirildi" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Parolanız değiştirilemiyor" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Mevcut parola" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Yeni parola" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Parola değiştir" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Tam Adı" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-posta" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "E-posta adresiniz" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Parola kurtarmayı ve bildirim almayı açmak için bir e-posta adresi girin" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profil resmi" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Yeni yükle" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Dosyalardan seç" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Resmi kaldır" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "PNG veya JPG. Genellikle karedir ancak kesebileceksiniz." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Görüntü resminiz, özgün hesabınız tarafından sağlanıyor." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "İptal" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Profil resmi olarak seç" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Dil" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Çevirilere yardım edin" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Şifreleme uygulaması artık etkin değil, lütfen tüm dosyalarınızın şifrelemesini kaldırın" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Oturum açma parolası" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Tüm Dosyaların Şifrelemesini Kaldır" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Şifreleme anahtarlarınız yedek bir konuma taşındı. Eğer bir şeyler yanlış gittiyse, anahtarlarınızı geri yükleyebilirsiniz. Bu anahtarları, sadece tüm dosyalarınızın şifrelemelerinin düzgün bir şekilde kaldırıldığından eminseniz kalıcı olarak silin." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Şifreleme Anahtarlarını Geri Yükle" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Şifreleme Anahtarlarını Sil" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Giriş Adı" @@ -979,19 +987,19 @@ msgstr "Herkes" msgid "Admins" msgstr "Yöneticiler" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Öntanımlı Kota" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Lütfen disk alanı kotasını girin (örnek: \"512MB\" veya \"12GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Sınırsız" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Diğer" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index bd1243628e3..788b744d27f 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:40+0000\n" "Last-Translator: Volkan Gezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -52,11 +52,11 @@ msgstr "Eylem belirtilmedi" msgid "No configuration specified" msgstr "Yapılandırma belirtilmemiş" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Veri belirtilmemiş" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "%s yapılandırması ayarlanamadı" @@ -105,65 +105,65 @@ msgstr "Base DN belirlenemedi" msgid "Please specify the port" msgstr "Lütfen bağlantı noktasını belirtin" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Yapılandırma tamam" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Yapılandırma geçersiz" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Yapılandırma tamamlanmamış" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Grupları seç" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Nesne sınıflarını seç" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Nitelikleri seç" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Bağlantı testi başarılı oldu" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Bağlantı testi başarısız oldu" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Şu anki sunucu yapılandırmasını silmek istediğinizden emin misiniz?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Silmeyi onayla" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s grup bulundu" msgstr[1] "%s grup bulundu" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s kullanıcı bulundu" msgstr[1] "%s kullanıcı bulundu" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "İstenen özellik bulunamadı" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Geçersiz Makine" @@ -255,60 +255,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Oturum açma girişimi olduğunda uygulanacak filtreyi tanımlar. %%uid, oturum işleminde kullanıcı adı ile değiştirilir. Örneğin: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Sunucu" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Sunucu:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Sunucu Yapılandırması Ekle" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Yapılandırmayı Sil" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Sunucu" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "SSL gerekmediği takdirde protokol belirtmeyebilirsiniz. Gerekiyorsa ldaps:// ile başlayın" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Kullanıcı DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "İstemci kullanıcısının yapılacağı atamanın DN'si. Örn. uid=agent,dc=örnek,dc=com. Anonim erişim için DN ve Parolayı boş bırakın." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Parola" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Anonim erişim için DN ve Parola alanlarını boş bırakın." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Her satırda tek bir Base DN" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Gelişmiş sekmesinde, kullanıcılar ve gruplar için Base DN belirtebilirsiniz" diff --git a/l10n/tzm/settings.po b/l10n/tzm/settings.po index 345421c1624..ad9c25f42f4 100644 --- a/l10n/tzm/settings.po +++ b/l10n/tzm/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 0c662135c24..0e324625d45 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -148,27 +148,27 @@ msgstr "ئوغلاق" msgid "December" msgstr "كۆنەك" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "تەڭشەكلەر" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "قىسقۇچ" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "ساقلاۋاتىدۇ…" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 6cb1550a066..e454a0d8eea 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index f52ff352c9e..1842e75d64c 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index e36cf9d0f9a..865f09bfd2f 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 909d512d2af..54e9881bbcb 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index ef3169aaa5f..82e6ffdf2da 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "شىفىرلاش" @@ -734,11 +734,11 @@ msgstr "تېخىمۇ كۆپ" msgid "Less" msgstr "ئاز" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "نەشرى" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "ئىم" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "ئىمىڭىز مۇۋەپپەقىيەتلىك ئۆزگەرتىلدى" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "ئىمنى ئۆزگەرتكىلى بولمايدۇ." -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "نۆۋەتتىكى ئىم" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "يېڭى ئىم" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "ئىم ئۆزگەرت" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "تورخەت" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "تورخەت ئادرېسىڭىز" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "ۋاز كەچ" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "تىل" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "تەرجىمىگە ياردەم" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "تىزىمغا كىرىش ئاتى" @@ -976,19 +984,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "چەكسىز" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "باشقا" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 87aa213d941..b1668edeefc 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -150,27 +150,27 @@ msgstr "Листопад" msgid "December" msgstr "Грудень" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Налаштування" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "Файл" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Тека" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Зберігаю..." diff --git a/l10n/uk/files.po b/l10n/uk/files.po index da4bbccd488..10cec145dec 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index 395ab97d006..876d5756aa7 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -244,29 +244,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index d8f6c5ce909..dd786d73668 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: v_2e \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index de9b3db6479..7534e9de437 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "Строк дії токена скінчився. Будь ласка, msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s введіть ім'я користувача бази даних." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s введіть назву бази даних." @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL ім'я користувача та/або пароль не дійсні: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Вам потрібно ввести або існуючий обліковий запис або administrator." @@ -195,23 +195,23 @@ msgstr "Вам потрібно ввести або існуючий облік msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Помилка БД: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle ім'я користувача та/або пароль не дійсні" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Команда, що викликала проблему: \"%s\", ім'я: %s, пароль: %s" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index b30cf34e3d2..f2740f70d9b 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Шифрування" @@ -734,11 +734,11 @@ msgstr "Більше" msgid "Less" msgstr "Менше" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Версія" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Ви використали %s із доступних %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Пароль" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Ваш пароль змінено" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Не вдалося змінити Ваш пароль" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Поточний пароль" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Новий пароль" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Змінити пароль" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Ел.пошта" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Ваша адреса електронної пошти" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Відмінити" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Мова" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Допомогти з перекладом" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Ім'я Логіну" @@ -976,19 +984,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Квота за замовчуванням" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Необмежено" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Інше" diff --git a/l10n/ur/settings.po b/l10n/ur/settings.po index 0e1a65e6266..887f53e9eb2 100644 --- a/l10n/ur/settings.po +++ b/l10n/ur/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index 2ef861bd877..e120e7c0c8b 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -149,27 +149,27 @@ msgstr "نومبر" msgid "December" msgstr "دسمبر" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "ترتیبات" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "محفوظ ھو رہا ہے ..." diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index b13e1167aea..09cc52156ca 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_external.po b/l10n/ur_PK/files_external.po index fdf9b621357..923c8e20af2 100644 --- a/l10n/ur_PK/files_external.po +++ b/l10n/ur_PK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index e18acdda948..05b30836349 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: Ahmed Waqar Shah \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 176b6990de6..e8eebe00a29 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: ur_PK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 54a1c6bce61..4b5c4e2fa2e 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -733,11 +733,11 @@ msgstr "مزید" msgid "Less" msgstr "کم" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "پاسورڈ" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "نیا پاسورڈ" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "منسوخ کریں" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "دیگر" diff --git a/l10n/uz/settings.po b/l10n/uz/settings.po index a5738d6010d..c3d4a7ec1cb 100644 --- a/l10n/uz/settings.po +++ b/l10n/uz/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 2b3fb89582c..e523645b1c9 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -152,27 +152,27 @@ msgstr "Tháng 11" msgid "December" msgstr "Tháng 12" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "Cài đặt" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "Thư mục" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "Đang lưu..." diff --git a/l10n/vi/files.po b/l10n/vi/files.po index bffdafd3c5e..89ee2daf132 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index a733be3a875..968c35b2fb3 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -244,29 +244,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index f7e5f8b133b..784713a8318 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 8f19a9d15be..c3b797b25db 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "Mã Token đã hết hạn. Hãy tải lại trang." msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 2b6bd0ff29e..d48d2c42ab5 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Mã hóa" @@ -734,11 +734,11 @@ msgstr "hơn" msgid "Less" msgstr "ít" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Phiên bản" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Bạn đã sử dụng %s có sẵn %s " -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Mật khẩu" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Mật khẩu của bạn đã được thay đổi." -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Không thể đổi mật khẩu" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Mật khẩu cũ" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Mật khẩu mới" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Đổi mật khẩu" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Họ và tên" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Email" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Email của bạn" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Tải lên" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Xóa " -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Hủy" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Chọn hình ảnh như hồ sơ cá nhân" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Ngôn ngữ" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Hỗ trợ dịch thuật" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Tên đăng nhập" @@ -976,19 +984,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Hạn ngạch mặt định" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Không giới hạn" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Khác" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index e3210cf63ce..cc6b46b5c3e 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -156,27 +156,27 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "设置" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "文件" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "文件夹" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "图像" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "声音" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "保存中" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 268bd940bb3..1167907dc2a 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index a58619a4089..e1ca8c1c430 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -246,29 +246,29 @@ msgstr "" msgid "Saved" msgstr "已保存" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "注意:" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "和" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index db10cc549dc..d2e4ea0a227 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index de0872f875f..5631fec48a3 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -23,33 +23,33 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "无法写入“config”目录!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "查看 %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -171,12 +171,12 @@ msgstr "Token 过期,请刷新页面。" msgid "Unknown user" msgstr "未知用户" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s 输入数据库用户名。" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s 输入数据库名称。" @@ -192,7 +192,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL 用户名和/或密码无效:%s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "你需要输入一个数据库中已有的账户或管理员账户。" @@ -201,23 +201,23 @@ msgstr "你需要输入一个数据库中已有的账户或管理员账户。" msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB 数据库用户名和/或密码无效" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "数据库错误:\"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -242,15 +242,15 @@ msgstr "MySQL/MariaDB 用户 '%s'@'%%' 已存在" msgid "Drop this user from MySQL/MariaDB." msgstr "建议从 MySQL/MariaDB 数据库中删除此用户。" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "不能建立甲骨文连接" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle 数据库用户名和/或密码无效" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "冲突命令为:\"%s\",名称:%s,密码:%s" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 41ab5b59302..70642ff8bca 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -60,7 +60,7 @@ msgstr "在发送测试邮件前您需要设置您的用户电子邮件。" msgid "Send mode" msgstr "发送模式" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "加密" @@ -742,11 +742,11 @@ msgstr "更多" msgid "Less" msgstr "更少" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "版本" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the 加入 msgid "Show First Run Wizard again" msgstr "再次显示首次运行向导" -#: templates/personal.php:39 +#: templates/personal.php:40 #, php-format msgid "You have used %s of the available %s" msgstr "你已使用 %s,有效空间 %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "密码" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "密码已修改" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "无法修改密码" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "当前密码" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "新密码" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "修改密码" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "全名" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "电子邮件" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "您的电子邮件" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "填入电子邮件地址从而启用密码恢复和接收通知" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "联系人图片" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "上传新的" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "从文件中选择一个新的" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "移除图片" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "png 或 jpg。正方形比较理想但你也可以之后对其进行裁剪。" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "您的头像由您的原始账户所提供。" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "取消" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "用作头像" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "语言" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "帮助翻译" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "加密 app 不再被启用,请解密您所有的文件" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "登录密码" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "解密所有文件" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "您的加密密钥已经移动到一个备份位置。如果发生了错误您可以恢复密钥,当确认所有文件已经正确解密时才可永久删除密钥。" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "恢复加密密钥" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "删除加密密钥" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "登录名称" @@ -984,19 +992,19 @@ msgstr "所有人" msgid "Admins" msgstr "管理员" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "默认配额" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "请输入存储限额 (ex: \"512 MB\" or \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "无限" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "其它" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 0efac04e9f5..f0c9fc774cb 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -149,27 +149,27 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "設定" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "文件" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "資料夾" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "圖片" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "聲音" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "儲存中..." diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 788c370f067..efabe7d1134 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index 0c33328af2e..4085f2b4b26 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -243,29 +243,29 @@ msgstr "" msgid "Saved" msgstr "已儲存" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 83c4b56f3a3..62f97591ea1 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 078bbf517b1..e7ab0a2dfc5 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 1180b03ba43..6c14e193626 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "加密" @@ -734,11 +734,11 @@ msgstr "更多" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "密碼" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "新密碼" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "更改密碼" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "電郵" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "取消" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -976,19 +984,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index bd42c9335e7..ba7053e04a5 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -150,27 +150,27 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "設定" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "檔案" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "資料夾" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "圖片" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "音訊" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "儲存中..." diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 78c5114a945..62faed018a6 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: Pellaeon Lin \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 02c4cf414df..77d55556307 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" @@ -245,29 +245,29 @@ msgstr "" msgid "Saved" msgstr "已儲存" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "警告: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "與" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "警告: PHP 並未啓用 Curl 的支援,因此無法掛載 %s 。請洽您的系統管理員將其安裝並啓用。" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "警告:PHP 並未啓用 FTP 的支援,因此無法掛載 %s,請洽您的系統管理員將其安裝並啓用。" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 9492b17ef2d..7338035e187 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05: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" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 2de03817a94..d806a4864b6 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: Pellaeon Lin \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -19,33 +19,33 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "無法寫入 config 目錄!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:578 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:579 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -167,12 +167,12 @@ msgstr "Token 過期,請重新整理頁面。" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s 輸入資料庫使用者名稱。" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s 輸入資料庫名稱。" @@ -188,7 +188,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL 使用者和/或密碼無效:%s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "您必須輸入一個現有的帳號或管理員帳號。" @@ -197,23 +197,23 @@ msgstr "您必須輸入一個現有的帳號或管理員帳號。" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "資料庫錯誤:\"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -238,15 +238,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "無法建立 Oracle 資料庫連線" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle 用戶名和/或密碼無效" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "有問題的指令是:\"%s\" ,使用者:\"%s\",密碼:\"%s\"" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index b7e3c72577d..723763ee667 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:24+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "在準備要寄出測試郵件時您需要設定您的使用者郵件。 msgid "Send mode" msgstr "寄送模式" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "加密" @@ -735,11 +735,11 @@ msgstr "更多" msgid "Less" msgstr "更少" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "版本" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "您已經使用了 %s ,目前可用空間為 %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "密碼" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "你的密碼已更改" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "無法變更您的密碼" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "目前密碼" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "新密碼" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "變更密碼" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "全名" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "信箱" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "您的電子郵件信箱" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "填入電子郵件地址來啟用忘記密碼和接收通知的功能" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "個人資料照片" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "上傳新的" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "從已上傳的檔案中選一個" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "移除圖片" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "可以使用 png 或 jpg 格式,最好是方形的,但是您之後也可以裁剪它" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "您的圖像是由您原來的帳號所提供的。" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "取消" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "設定為大頭貼" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "語言" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "幫助翻譯" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "加密的軟體不能長時間啟用,請解密所有您的檔案" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "登入密碼" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "解密所有檔案" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "登入名稱" @@ -977,19 +985,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "預設容量限制" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "請輸入空間配額(例如: \"512 MB\"或是 \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "無限制" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "其他" diff --git a/lib/l10n/bn_BD.php b/lib/l10n/bn_BD.php index 82a7fccf47f..c28f399610e 100644 --- a/lib/l10n/bn_BD.php +++ b/lib/l10n/bn_BD.php @@ -1,11 +1,21 @@ "\"config\" ডিরেক্টরিতে লেখা যায়না!", +"This can usually be fixed by giving the webserver write access to the config directory" => "সাধারণতঃ ওয়বসার্ভারকে কনফিগ ডিরেক্টরিতে লেখার অধিকার দিয়ে এই সমস্যা সমাধান করা যায়", +"See %s" => "%s দেখ", +"This can usually be fixed by %sgiving the webserver write access to the config directory%s." => "সাধারণতঃ ওয়বসার্ভারকে কনফিগ ডিরেক্টরি%sতে লেখার অধিকার দিয়ে%s এই সমস্যা সমাধান করা যায়", +"Sample configuration detected" => "নমুনা কনফিগারেশন পাওয়া গেছে", "Help" => "সহায়িকা", "Personal" => "ব্যক্তিগত", "Settings" => "নিয়ামকসমূহ", "Users" => "ব্যবহারকারী", "Admin" => "প্রশাসন", +"No app name specified" => "কোন অ্যাপ নাম সুনির্দিষ্ট নয়", +"Unknown filetype" => "অজানা প্রকৃতির ফাইল", +"Invalid image" => "অবৈধ চিত্র", "web services under your control" => "ওয়েব সার্ভিস আপনার হাতের মুঠোয়", +"App directory already exists" => "এই অ্যাপ ডিরেক্টরিটি পূর্ব থেকেই বিদ্যমান", +"Can't create app folder. Please fix permissions. %s" => "অ্যাপ ফোল্ডার বানানো হেলনা। অনুমতি নির্ধারণ করুন। %s", "Application is not enabled" => "অ্যাপ্লিকেসনটি সক্রিয় নয়", "Authentication error" => "অনুমোদন ঘটিত সমস্যা", "Token expired. Please reload page." => "টোকেন মেয়াদোত্তীর্ণ। দয়া করে পৃষ্ঠাটি পূনরায় লোড করুন।", diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index a07ef8f249c..365c2e1f96a 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -4,6 +4,7 @@ $TRANSLATIONS = array( "This can usually be fixed by giving the webserver write access to the config directory" => "Tavaliselt saab selle lahendada andes veebiserverile seatete kataloogile \"config\" kirjutusõigused", "See %s" => "Vaata %s", "This can usually be fixed by %sgiving the webserver write access to the config directory%s." => "Tavaliselt saab selle lahendada %s andes veebiserverile seadete kataloogile \"config\" kirjutusõigused %s", +"Sample configuration detected" => "Tuvastati näidisseaded", "Help" => "Abiinfo", "Personal" => "Isiklik", "Settings" => "Seaded", @@ -64,6 +65,7 @@ $TRANSLATIONS = array( "Share type %s is not valid for %s" => "Jagamise tüüp %s ei ole õige %s jaoks", "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Lubade seadistus %s jaoks ebaõnnestus, kuna antud õigused ületavad %s jaoks määratud õigusi", "Setting permissions for %s failed, because the item was not found" => "Lubade seadistus %s jaoks ebaõnnestus, kuna üksust ei leitud", +"Cannot set expiration date. Expiration date is in the past" => "Aegumiskuupäeva ei saa määrata. Aegumise kuupäev on minevikus", "Sharing backend %s must implement the interface OCP\\Share_Backend" => "Jagamise tagarakend %s peab kasutusele võtma OCP\\Share_Backend liidese", "Sharing backend %s not found" => "Jagamise tagarakendit %s ei leitud", "Sharing backend for %s not found" => "Jagamise tagarakendit %s jaoks ei leitud", diff --git a/settings/l10n/az.php b/settings/l10n/az.php index 4104aa8ccf9..a926b6c69fe 100644 --- a/settings/l10n/az.php +++ b/settings/l10n/az.php @@ -6,6 +6,8 @@ $TRANSLATIONS = array( "If you received this email, the settings seem to be correct." => "Əgər siz bu məktubu aldınızsa, demək quraşdırmalar düzgündür.", "A problem occurred while sending the e-mail. Please revisit your settings." => "Məktubun göndərilməsində səhv baş verdi. Xahiş edirik öz configlərinizə yenidən baxasınız.", "Email sent" => "Məktub göndərildi", +"You need to set your user email before being able to send test emails." => "Test məktubu göndərməzdən öncə, siz öz istifadəçi poçtunuzu təyiin etməlisiniz.", +"Send mode" => "Göndərmə rejimi", "Encryption" => "Şifrələnmə", "Authentication method" => "Qeydiyyat metodikası", "Unable to load list from App Store" => "Listi App Store-dan yükləmək mümkün deyil", @@ -13,8 +15,31 @@ $TRANSLATIONS = array( "Your full name has been changed." => "Sizin tam adınız dəyişdirildi.", "Unable to change full name" => "Tam adı dəyişmək olmur", "Group already exists" => "Qrup artıq mövcuddur", +"Unable to add group" => "Qrupu əlavə etmək olmur", "Files decrypted successfully" => "Fayllar uğurla deşifrə edildi", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Sizin faylları deşifrə etmək olmur, xahiş olunur owncloud.log faylını yoxlaya vəya inzibatçıya müraciət edəsiniz.", +"Couldn't decrypt your files, check your password and try again" => "Sizin faylları deşifrə etmək olmur, xahiş olunur şifrəni yoxlaya və yenidən təkrar edəsiniz.", +"Encryption keys deleted permanently" => "Şifrələmə açarları həmişəlik silindi", +"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "Sizin şifrələnmə açarlarınızı həmişəlik silmək mümkün olmadı, xahış olunur owncloud.log faylını yoxlaya və ya inzibatçıya müraciət edəsiniz.", +"Couldn't remove app." => "Proqram təminatını silmək mümkün olmadı.", +"Email saved" => "Məktub yadda saxlanıldı", +"Invalid email" => "Yalnış məktub", +"Unable to delete group" => "Qrupu silmək olmur", +"Unable to delete user" => "İstifadəçini silmək olmur", +"Backups restored successfully" => "Ehtiyyat nüsxələr uğurla geri qaytarıldı", +"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" => "Sizin şifrələnmə açarlarınızı geri qaytarmaq mümkün olmadı, xahış olunur owncloud.log faylını yoxlaya və ya inzibatçıya müraciət edəsiniz.", +"Language changed" => "Dil dəyişdirildi", "Invalid request" => "Səhv müraciət", +"Admins can't remove themself from the admin group" => "İnzibatçılar özlərini inzibatçı qrupundan silə bilməz", +"Unable to add user to group %s" => "İstifadəçini %s qrupuna əlavə etmək mümkün olmadı", +"Unable to remove user from group %s" => "İstifadəçini %s qrupundan silmək mümkün olmadı", +"Couldn't update app." => "Proqram təminatını yeniləmək mümkün deyil.", +"Wrong password" => "Yalnış şifrə", +"No user supplied" => "Heç bir istifadəçiyə mənimsədilmir", +"Please provide an admin recovery password, otherwise all user data will be lost" => "Xahış olunur inzibatçı geriyə qayıdış şifrəsini təqdim edəsiniz, əks halda bütün istfadəçi datası itəcək.", +"Wrong admin recovery password. Please check the password and try again." => "İnzibatçı geriyə qayıdış şifrəsi yalnışdır. Xahiş olunur şifrəni yoxlayıb yenidən təkrar edəsiniz.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "İnzibatçı mərkəzi şifrə dəyişilməsini dəstəkləmir ancaq, istifadəçi şifrələnmə açarı uğurla yeniləndi.", +"Unable to change password" => "Şifrəni dəyişmək olmur", "Error" => "Səhv", "Delete" => "Sil", "More" => "Yenə", diff --git a/settings/l10n/bn_BD.php b/settings/l10n/bn_BD.php index 2c4923655a5..7c007675a89 100644 --- a/settings/l10n/bn_BD.php +++ b/settings/l10n/bn_BD.php @@ -47,6 +47,7 @@ $TRANSLATIONS = array( "Forum" => "ফোরাম", "Bugtracker" => "বাগট্র্যাকার", "Commercial Support" => "বাণিজ্যিক সাপোর্ট", +"Get the apps to sync your files" => "আপনার ফাইলসমূহ সিংক করতে অ্যাপস নিন", "Show First Run Wizard again" => "প্রথমবার চালানোর যাদুকর পূনরায় প্রদর্শন কর", "You have used %s of the available %s" => "আপনি ব্যবহার করছেন %s, সুলভ %s এর মধ্যে।", "Password" => "কূটশব্দ", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index 2c38d9c201b..6bc03841509 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -40,6 +40,8 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Vale administraatori taasteparool. Palun kontrolli parooli ning proovi uuesti.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Tagarakend ei toeta parooli vahetust, kuid kasutaja krüptimisvõti uuendati edukalt.", "Unable to change password" => "Ei suuda parooli muuta", +"Are you really sure you want add \"{domain}\" as trusted domain?" => "Oled sa kindel, et soovid lisada domeeni \"{domain}\" usaldusväärseks domeeniks?", +"Add trusted domain" => "Lis ausaldusväärne domeen", "Sending..." => "Saadan...", "User Documentation" => "Kasutaja dokumentatsioon", "Admin Documentation" => "Admin dokumentatsioon", @@ -108,12 +110,14 @@ $TRANSLATIONS = array( "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP moodul 'fileinfo' puudub. Soovitame tungivalt see lisada saavutamaks parimaid tulemusi failitüüpide tuvastamisel.", "Your PHP version is outdated" => "PHP versioon on aegunud", "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Sinu PHP versioon on aegunud. Soovitame tungivalt uuenda versioonile 5.3.8 või uuemale, kuna varasemad versioonid on teadaolevalt vigased. On võimalik, et see käesolev paigaldus ei toimi korrektselt.", +"PHP charset is not set to UTF-8" => "PHP märgistik pole UTF-8", "Locale not working" => "Lokalisatsioon ei toimi", "System locale can not be set to a one which supports UTF-8." => "Süsteemi lokaliseeringuks ei saa panna sellist, mis toetab UTF-8-t.", "This means that there might be problems with certain characters in file names." => "See tähendab, et võib esineda probleeme failide nimedes mõnede sümbolitega.", "We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Soovitame tungivalt paigaldada vajalikud paketid oma süsteemi tagamaks tuge järgmistele lokaliseeringutele: %s.", "Internet connection not working" => "Internetiühendus ei toimi", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Serveril puudub toimiv internetiühendus. See tähendab, et mõned funktsionaalsused, nagu näiteks väliste andmehoidlate ühendamine, teavitused uuendustest või kolmandate osapoolte rakenduste paigaldamine ei tööta. Eemalt failidele ligipääs ning teadete saatmine emailiga ei pruugi samuti toimida. Kui soovid täielikku funktsionaalsust, siis soovitame serverile tagada ligipääs internetti.", +"URL generation in notification emails" => "URL-ide loomine teavituskirjades", "Cron" => "Cron", "Last cron was executed at %s." => "Cron käivitati viimati %s.", "Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Cron käivitati viimati %s. See on rohkem kui tund tagasi, midagi on valesti.", -- GitLab From 0e8a973579c95053845153257b1bbe185f3b84b3 Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Thu, 14 Aug 2014 17:48:34 +0100 Subject: [PATCH 50/56] Improve UI of external storage configuration * Highlight fields that need to be filled * Remove (required) and (optional) strings where possible * Focus first configuration field when creating new external storage * Add ability to force external storage re-check * Various jQuery improvements * Prevent wrapping of checkboxes in configuration --- apps/files_external/appinfo/app.php | 12 ++--- apps/files_external/css/settings.css | 3 ++ apps/files_external/js/settings.js | 66 ++++++++++++++++++---------- core/css/styles.css | 4 ++ 4 files changed, 57 insertions(+), 28 deletions(-) diff --git a/apps/files_external/appinfo/app.php b/apps/files_external/appinfo/app.php index 3b8793a075b..04c48187e37 100644 --- a/apps/files_external/appinfo/app.php +++ b/apps/files_external/appinfo/app.php @@ -62,9 +62,9 @@ OC_Mount_Config::registerBackend('\OC\Files\Storage\AmazonS3', array( 'key' => (string)$l->t('Access Key'), 'secret' => '*'.$l->t('Secret Key'), 'bucket' => (string)$l->t('Bucket'), - 'hostname' => '&'.$l->t('Hostname (optional)'), - 'port' => '&'.$l->t('Port (optional)'), - 'region' => '&'.$l->t('Region (optional)'), + 'hostname' => '&'.$l->t('Hostname'), + 'port' => '&'.$l->t('Port'), + 'region' => '&'.$l->t('Region'), 'use_ssl' => '!'.$l->t('Enable SSL'), 'use_path_style' => '!'.$l->t('Enable Path Style')), 'has_dependencies' => true)); @@ -108,15 +108,15 @@ OC_Mount_Config::registerBackend('\OC\Files\Storage\Swift', array( 'backend' => (string)$l->t('OpenStack Object Storage'), 'priority' => 100, 'configuration' => array( - 'user' => (string)$l->t('Username (required)'), - 'bucket' => (string)$l->t('Bucket (required)'), + 'user' => (string)$l->t('Username'), + 'bucket' => (string)$l->t('Bucket'), 'region' => '&'.$l->t('Region (optional for OpenStack Object Storage)'), 'key' => '*'.$l->t('API Key (required for Rackspace Cloud Files)'), 'tenant' => '&'.$l->t('Tenantname (required for OpenStack Object Storage)'), 'password' => '*'.$l->t('Password (required for OpenStack Object Storage)'), 'service_name' => '&'.$l->t('Service Name (required for OpenStack Object Storage)'), 'url' => '&'.$l->t('URL of identity endpoint (required for OpenStack Object Storage)'), - 'timeout' => '&'.$l->t('Timeout of HTTP requests in seconds (optional)'), + 'timeout' => '&'.$l->t('Timeout of HTTP requests in seconds'), ), 'has_dependencies' => true)); diff --git a/apps/files_external/css/settings.css b/apps/files_external/css/settings.css index b78eec235d6..101c224c5f5 100644 --- a/apps/files_external/css/settings.css +++ b/apps/files_external/css/settings.css @@ -20,6 +20,9 @@ tr:hover>td.remove>img { visibility:visible; cursor:pointer; } #externalStorage td.backend { white-space: normal; } +#externalStorage td.configuration > * { + white-space: nowrap; +} #externalStorage td.configuration input.added { margin-right: 6px; diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index 6c287d6a760..00d2a920cbf 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -2,7 +2,7 @@ function updateStatus(statusEl, result){ statusEl.removeClass('success error loading-small'); - if (result && result.status == 'success' && result.data.message) { + if (result && result.status === 'success' && result.data.message) { statusEl.addClass('success'); return true; } else { @@ -19,11 +19,23 @@ function getSelection($row) { return values; } +function highlightBorder(element, highlight) { + $(element).toggleClass('warning-input', highlight); + return highlight; +} + +function highlightInput(input) { + if ($(input).attr('type') === 'text' || $(input).attr('type') === 'password') { + return highlightBorder(input, + ($(input).val() === '' && !$(input).hasClass('optional'))); + } +} + OC.MountConfig={ saveStorage:function(tr, callback) { var mountPoint = $(tr).find('.mountPoint input').val(); var oldMountPoint = $(tr).find('.mountPoint input').data('mountpoint'); - if (mountPoint == '') { + if (mountPoint === '') { return false; } var statusSpan = $(tr).closest('tr').find('.status span'); @@ -35,7 +47,7 @@ OC.MountConfig={ } var classOptions = {}; $.each(configuration, function(index, input) { - if ($(input).val() == '' && !$(input).hasClass('optional')) { + if ($(input).val() === '' && !$(input).hasClass('optional')) { addMountPoint = false; return false; } @@ -295,13 +307,13 @@ $(document).ready(function() { addSelect2($('tr:not(#addMountPoint) .applicableUsers')); $('#externalStorage').on('change', '#selectBackend', function() { - var tr = $(this).parent().parent(); + var tr = $(this).closest("tr"); $('#externalStorage tbody').append($(tr).clone()); $('#externalStorage tbody tr').last().find('.mountPoint input').val(''); var selected = $(this).find('option:selected').text(); var backendClass = $(this).val(); - $(this).parent().text(selected); - if ($(tr).find('.mountPoint input').val() == '') { + $(tr).find('.backend').text(selected); + if ($(tr).find('.mountPoint input').val() === '') { $(tr).find('.mountPoint input').val(suggestMountPoint(selected)); } $(tr).addClass(backendClass); @@ -310,28 +322,32 @@ $(document).ready(function() { var configurations = $(this).data('configurations'); var td = $(tr).find('td.configuration'); $.each(configurations, function(backend, parameters) { - if (backend == backendClass) { + if (backend === backendClass) { $.each(parameters['configuration'], function(parameter, placeholder) { var is_optional = false; if (placeholder.indexOf('&') === 0) { is_optional = true; placeholder = placeholder.substring(1); } + var newElement; if (placeholder.indexOf('*') === 0) { var class_string = is_optional ? ' optional' : ''; - td.append(''); + newElement = $(''); } else if (placeholder.indexOf('!') === 0) { - td.append(''); + newElement = $(''); } else if (placeholder.indexOf('#') === 0) { - td.append(''); + newElement = $(''); } else { var class_string = is_optional ? ' optional' : ''; - td.append(''); + newElement = $(''); } + highlightInput(newElement); + td.append(newElement); }); - if (parameters['custom'] && $('#externalStorage tbody tr.'+backendClass.replace(/\\/g, '\\\\')).length == 1) { + if (parameters['custom'] && $('#externalStorage tbody tr.'+backendClass.replace(/\\/g, '\\\\')).length === 1) { OC.addScript('files_external', parameters['custom']); } + td.children().not('[type=hidden]').first().focus(); return false; } }); @@ -354,7 +370,7 @@ $(document).ready(function() { while (match && i < 20) { match = false; $('#externalStorage tbody td.mountPoint input').each(function(index, mountPoint) { - if ($(mountPoint).val() == defaultMountPoint+append) { + if ($(mountPoint).val() === defaultMountPoint+append) { match = true; return false; } @@ -369,9 +385,11 @@ $(document).ready(function() { return defaultMountPoint+append; } - $('#externalStorage').on('paste', 'td', function() { - var tr = $(this).parent(); + $('#externalStorage').on('paste', 'td input', function() { + var tr = $(this).closest("tr"); + var me = this; setTimeout(function() { + highlightInput($(me)); OC.MountConfig.saveStorage(tr); }, 20); }); @@ -380,7 +398,8 @@ $(document).ready(function() { $('#externalStorage').on('keyup', 'td input', function() { clearTimeout(timer); - var tr = $(this).parent().parent(); + var tr = $(this).closest("tr"); + highlightInput($(this)); if ($(this).val) { timer = setTimeout(function() { OC.MountConfig.saveStorage(tr); @@ -389,23 +408,26 @@ $(document).ready(function() { }); $('#externalStorage').on('change', 'td input:checkbox', function() { - OC.MountConfig.saveStorage($(this).parent().parent().parent()); + OC.MountConfig.saveStorage($(this).closest("tr")); }); $('#externalStorage').on('change', '.applicable', function() { - OC.MountConfig.saveStorage($(this).parent()); + OC.MountConfig.saveStorage($(this).closest("tr")); + }); + + $('#externalStorage').on('click', '.status>span', function() { + OC.MountConfig.saveStorage($(this).closest("tr")); }); $('#sslCertificate').on('click', 'td.remove>img', function() { - var $tr = $(this).parent().parent(); - var row = this.parentNode.parentNode; - $.post(OC.filePath('files_external', 'ajax', 'removeRootCertificate.php'), {cert: row.id}); + var $tr = $(this).closest("tr"); + $.post(OC.filePath('files_external', 'ajax', 'removeRootCertificate.php'), {cert: $tr.attr('id')}); $tr.remove(); return true; }); $('#externalStorage').on('click', 'td.remove>img', function() { - var tr = $(this).parent().parent(); + var tr = $(this).closest('tr'); var mountPoint = $(tr).find('.mountPoint input').val(); if ($('#externalStorage').data('admin') === true) { diff --git a/core/css/styles.css b/core/css/styles.css index 7e41e904127..3f3afa44f2d 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -620,6 +620,10 @@ label.infield { color: black !important; } +.warning-input { + border-color: #cc3333 !important; +} + /* Fixes for log in page, TODO should be removed some time */ #body-login .update, #body-login .error { -- GitLab From 23137f4798cb89b188329050a85f2f3a706947c5 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 31 Aug 2014 01:56:20 -0400 Subject: [PATCH 51/56] [tx-robot] updated from transifex --- apps/files_external/l10n/ast.php | 6 -- apps/files_external/l10n/az.php | 3 +- apps/files_external/l10n/bg_BG.php | 6 -- apps/files_external/l10n/ca.php | 6 -- apps/files_external/l10n/cs_CZ.php | 9 +- apps/files_external/l10n/da.php | 6 -- apps/files_external/l10n/de.php | 6 -- apps/files_external/l10n/de_DE.php | 6 -- apps/files_external/l10n/el.php | 7 +- apps/files_external/l10n/en_GB.php | 6 -- apps/files_external/l10n/eo.php | 4 - apps/files_external/l10n/es.php | 6 -- apps/files_external/l10n/et_EE.php | 6 -- apps/files_external/l10n/eu.php | 5 -- apps/files_external/l10n/fi_FI.php | 5 -- apps/files_external/l10n/fr.php | 6 -- apps/files_external/l10n/gl.php | 6 -- apps/files_external/l10n/id.php | 4 - apps/files_external/l10n/it.php | 6 -- apps/files_external/l10n/ja.php | 6 -- apps/files_external/l10n/nb_NO.php | 6 -- apps/files_external/l10n/nl.php | 6 -- apps/files_external/l10n/pl.php | 6 -- apps/files_external/l10n/pt_BR.php | 6 -- apps/files_external/l10n/pt_PT.php | 6 -- apps/files_external/l10n/ro.php | 1 - apps/files_external/l10n/ru.php | 6 -- apps/files_external/l10n/sk_SK.php | 6 -- apps/files_external/l10n/sl.php | 6 -- apps/files_external/l10n/sv.php | 6 -- apps/files_external/l10n/tr.php | 6 -- apps/files_external/l10n/zh_CN.php | 6 -- apps/files_external/l10n/zh_TW.php | 4 - apps/files_sharing/l10n/cs_CZ.php | 4 +- apps/files_trashbin/l10n/az.php | 1 + apps/user_ldap/l10n/cs_CZ.php | 8 +- core/l10n/az.php | 8 ++ core/l10n/cs_CZ.php | 4 +- l10n/ach/files_external.po | 42 ++++----- l10n/ady/files_external.po | 42 ++++----- l10n/af_ZA/core.po | 4 +- l10n/af_ZA/files_external.po | 42 ++++----- l10n/af_ZA/files_sharing.po | 10 +-- l10n/af_ZA/settings.po | 4 +- l10n/af_ZA/user_ldap.po | 66 +++++++------- l10n/ak/files_external.po | 42 ++++----- l10n/am_ET/files_external.po | 42 ++++----- l10n/ar/core.po | 4 +- l10n/ar/files_external.po | 32 +++---- l10n/ar/files_sharing.po | 10 +-- l10n/ar/settings.po | 4 +- l10n/ar/user_ldap.po | 62 +++++++------- l10n/ast/core.po | 4 +- l10n/ast/files_external.po | 40 ++++----- l10n/ast/files_sharing.po | 4 +- l10n/ast/settings.po | 4 +- l10n/ast/user_ldap.po | 4 +- l10n/az/core.po | 20 ++--- l10n/az/files_external.po | 38 ++++----- l10n/az/files_sharing.po | 4 +- l10n/az/files_trashbin.po | 6 +- l10n/az/lib.po | 54 ++++++------ l10n/az/settings.po | 128 ++++++++++++++-------------- l10n/az/user_ldap.po | 36 ++++---- l10n/be/files_external.po | 42 ++++----- l10n/bg_BG/core.po | 4 +- l10n/bg_BG/files_external.po | 42 ++++----- l10n/bg_BG/files_sharing.po | 4 +- l10n/bg_BG/settings.po | 4 +- l10n/bg_BG/user_ldap.po | 4 +- l10n/bn_BD/core.po | 4 +- l10n/bn_BD/files_external.po | 32 +++---- l10n/bn_BD/files_sharing.po | 4 +- l10n/bn_BD/settings.po | 4 +- l10n/bn_BD/user_ldap.po | 4 +- l10n/bn_IN/core.po | 4 +- l10n/bn_IN/files_external.po | 32 +++---- l10n/bn_IN/settings.po | 4 +- l10n/bs/files_external.po | 42 ++++----- l10n/ca/core.po | 4 +- l10n/ca/files_external.po | 40 ++++----- l10n/ca/files_sharing.po | 10 +-- l10n/ca/settings.po | 4 +- l10n/ca/user_ldap.po | 4 +- l10n/ca@valencia/files_external.po | 42 ++++----- l10n/cs_CZ/core.po | 10 +-- l10n/cs_CZ/files_external.po | 48 +++++------ l10n/cs_CZ/files_sharing.po | 16 ++-- l10n/cs_CZ/lib.po | 60 ++++++------- l10n/cs_CZ/settings.po | 30 +++---- l10n/cs_CZ/user_ldap.po | 16 ++-- l10n/cs_CZ/user_webdavauth.po | 6 +- l10n/cy_GB/core.po | 4 +- l10n/cy_GB/files_external.po | 32 +++---- l10n/cy_GB/files_sharing.po | 10 +-- l10n/cy_GB/settings.po | 4 +- l10n/cy_GB/user_ldap.po | 62 +++++++------- l10n/da/core.po | 4 +- l10n/da/files_external.po | 40 ++++----- l10n/da/files_sharing.po | 4 +- l10n/da/settings.po | 4 +- l10n/da/user_ldap.po | 62 +++++++------- l10n/de/core.po | 4 +- l10n/de/files_external.po | 40 ++++----- l10n/de/files_sharing.po | 10 +-- l10n/de/settings.po | 4 +- l10n/de/user_ldap.po | 4 +- l10n/de_AT/core.po | 4 +- l10n/de_AT/files_external.po | 32 +++---- l10n/de_AT/files_sharing.po | 10 +-- l10n/de_AT/settings.po | 4 +- l10n/de_AT/user_ldap.po | 4 +- l10n/de_CH/core.po | 4 +- l10n/de_CH/files_external.po | 32 +++---- l10n/de_CH/files_sharing.po | 10 +-- l10n/de_CH/settings.po | 4 +- l10n/de_CH/user_ldap.po | 62 +++++++------- l10n/de_DE/core.po | 4 +- l10n/de_DE/files_external.po | 40 ++++----- l10n/de_DE/files_sharing.po | 10 +-- l10n/de_DE/settings.po | 4 +- l10n/de_DE/user_ldap.po | 4 +- l10n/el/core.po | 4 +- l10n/el/files_external.po | 43 ++++------ l10n/el/files_sharing.po | 4 +- l10n/el/settings.po | 8 +- l10n/el/user_ldap.po | 4 +- l10n/en@pirate/core.po | 16 ++-- l10n/en@pirate/files_external.po | 42 ++++----- l10n/en@pirate/files_sharing.po | 10 +-- l10n/en@pirate/settings.po | 4 +- l10n/en@pirate/user_ldap.po | 66 +++++++------- l10n/en_GB/core.po | 4 +- l10n/en_GB/files_external.po | 42 ++++----- l10n/en_GB/files_sharing.po | 10 +-- l10n/en_GB/settings.po | 10 +-- l10n/en_GB/user_ldap.po | 4 +- l10n/en_NZ/files_external.po | 42 ++++----- l10n/eo/core.po | 4 +- l10n/eo/files_external.po | 38 ++++----- l10n/eo/files_sharing.po | 10 +-- l10n/eo/settings.po | 4 +- l10n/eo/user_ldap.po | 4 +- l10n/es/core.po | 4 +- l10n/es/files_external.po | 42 ++++----- l10n/es/files_sharing.po | 10 +-- l10n/es/settings.po | 12 +-- l10n/es/user_ldap.po | 4 +- l10n/es_AR/core.po | 4 +- l10n/es_AR/files_external.po | 32 +++---- l10n/es_AR/files_sharing.po | 10 +-- l10n/es_AR/settings.po | 4 +- l10n/es_AR/user_ldap.po | 62 +++++++------- l10n/es_BO/files_external.po | 42 ++++----- l10n/es_CL/core.po | 4 +- l10n/es_CL/files_external.po | 42 ++++----- l10n/es_CL/files_sharing.po | 10 +-- l10n/es_CL/settings.po | 4 +- l10n/es_CL/user_ldap.po | 62 +++++++------- l10n/es_CO/files_external.po | 42 ++++----- l10n/es_CR/files_external.po | 42 ++++----- l10n/es_EC/files_external.po | 42 ++++----- l10n/es_MX/core.po | 4 +- l10n/es_MX/files_external.po | 32 +++---- l10n/es_MX/files_sharing.po | 10 +-- l10n/es_MX/settings.po | 4 +- l10n/es_MX/user_ldap.po | 62 +++++++------- l10n/es_PE/files_external.po | 42 ++++----- l10n/es_PY/files_external.po | 42 ++++----- l10n/es_US/files_external.po | 42 ++++----- l10n/es_UY/files_external.po | 42 ++++----- l10n/et_EE/core.po | 4 +- l10n/et_EE/files_external.po | 42 ++++----- l10n/et_EE/files_sharing.po | 4 +- l10n/et_EE/settings.po | 4 +- l10n/et_EE/user_ldap.po | 4 +- l10n/eu/core.po | 4 +- l10n/eu/files_external.po | 40 ++++----- l10n/eu/files_sharing.po | 10 +-- l10n/eu/settings.po | 4 +- l10n/eu/user_ldap.po | 4 +- l10n/eu_ES/files_external.po | 32 +++---- l10n/fa/core.po | 4 +- l10n/fa/files_external.po | 32 +++---- l10n/fa/files_sharing.po | 10 +-- l10n/fa/settings.po | 4 +- l10n/fa/user_ldap.po | 4 +- l10n/fi_FI/core.po | 4 +- l10n/fi_FI/files_external.po | 42 ++++----- l10n/fi_FI/files_sharing.po | 10 +-- l10n/fi_FI/settings.po | 16 ++-- l10n/fi_FI/user_ldap.po | 4 +- l10n/fr/core.po | 4 +- l10n/fr/files_external.po | 40 ++++----- l10n/fr/files_sharing.po | 10 +-- l10n/fr/settings.po | 4 +- l10n/fr/user_ldap.po | 4 +- l10n/fr_CA/files_external.po | 42 ++++----- l10n/gl/core.po | 4 +- l10n/gl/files_external.po | 40 ++++----- l10n/gl/files_sharing.po | 10 +-- l10n/gl/settings.po | 4 +- l10n/gl/user_ldap.po | 4 +- l10n/he/core.po | 4 +- l10n/he/files_external.po | 32 +++---- l10n/he/files_sharing.po | 10 +-- l10n/he/settings.po | 4 +- l10n/he/user_ldap.po | 62 +++++++------- l10n/hi/core.po | 4 +- l10n/hi/files_external.po | 42 ++++----- l10n/hi/files_sharing.po | 10 +-- l10n/hi/settings.po | 4 +- l10n/hi/user_ldap.po | 36 ++++---- l10n/hi_IN/files_external.po | 42 ++++----- l10n/hr/core.po | 4 +- l10n/hr/files_external.po | 32 +++---- l10n/hr/files_sharing.po | 10 +-- l10n/hr/settings.po | 4 +- l10n/hr/user_ldap.po | 36 ++++---- l10n/hu_HU/core.po | 4 +- l10n/hu_HU/files_external.po | 32 +++---- l10n/hu_HU/files_sharing.po | 4 +- l10n/hu_HU/settings.po | 4 +- l10n/hu_HU/user_ldap.po | 4 +- l10n/hy/files_external.po | 32 +++---- l10n/ia/core.po | 4 +- l10n/ia/files_external.po | 32 +++---- l10n/ia/files_sharing.po | 10 +-- l10n/ia/settings.po | 4 +- l10n/ia/user_ldap.po | 62 +++++++------- l10n/id/core.po | 4 +- l10n/id/files_external.po | 38 ++++----- l10n/id/files_sharing.po | 10 +-- l10n/id/settings.po | 4 +- l10n/id/user_ldap.po | 62 +++++++------- l10n/io/files_external.po | 42 ++++----- l10n/is/core.po | 4 +- l10n/is/files_external.po | 32 +++---- l10n/is/files_sharing.po | 10 +-- l10n/is/settings.po | 4 +- l10n/is/user_ldap.po | 62 +++++++------- l10n/it/core.po | 4 +- l10n/it/files_external.po | 42 ++++----- l10n/it/files_sharing.po | 10 +-- l10n/it/settings.po | 10 +-- l10n/it/user_ldap.po | 4 +- l10n/ja/core.po | 4 +- l10n/ja/files_external.po | 40 ++++----- l10n/ja/files_sharing.po | 4 +- l10n/ja/settings.po | 4 +- l10n/ja/user_ldap.po | 4 +- l10n/jv/files_external.po | 32 +++---- l10n/ka_GE/core.po | 4 +- l10n/ka_GE/files_external.po | 32 +++---- l10n/ka_GE/files_sharing.po | 10 +-- l10n/ka_GE/settings.po | 4 +- l10n/ka_GE/user_ldap.po | 62 +++++++------- l10n/km/core.po | 4 +- l10n/km/files_external.po | 32 +++---- l10n/km/files_sharing.po | 10 +-- l10n/km/settings.po | 4 +- l10n/km/user_ldap.po | 62 +++++++------- l10n/kn/files_external.po | 42 ++++----- l10n/ko/core.po | 4 +- l10n/ko/files_external.po | 32 +++---- l10n/ko/files_sharing.po | 10 +-- l10n/ko/settings.po | 4 +- l10n/ko/user_ldap.po | 62 +++++++------- l10n/ku_IQ/core.po | 4 +- l10n/ku_IQ/files_external.po | 32 +++---- l10n/ku_IQ/files_sharing.po | 10 +-- l10n/ku_IQ/settings.po | 4 +- l10n/ku_IQ/user_ldap.po | 62 +++++++------- l10n/lb/core.po | 4 +- l10n/lb/files_external.po | 32 +++---- l10n/lb/files_sharing.po | 10 +-- l10n/lb/settings.po | 4 +- l10n/lb/user_ldap.po | 62 +++++++------- l10n/lt_LT/core.po | 4 +- l10n/lt_LT/files_external.po | 32 +++---- l10n/lt_LT/files_sharing.po | 10 +-- l10n/lt_LT/settings.po | 4 +- l10n/lt_LT/user_ldap.po | 62 +++++++------- l10n/lv/core.po | 4 +- l10n/lv/files_external.po | 32 +++---- l10n/lv/files_sharing.po | 10 +-- l10n/lv/settings.po | 4 +- l10n/lv/user_ldap.po | 62 +++++++------- l10n/mk/core.po | 4 +- l10n/mk/files_external.po | 32 +++---- l10n/mk/files_sharing.po | 10 +-- l10n/mk/settings.po | 4 +- l10n/mk/user_ldap.po | 62 +++++++------- l10n/ml/files_external.po | 42 ++++----- l10n/ml_IN/files_external.po | 42 ++++----- l10n/mn/files_external.po | 42 ++++----- l10n/ms_MY/core.po | 4 +- l10n/ms_MY/files_external.po | 32 +++---- l10n/ms_MY/files_sharing.po | 10 +-- l10n/ms_MY/settings.po | 4 +- l10n/ms_MY/user_ldap.po | 62 +++++++------- l10n/my_MM/core.po | 16 ++-- l10n/my_MM/files_external.po | 32 +++---- l10n/my_MM/files_sharing.po | 10 +-- l10n/my_MM/settings.po | 4 +- l10n/my_MM/user_ldap.po | 66 +++++++------- l10n/nb_NO/core.po | 4 +- l10n/nb_NO/files_external.po | 40 ++++----- l10n/nb_NO/files_sharing.po | 4 +- l10n/nb_NO/settings.po | 4 +- l10n/nb_NO/user_ldap.po | 4 +- l10n/nds/files_external.po | 42 ++++----- l10n/ne/files_external.po | 42 ++++----- l10n/nl/core.po | 4 +- l10n/nl/files_external.po | 42 ++++----- l10n/nl/files_sharing.po | 4 +- l10n/nl/settings.po | 10 +-- l10n/nl/user_ldap.po | 4 +- l10n/nn_NO/core.po | 4 +- l10n/nn_NO/files_external.po | 32 +++---- l10n/nn_NO/files_sharing.po | 10 +-- l10n/nn_NO/settings.po | 4 +- l10n/nn_NO/user_ldap.po | 62 +++++++------- l10n/nqo/files_external.po | 42 ++++----- l10n/oc/core.po | 4 +- l10n/oc/files_external.po | 32 +++---- l10n/oc/files_sharing.po | 10 +-- l10n/oc/settings.po | 4 +- l10n/oc/user_ldap.po | 62 +++++++------- l10n/or_IN/files_external.po | 42 ++++----- l10n/pa/core.po | 4 +- l10n/pa/files_external.po | 32 +++---- l10n/pa/files_sharing.po | 10 +-- l10n/pa/settings.po | 4 +- l10n/pa/user_ldap.po | 66 +++++++------- l10n/pl/core.po | 4 +- l10n/pl/files_external.po | 40 ++++----- l10n/pl/files_sharing.po | 4 +- l10n/pl/settings.po | 4 +- l10n/pl/user_ldap.po | 4 +- l10n/pt_BR/core.po | 4 +- l10n/pt_BR/files_external.po | 42 ++++----- l10n/pt_BR/files_sharing.po | 4 +- l10n/pt_BR/settings.po | 4 +- l10n/pt_BR/user_ldap.po | 4 +- l10n/pt_PT/core.po | 4 +- l10n/pt_PT/files_external.po | 40 ++++----- l10n/pt_PT/files_sharing.po | 4 +- l10n/pt_PT/settings.po | 4 +- l10n/pt_PT/user_ldap.po | 4 +- l10n/ro/core.po | 4 +- l10n/ro/files_external.po | 34 +++----- l10n/ro/files_sharing.po | 10 +-- l10n/ro/settings.po | 4 +- l10n/ro/user_ldap.po | 62 +++++++------- l10n/ru/core.po | 4 +- l10n/ru/files_external.po | 40 ++++----- l10n/ru/files_sharing.po | 4 +- l10n/ru/settings.po | 4 +- l10n/ru/user_ldap.po | 4 +- l10n/si_LK/core.po | 4 +- l10n/si_LK/files_external.po | 32 +++---- l10n/si_LK/files_sharing.po | 10 +-- l10n/si_LK/settings.po | 4 +- l10n/si_LK/user_ldap.po | 62 +++++++------- l10n/sk/files_external.po | 32 +++---- l10n/sk_SK/core.po | 4 +- l10n/sk_SK/files_external.po | 40 ++++----- l10n/sk_SK/files_sharing.po | 10 +-- l10n/sk_SK/settings.po | 4 +- l10n/sk_SK/user_ldap.po | 4 +- l10n/sl/core.po | 4 +- l10n/sl/files_external.po | 42 ++++----- l10n/sl/files_sharing.po | 4 +- l10n/sl/settings.po | 4 +- l10n/sl/user_ldap.po | 4 +- l10n/sq/core.po | 4 +- l10n/sq/files_external.po | 32 +++---- l10n/sq/files_sharing.po | 10 +-- l10n/sq/settings.po | 4 +- l10n/sq/user_ldap.po | 62 +++++++------- l10n/sr/core.po | 4 +- l10n/sr/files_external.po | 32 +++---- l10n/sr/files_sharing.po | 10 +-- l10n/sr/settings.po | 4 +- l10n/sr/user_ldap.po | 62 +++++++------- l10n/sr@latin/core.po | 4 +- l10n/sr@latin/files_external.po | 32 +++---- l10n/sr@latin/files_sharing.po | 10 +-- l10n/sr@latin/settings.po | 4 +- l10n/sr@latin/user_ldap.po | 36 ++++---- l10n/su/files_external.po | 42 ++++----- l10n/sv/core.po | 4 +- l10n/sv/files_external.po | 40 ++++----- l10n/sv/files_sharing.po | 10 +-- l10n/sv/settings.po | 4 +- l10n/sv/user_ldap.po | 4 +- l10n/sw_KE/files_external.po | 42 ++++----- l10n/ta_IN/files_external.po | 42 ++++----- l10n/ta_LK/core.po | 4 +- l10n/ta_LK/files_external.po | 32 +++---- l10n/ta_LK/files_sharing.po | 10 +-- l10n/ta_LK/settings.po | 4 +- l10n/ta_LK/user_ldap.po | 62 +++++++------- l10n/te/core.po | 4 +- l10n/te/files_external.po | 32 +++---- l10n/te/files_sharing.po | 10 +-- l10n/te/settings.po | 4 +- l10n/te/user_ldap.po | 62 +++++++------- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 30 +++---- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/private.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 4 +- l10n/th_TH/files_external.po | 32 +++---- l10n/th_TH/files_sharing.po | 10 +-- l10n/th_TH/settings.po | 4 +- l10n/th_TH/user_ldap.po | 62 +++++++------- l10n/tr/core.po | 4 +- l10n/tr/files_external.po | 42 ++++----- l10n/tr/files_sharing.po | 10 +-- l10n/tr/settings.po | 10 +-- l10n/tr/user_ldap.po | 4 +- l10n/tzm/files_external.po | 42 ++++----- l10n/ug/core.po | 4 +- l10n/ug/files_external.po | 32 +++---- l10n/ug/files_sharing.po | 10 +-- l10n/ug/settings.po | 4 +- l10n/ug/user_ldap.po | 62 +++++++------- l10n/uk/core.po | 4 +- l10n/uk/files_external.po | 32 +++---- l10n/uk/files_sharing.po | 10 +-- l10n/uk/settings.po | 4 +- l10n/uk/user_ldap.po | 62 +++++++------- l10n/ur/files_external.po | 42 ++++----- l10n/ur_PK/core.po | 4 +- l10n/ur_PK/files_external.po | 32 +++---- l10n/ur_PK/files_sharing.po | 10 +-- l10n/ur_PK/settings.po | 4 +- l10n/ur_PK/user_ldap.po | 62 +++++++------- l10n/uz/files_external.po | 42 ++++----- l10n/vi/core.po | 4 +- l10n/vi/files_external.po | 32 +++---- l10n/vi/files_sharing.po | 10 +-- l10n/vi/settings.po | 4 +- l10n/vi/user_ldap.po | 62 +++++++------- l10n/zh_CN/core.po | 4 +- l10n/zh_CN/files_external.po | 40 ++++----- l10n/zh_CN/files_sharing.po | 10 +-- l10n/zh_CN/settings.po | 4 +- l10n/zh_CN/user_ldap.po | 62 +++++++------- l10n/zh_HK/core.po | 4 +- l10n/zh_HK/files_external.po | 32 +++---- l10n/zh_HK/files_sharing.po | 10 +-- l10n/zh_HK/settings.po | 4 +- l10n/zh_HK/user_ldap.po | 62 +++++++------- l10n/zh_TW/core.po | 4 +- l10n/zh_TW/files_external.po | 38 ++++----- l10n/zh_TW/files_sharing.po | 10 +-- l10n/zh_TW/settings.po | 4 +- l10n/zh_TW/user_ldap.po | 62 +++++++------- lib/l10n/az.php | 27 +++++- lib/l10n/cs_CZ.php | 54 ++++++------ settings/l10n/az.php | 61 +++++++++++++ settings/l10n/cs_CZ.php | 22 ++--- settings/l10n/el.php | 1 + settings/l10n/en_GB.php | 2 + settings/l10n/es.php | 3 + settings/l10n/fi_FI.php | 5 ++ settings/l10n/it.php | 2 + settings/l10n/nl.php | 2 + settings/l10n/tr.php | 2 + 480 files changed, 4079 insertions(+), 5046 deletions(-) diff --git a/apps/files_external/l10n/ast.php b/apps/files_external/l10n/ast.php index 4fb9a2b9934..6351238356e 100644 --- a/apps/files_external/l10n/ast.php +++ b/apps/files_external/l10n/ast.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 y compatibilidá", "Access Key" => "Clave d'accesu", "Secret Key" => "Clave Secreta", -"Hostname (optional)" => "Nome d'equipu (opcional)", -"Port (optional)" => "Puertu (opcional)", -"Region (optional)" => "Rexón (opcional)", "Enable SSL" => "Habilitar SSL", "Enable Path Style" => "Habilitar Estilu de ruta", "App key" => "App principal", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "ID de veceru", "Client secret" => "Veceru secretu", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Nome d'usuariu (necesariu)", -"Bucket (required)" => "Depósitu (necesariu)", "Region (optional for OpenStack Object Storage)" => "Rexón (opcional pa OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "Clave API (necesaria pa Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Nome d'inquilín (necesariu pa OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Contraseña (necesaria pa OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Nome de Serviciu (necesariu pa OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL d'identidá de puntu final (necesariu pa OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Tiempu d'espera de peticiones HTTP en segundos (opcional)", "Share" => "Compartir", "SMB / CIFS using OC login" => "SMB / CIFS usando accesu OC", "Username as share" => "Nome d'usuariu como Compartición", diff --git a/apps/files_external/l10n/az.php b/apps/files_external/l10n/az.php index 3c2770c4f36..330e8234a61 100644 --- a/apps/files_external/l10n/az.php +++ b/apps/files_external/l10n/az.php @@ -8,12 +8,13 @@ $TRANSLATIONS = array( "Location" => "Yerləşdiyiniz ünvan", "Key" => "Açar", "Secret" => "Gizli", -"Hostname (optional)" => "Avadanlığın adı(məcburi deyil)", "Enable SSL" => "SSL-i işə sal", "Host" => "Şəbəkədə ünvan", "Username" => "İstifadəçi adı", "Password" => "Şifrə", "Share" => "Yayımla", +"URL" => "URL", +"Personal" => "Şəxsi", "Saved" => "Saxlanıldı", "Name" => "Ad", "Folder name" => "Qovluq adı", diff --git a/apps/files_external/l10n/bg_BG.php b/apps/files_external/l10n/bg_BG.php index 7e1bd4136a7..88848b9b68d 100644 --- a/apps/files_external/l10n/bg_BG.php +++ b/apps/files_external/l10n/bg_BG.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 и съвместими", "Access Key" => "Access Key", "Secret Key" => "Secret Key", -"Hostname (optional)" => "Сървър (незадължително)", -"Port (optional)" => "Порт (незадължително)", -"Region (optional)" => "Регион (незадължително)", "Enable SSL" => "Включи SSL", "Enable Path Style" => "Включи Path Style", "App key" => "App key", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "Client ID", "Client secret" => "Client secret", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Потребителско Име (задължително)", -"Bucket (required)" => "Bucket (задължително)", "Region (optional for OpenStack Object Storage)" => "Регион (незадължително за OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "API Key (задължително за Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Tenantname (задължително за OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Парола (задължително за OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Service Name (задължително за OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL of identity endpoint (задължително за OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Максимално време за HTTP заявки в секунди (незадължително)", "Share" => "Споделяне", "SMB / CIFS using OC login" => "SMB / CIFS използвайки OC профил", "Username as share" => "Потребителско име като споделена папка", diff --git a/apps/files_external/l10n/ca.php b/apps/files_external/l10n/ca.php index 5b4457e808c..26ca6d95035 100644 --- a/apps/files_external/l10n/ca.php +++ b/apps/files_external/l10n/ca.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 i similars", "Access Key" => "Clau d'accés", "Secret Key" => "Clau secreta", -"Hostname (optional)" => "Nom de l'equip (opcional)", -"Port (optional)" => "Port (opcional)", -"Region (optional)" => "Regió (opcional)", "Enable SSL" => "Habilita SSL", "Enable Path Style" => "Permet l'estil del camí", "App key" => "Clau de l'aplicació", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "Client ID", "Client secret" => "Secret del client", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Nom d'usuari (necessari)", -"Bucket (required)" => "Cub (requerit)", "Region (optional for OpenStack Object Storage)" => "Regió (opcional per OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "Clau API (requerit per fitxers al núvol Rackspace)", "Tenantname (required for OpenStack Object Storage)" => "Tenantname (requerit per OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Contrasenya (requerit per OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Nom del servei (requerit per OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL del punt identificador final (requerit per OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Temps d'espera dels requeriments HTTP en segons (opcional)", "Share" => "Comparteix", "SMB / CIFS using OC login" => "SMB / CIFS usant acreditació OC", "Username as share" => "Nom d'usuari per compartir", diff --git a/apps/files_external/l10n/cs_CZ.php b/apps/files_external/l10n/cs_CZ.php index a10684e4f03..6b65a421c76 100644 --- a/apps/files_external/l10n/cs_CZ.php +++ b/apps/files_external/l10n/cs_CZ.php @@ -11,13 +11,12 @@ $TRANSLATIONS = array( "Amazon S3" => "Amazon S3", "Key" => "Klíč", "Secret" => "Tajemství", +"Bucket" => "Bucket", "Amazon S3 and compliant" => "Amazon S3 a kompatibilní", "Access Key" => "Přístupový klíč", "Secret Key" => "Tajný klíč", -"Hostname (optional)" => "Hostname (nepovinný)", -"Port (optional)" => "Port (nepovinný)", -"Region (optional)" => "Region (nepovinný)", "Enable SSL" => "Povolit SSL", +"Enable Path Style" => "Povolit Path Style", "App key" => "Klíč aplikace", "App secret" => "Tajemství aplikace", "Host" => "Počítač", @@ -28,14 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "Klientské ID", "Client secret" => "Klientské tajemství", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Uživatelské jméno (povinné)", "Region (optional for OpenStack Object Storage)" => "Region (nepovinný pro OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "API klíč (vyžadován pro Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Jméno nájemce (vyžadováno pro OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Heslo (vyžadováno pro OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Název služby (vyžadováno pro OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL identity koncového bodu (vyžadováno pro OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Časový limit HTTP požadavků v sekundách (nepovinné)", "Share" => "Sdílet", "SMB / CIFS using OC login" => "SMB / CIFS za použití přihlašovacího jména OC", "Username as share" => "Uživatelské jméno jako sdílený adresář", @@ -48,6 +45,8 @@ $TRANSLATIONS = array( "Error configuring Google Drive storage" => "Chyba při nastavení úložiště Google Drive", "Personal" => "Osobní", "System" => "Systém", +"All users. Type to select user or group." => "Všichni uživatelé. Začněte psát pro výběr uživatelů a skupin.", +"(group)" => "(skupina)", "Saved" => "Uloženo", "Note: " => "Poznámka:", " and " => "a", diff --git a/apps/files_external/l10n/da.php b/apps/files_external/l10n/da.php index 127e5469a64..e701694105e 100644 --- a/apps/files_external/l10n/da.php +++ b/apps/files_external/l10n/da.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 og kompatible", "Access Key" => "Adgangsnøgle", "Secret Key" => "Hemmelig Nøgle ", -"Hostname (optional)" => "Værtsnavn (valgfri)", -"Port (optional)" => "Port (valgfri)", -"Region (optional)" => "Region (valgfri)", "Enable SSL" => "Aktiver SSL", "Enable Path Style" => "Aktivér stil for sti", "App key" => "App-nøgle", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "Klient ID", "Client secret" => "Klient hemmelighed", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Brugernavn (påkrævet)", -"Bucket (required)" => "Bucket (påkrævet)", "Region (optional for OpenStack Object Storage)" => "Region (valgfri for OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "API-nøgle (påkrævet for Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Lejers navn (påkrævet for OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Adgangskode (påkrævet for OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Service Navn (påkrævet for OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL på slutpunkt for identitet (påkrævet for OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Timeout på HTTP forespørgsler i sekunder (valgfri)", "Share" => "Del", "SMB / CIFS using OC login" => "SMB / CIFS med OC-login", "Username as share" => "Brugernavn som deling", diff --git a/apps/files_external/l10n/de.php b/apps/files_external/l10n/de.php index 0304c032685..d0377b269a6 100644 --- a/apps/files_external/l10n/de.php +++ b/apps/files_external/l10n/de.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 und kompatible", "Access Key" => "Zugriffsschlüssel", "Secret Key" => "Sicherheitssschlüssel", -"Hostname (optional)" => "Host-Name (Optional)", -"Port (optional)" => "Port (Optional)", -"Region (optional)" => "Region (Optional)", "Enable SSL" => "SSL aktivieren", "Enable Path Style" => "Pfad-Stil aktivieren", "App key" => "App-Schlüssel", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "Client-ID", "Client secret" => "Geheime Zeichenkette des Client", "OpenStack Object Storage" => "Openstack-Objektspeicher", -"Username (required)" => "Benutzername (Erforderlich)", -"Bucket (required)" => "Bucket (Erforderlich)", "Region (optional for OpenStack Object Storage)" => "Region (Optional für Openstack-Objektspeicher)", "API Key (required for Rackspace Cloud Files)" => "API-Schlüssel (Erforderlich für Rackspace Cloud-Dateien)", "Tenantname (required for OpenStack Object Storage)" => "Mietername (Erforderlich für Openstack-Objektspeicher)", "Password (required for OpenStack Object Storage)" => "Passwort (Erforderlich für Openstack-Objektspeicher)", "Service Name (required for OpenStack Object Storage)" => "Name der Dienstleistung (Erforderlich für Openstack-Objektspeicher)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL des Identitätsendpunktes (Erforderlich für Openstack-Objektspeicher)", -"Timeout of HTTP requests in seconds (optional)" => "Zeitüberschreitung von HTTP-Anfragen in Sekunden (Optional)", "Share" => "Teilen", "SMB / CIFS using OC login" => "SMB / CIFS mit OC-Login", "Username as share" => "Benutzername als Freigabe", diff --git a/apps/files_external/l10n/de_DE.php b/apps/files_external/l10n/de_DE.php index d8d1d56375c..1a47495c155 100644 --- a/apps/files_external/l10n/de_DE.php +++ b/apps/files_external/l10n/de_DE.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 und Kompatible", "Access Key" => "Zugriffsschlüssel", "Secret Key" => "Sicherheitsschlüssel", -"Hostname (optional)" => "Host-Name (Optional)", -"Port (optional)" => "Port (Optional)", -"Region (optional)" => "Region (Optional)", "Enable SSL" => "SSL aktivieren", "Enable Path Style" => "Pfad-Stil aktivieren", "App key" => "App-Schlüssel", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "Client-ID", "Client secret" => "Geheime Zeichenkette des Client", "OpenStack Object Storage" => "Openstack-Objektspeicher", -"Username (required)" => "Benutzername (Erforderlich)", -"Bucket (required)" => "Bucket (Erforderlich)", "Region (optional for OpenStack Object Storage)" => "Region (Optional für Openstack-Objektspeicher)", "API Key (required for Rackspace Cloud Files)" => "API-Schlüssel (Erforderlich für Rackspace Cloud-Dateien)", "Tenantname (required for OpenStack Object Storage)" => "Mietername (Erforderlich für Openstack-Objektspeicher)", "Password (required for OpenStack Object Storage)" => "Passwort (Erforderlich für Openstack-Objektspeicher)", "Service Name (required for OpenStack Object Storage)" => "Name der Dienstleistung (Erforderlich für Openstack-Objektspeicher)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL des Identitätsendpunktes (Erforderlich für Openstack-Objektspeicher)", -"Timeout of HTTP requests in seconds (optional)" => "Zeitüberschreitung von HTTP-Anfragen in Sekunden (Optional)", "Share" => "Teilen", "SMB / CIFS using OC login" => "SMB / CIFS mit OC-Login", "Username as share" => "Benutzername als Freigabe", diff --git a/apps/files_external/l10n/el.php b/apps/files_external/l10n/el.php index eccbf79d977..852f5f6c614 100644 --- a/apps/files_external/l10n/el.php +++ b/apps/files_external/l10n/el.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 και συμμορφούμενα", "Access Key" => "Κλειδί πρόσβασης", "Secret Key" => "Μυστικό κλειδί", -"Hostname (optional)" => "Όνομα μηχανήματος (προαιρετικά)", -"Port (optional)" => "Πόρτα (προαιρετικά)", -"Region (optional)" => "Περιοχή (προαιρετικά)", "Enable SSL" => "Ενεργοποίηση SSL", "Enable Path Style" => "Ενεργοποίηση μορφής διαδρομής", "App key" => "Κλειδί εφαρμογής", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "ID πελάτη", "Client secret" => "Μυστικό πελάτη", "OpenStack Object Storage" => "Αποθήκη αντικειμένων OpenStack", -"Username (required)" => "Όνομα χρήστη (απαιτείται)", -"Bucket (required)" => "Κάδος (απαιτείται)", "Region (optional for OpenStack Object Storage)" => "Περιοχή (προαιρετικά για την αποθήκευση αντικειμένων OpenStack)", "API Key (required for Rackspace Cloud Files)" => "Κλειδί API (απαιτείται για αρχεία Rackspace Cloud)", "Tenantname (required for OpenStack Object Storage)" => "Όνομα ενοίκου (απαιτείται για την Αποθήκευση Αντικειμένων OpenStack)", "Password (required for OpenStack Object Storage)" => "Μυστικός κωδικός (απαιτείται για την αποθήκευση αντικειμένων OpenStack)", "Service Name (required for OpenStack Object Storage)" => "Όνομα υπηρεσίας (απαιτείται για την αποθήκευση αντικειμένων OpenStack)", "URL of identity endpoint (required for OpenStack Object Storage)" => "Διεύθυνση URL της ταυτότητας τελικού σημείου (απαιτείται για την αποθήκευση αντικειμένων OpenStack)", -"Timeout of HTTP requests in seconds (optional)" => "Χρονικό όριο των αιτήσεων HTTP σε δευτερόλεπτα (προαιρετικά)", "Share" => "Διαμοιράστε", "SMB / CIFS using OC login" => "SMB / CIFS χρησιμοποιώντας λογαριασμό OC", "Username as share" => "Όνομα χρήστη ως διαμοιραζόμενος φάκελος", @@ -51,6 +45,7 @@ $TRANSLATIONS = array( "Error configuring Google Drive storage" => "Σφάλμα ρυθμίζωντας αποθήκευση Google Drive ", "Personal" => "Προσωπικά", "System" => "Σύστημα", +"(group)" => "(ομάδα)", "Saved" => "Αποθηκεύτηκαν", "Note: " => "Σημείωση: ", " and " => "και", diff --git a/apps/files_external/l10n/en_GB.php b/apps/files_external/l10n/en_GB.php index c31322e4b8c..ac3ef63b47a 100644 --- a/apps/files_external/l10n/en_GB.php +++ b/apps/files_external/l10n/en_GB.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 and compliant", "Access Key" => "Access Key", "Secret Key" => "Secret Key", -"Hostname (optional)" => "Hostname (optional)", -"Port (optional)" => "Port (optional)", -"Region (optional)" => "Region (optional)", "Enable SSL" => "Enable SSL", "Enable Path Style" => "Enable Path Style", "App key" => "App key", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "Client ID", "Client secret" => "Client secret", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Username (required)", -"Bucket (required)" => "Bucket (required)", "Region (optional for OpenStack Object Storage)" => "Region (optional for OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "API Key (required for Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Tenantname (required for OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Password (required for OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Service Name (required for OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL of identity endpoint (required for OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Timeout of HTTP requests in seconds (optional)", "Share" => "Share", "SMB / CIFS using OC login" => "SMB / CIFS using OC login", "Username as share" => "Username as share", diff --git a/apps/files_external/l10n/eo.php b/apps/files_external/l10n/eo.php index 9fb399d9525..4edc0b4d1fd 100644 --- a/apps/files_external/l10n/eo.php +++ b/apps/files_external/l10n/eo.php @@ -9,9 +9,6 @@ $TRANSLATIONS = array( "Secret" => "Sekreto", "Access Key" => "Aliroklavo", "Secret Key" => "Sekretoklavo", -"Hostname (optional)" => "Gastigonomo (malnepra)", -"Port (optional)" => "Pordo (malnepra)", -"Region (optional)" => "Regiono (malnepra)", "Enable SSL" => "Kapabligi SSL-on", "App key" => "Aplikaĵoklavo", "App secret" => "Aplikaĵosekreto", @@ -23,7 +20,6 @@ $TRANSLATIONS = array( "Client ID" => "Klientidentigilo", "Client secret" => "Klientosekreto", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Uzantonomo (nepra)", "Region (optional for OpenStack Object Storage)" => "Regiono (malnepra por OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "API-klavo (nepra por Rackspace Cloud Files)", "Password (required for OpenStack Object Storage)" => "Pasvorto (nepra por OpenStack Object Storage)", diff --git a/apps/files_external/l10n/es.php b/apps/files_external/l10n/es.php index f139430b533..978635e5247 100644 --- a/apps/files_external/l10n/es.php +++ b/apps/files_external/l10n/es.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 y compatibilidad", "Access Key" => "Clave de Acceso", "Secret Key" => "Clave Secreta", -"Hostname (optional)" => "Nombre de Equipo (opcional)", -"Port (optional)" => "Puerto (opcional)", -"Region (optional)" => "Región (opcional)", "Enable SSL" => "Habilitar SSL", "Enable Path Style" => "Habilitar Estilo de Ruta", "App key" => "App principal", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "ID de Cliente", "Client secret" => "Cliente secreto", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Nombre de Usuario (requerido)", -"Bucket (required)" => "Depósito (requerido)", "Region (optional for OpenStack Object Storage)" => "Región (opcional para OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "Clave API (requerida para Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Nombre de Inquilino (requerido para OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Contraseña (requerida para OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Nombre de Servicio (requerido para OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL de identidad de punto final (requerido para OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Tiempo de espera de peticiones HTTP en segundos (opcional)", "Share" => "Compartir", "SMB / CIFS using OC login" => "SMB / CIFS usando acceso OC", "Username as share" => "Nombre de Usuario como compartir", diff --git a/apps/files_external/l10n/et_EE.php b/apps/files_external/l10n/et_EE.php index 41ca5a2fc56..243567e2255 100644 --- a/apps/files_external/l10n/et_EE.php +++ b/apps/files_external/l10n/et_EE.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 ja ühilduv", "Access Key" => "Ligipääsu võti", "Secret Key" => "Salavõti", -"Hostname (optional)" => "Hostinimi (valikuline)", -"Port (optional)" => "Post (valikuline)", -"Region (optional)" => "Regioon (valikuline)", "Enable SSL" => "SSL-i kasutamine", "Enable Path Style" => "Luba otsingtee stiilis", "App key" => "Rakenduse võti", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "Kliendi ID", "Client secret" => "Kliendi salasõna", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Kasutajanimi (kohustuslik)", -"Bucket (required)" => "Korv (kohustuslik)", "Region (optional for OpenStack Object Storage)" => "Regioon (valikuline OpenStack Object Storage puhul)", "API Key (required for Rackspace Cloud Files)" => "API võti (vajalik Rackspace Cloud Files puhul)", "Tenantname (required for OpenStack Object Storage)" => "Rendinimi (tenantname , vajalik OpenStack Object Storage puhul)", "Password (required for OpenStack Object Storage)" => "Parool (vajalik OpenStack Object Storage puhul)", "Service Name (required for OpenStack Object Storage)" => "Teenuse nimi (vajalik OpenStack Object Storage puhul)", "URL of identity endpoint (required for OpenStack Object Storage)" => "Tuvastuse URL lõpp-punkt (vajalik OpenStack Object Storage puhul)", -"Timeout of HTTP requests in seconds (optional)" => "HTTP päringu aegumine sekundites (valikuline)", "Share" => "Jaga", "SMB / CIFS using OC login" => "SMB / CIFS kasutades OC logimist", "Username as share" => "Kasutajanimi kui jagamine", diff --git a/apps/files_external/l10n/eu.php b/apps/files_external/l10n/eu.php index aa3416eee1c..71615a973a5 100644 --- a/apps/files_external/l10n/eu.php +++ b/apps/files_external/l10n/eu.php @@ -14,9 +14,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 eta baliokideak", "Access Key" => "Sarbide gakoa", "Secret Key" => "Giltza Sekretua", -"Hostname (optional)" => "Hostalari izena (hautazkoa)", -"Port (optional)" => "Portua (hautazkoa)", -"Region (optional)" => "Eskualdea (hautazkoa)", "Enable SSL" => "Gaitu SSL", "Enable Path Style" => "Gaitu Bide Estiloa", "App key" => "Aplikazio gakoa", @@ -29,14 +26,12 @@ $TRANSLATIONS = array( "Client ID" => "Bezero ID", "Client secret" => "Bezeroaren Sekretua", "OpenStack Object Storage" => "OpenStack Objektu Biltegiratzea", -"Username (required)" => "Erabiltzaile izena (beharrezkoa)", "Region (optional for OpenStack Object Storage)" => "Eskualdea (hautazkoa OpenStack Objektu Biltegiratzerako)", "API Key (required for Rackspace Cloud Files)" => "API Giltza (beharrezkoa Rackspace Cloud Filesentzako)", "Tenantname (required for OpenStack Object Storage)" => "Tenantname (beharrezkoa OpenStack Objektu Biltegiratzerko)", "Password (required for OpenStack Object Storage)" => "Pasahitza (beharrezkoa OpenStack Objektu Biltegiratzerako)", "Service Name (required for OpenStack Object Storage)" => "Zerbitzuaren Izena (beharrezkoa OpenStack Objektu Biltegiratzerako)", "URL of identity endpoint (required for OpenStack Object Storage)" => "Nortasun amaierako puntuaren URLa (beharrezkoa OpenStack Objektu Biltegiratzerako)", -"Timeout of HTTP requests in seconds (optional)" => "HTTP eskarien gehienezko denbora segundutan (hautazkoa)", "Share" => "Partekatu", "SMB / CIFS using OC login" => "SMB / CIFS saioa hasteko OC erabiliz", "Username as share" => "Erabiltzaile izena elkarbanaketa bezala", diff --git a/apps/files_external/l10n/fi_FI.php b/apps/files_external/l10n/fi_FI.php index 284c6ea6eda..706f4c8ac33 100644 --- a/apps/files_external/l10n/fi_FI.php +++ b/apps/files_external/l10n/fi_FI.php @@ -9,16 +9,11 @@ $TRANSLATIONS = array( "Amazon S3" => "Amazon S3", "Key" => "Avain", "Amazon S3 and compliant" => "Amazon S3 ja yhteensopivat", -"Hostname (optional)" => "Verkkonimi (valinnainen)", -"Port (optional)" => "Portti (valinnainen)", -"Region (optional)" => "Alue (valinnainen)", "Enable SSL" => "Käytä SSL:ää", "Host" => "Isäntä", "Username" => "Käyttäjätunnus", "Password" => "Salasana", "Secure ftps://" => "Salattu ftps://", -"Username (required)" => "Käyttäjätunnus (vaaditaan)", -"Timeout of HTTP requests in seconds (optional)" => "HTTP-pyyntöjen aikakatkaisu sekunneissa (valinnainen)", "Share" => "Jaa", "URL" => "Verkko-osoite", "Secure https://" => "Salattu https://", diff --git a/apps/files_external/l10n/fr.php b/apps/files_external/l10n/fr.php index c6c2e2127d4..b55611a0fba 100644 --- a/apps/files_external/l10n/fr.php +++ b/apps/files_external/l10n/fr.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Compatible avec Amazon S3", "Access Key" => "Clé d'accès", "Secret Key" => "Clé secrète", -"Hostname (optional)" => "Nom machine (optionnel)", -"Port (optional)" => "Port (optionnel)", -"Region (optional)" => "Région (facultatif)", "Enable SSL" => "Activer SSL", "Enable Path Style" => "Activer le style de chemin", "App key" => "Clé App", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "ID Client", "Client secret" => "Secret client", "OpenStack Object Storage" => "Object de Stockage OpenStack", -"Username (required)" => "Nom d'utilisation (requis)", -"Bucket (required)" => "Bucket (requis)", "Region (optional for OpenStack Object Storage)" => "Region (optionnel pour Object de Stockage OpenStack)", "API Key (required for Rackspace Cloud Files)" => "Clé API (requis pour Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Nom du locataire (requis pour le stockage OpenStack)", "Password (required for OpenStack Object Storage)" => "Mot de passe (requis pour OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Nom du service (requit pour le stockage OpenStack)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL du point d'accès d'identité (requis pour le stockage OpenStack)", -"Timeout of HTTP requests in seconds (optional)" => "Temps maximal de requête HTTP en seconde (facultatif)", "Share" => "Partager", "SMB / CIFS using OC login" => "SMB / CIFS utilise le nom d'utilisateur OC", "Username as share" => "Nom d'utilisateur du partage", diff --git a/apps/files_external/l10n/gl.php b/apps/files_external/l10n/gl.php index ecf66c54c66..0ee7c4d255b 100644 --- a/apps/files_external/l10n/gl.php +++ b/apps/files_external/l10n/gl.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 e compatíbeis", "Access Key" => "Clave de acceso", "Secret Key" => "Clave secreta", -"Hostname (optional)" => "Nome de máquina (opcional)", -"Port (optional)" => "Porto (opcional)", -"Region (optional)" => "Rexión (opcional)", "Enable SSL" => "Activar SSL", "Enable Path Style" => "Activar o estilo de ruta", "App key" => "Clave da API", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "ID do cliente", "Client secret" => "Secreto do cliente", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Nome de usuario (obrigatorio)", -"Bucket (required)" => "Bucket (obrigatorio)", "Region (optional for OpenStack Object Storage)" => "Rexión (opcional para OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "Clave da API (obrigatoria para Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Nome do inquilino (obrigatorio para OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Contrasinal (obrigatorio para OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Nome do servizo (obrigatorio para OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL do punto final da identidade (obrigatorio para OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Tempo de espera de peticións HTTP en segundos (opcional)", "Share" => "Compartir", "SMB / CIFS using OC login" => "SMB / CIFS usando acceso OC", "Username as share" => "Nome de usuario como compartición", diff --git a/apps/files_external/l10n/id.php b/apps/files_external/l10n/id.php index f5afdaaabb0..3f54f55cea1 100644 --- a/apps/files_external/l10n/id.php +++ b/apps/files_external/l10n/id.php @@ -5,15 +5,11 @@ $TRANSLATIONS = array( "Local" => "Lokal", "Location" => "lokasi", "Amazon S3" => "Amazon S3", -"Hostname (optional)" => "Hostname (tambahan)", -"Port (optional)" => "Port (tambahan)", -"Region (optional)" => "Wilayah (tambahan)", "Enable SSL" => "Aktifkan SSL", "Host" => "Host", "Username" => "Nama Pengguna", "Password" => "Sandi", "Root" => "Root", -"Username (required)" => "Nama pengguna (dibutuhkan)", "Share" => "Bagikan", "URL" => "tautan", "Access granted" => "Akses diberikan", diff --git a/apps/files_external/l10n/it.php b/apps/files_external/l10n/it.php index 7c2398f4b64..1b5d2f46116 100644 --- a/apps/files_external/l10n/it.php +++ b/apps/files_external/l10n/it.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 e conformi", "Access Key" => "Chiave di accesso", "Secret Key" => "Chiave segreta", -"Hostname (optional)" => "Nome host (opzionale)", -"Port (optional)" => "Porta (opzionale)", -"Region (optional)" => "Regione (opzionale)", "Enable SSL" => "Abilita SSL", "Enable Path Style" => "Abilita stile percorsi", "App key" => "Chiave applicazione", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "ID client", "Client secret" => "Segreto del client", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Nome utente (richiesto)", -"Bucket (required)" => "Bucket (richiesto)", "Region (optional for OpenStack Object Storage)" => "Regione (facoltativa per OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "Chiave API (richiesta per Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Nome tenant (richiesto per OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Password (richiesta per OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Nome servizio (richiesta per OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL del servizio di identità (richiesto per OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Tempo massimo in secondi delle richieste HTTP (opzionale)", "Share" => "Condividi", "SMB / CIFS using OC login" => "SMB / CIFS utilizzando le credenziali di OC", "Username as share" => "Nome utente come condivisione", diff --git a/apps/files_external/l10n/ja.php b/apps/files_external/l10n/ja.php index 12b5894eb21..ce4b336facb 100644 --- a/apps/files_external/l10n/ja.php +++ b/apps/files_external/l10n/ja.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 と互換ストレージ", "Access Key" => "アクセスキー", "Secret Key" => "シークレットキー", -"Hostname (optional)" => "ホスト名 (オプション)", -"Port (optional)" => "ポート (オプション)", -"Region (optional)" => "リージョン (オプション)", "Enable SSL" => "SSLを有効", "Enable Path Style" => "パス形式を有効", "App key" => "アプリキー", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "クライアントID", "Client secret" => "クライアント秘密キー", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "ユーザー名 (必須)", -"Bucket (required)" => "バケット (必須)", "Region (optional for OpenStack Object Storage)" => "リージョン (OpenStack Object Storage用のオプション)", "API Key (required for Rackspace Cloud Files)" => "APIキー (Rackspace Cloud Filesに必須)", "Tenantname (required for OpenStack Object Storage)" => "テナント名 (OpenStack Object Storage用に必要)", "Password (required for OpenStack Object Storage)" => "パスワード (OpenStack Object Storage用に必要)", "Service Name (required for OpenStack Object Storage)" => "サービス名 (OpenStack Object Storage用に必要)", "URL of identity endpoint (required for OpenStack Object Storage)" => "識別用エンドポイントURL (OpenStack Object Storage用に必要)", -"Timeout of HTTP requests in seconds (optional)" => "HTTPリクエストのタイムアウト秒数 (オプション)", "Share" => "共有", "SMB / CIFS using OC login" => "ownCloudログインで SMB/CIFSを使用", "Username as share" => "共有名", diff --git a/apps/files_external/l10n/nb_NO.php b/apps/files_external/l10n/nb_NO.php index 8b6bedebc97..024f6c46ca1 100644 --- a/apps/files_external/l10n/nb_NO.php +++ b/apps/files_external/l10n/nb_NO.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 og tilsvarende", "Access Key" => "Access Key", "Secret Key" => "Secret Key", -"Hostname (optional)" => "Servernavn (ikke påkrevd)", -"Port (optional)" => "Port (ikke påkrevd)", -"Region (optional)" => "Region (ikke påkrevd)", "Enable SSL" => "Aktiver SSL", "Enable Path Style" => "Aktiver Path Style", "App key" => "App key", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "Client ID", "Client secret" => "Client secret", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Brukernavn (påkrevet)", -"Bucket (required)" => "Bucket (påkrevet)", "Region (optional for OpenStack Object Storage)" => "Region (ikke påkrevet for OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "API Key (påkrevet for Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Tenantname (påkrevet for OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Passord (påkrevet for OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Tjenestenavn (påkrevet for OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL for identity endpoint (påkrevet for OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Tidsavbrudd for HTTP-spørringer i sekunder (ikke påkrevet)", "Share" => "Del", "SMB / CIFS using OC login" => "SMB / CIFS med OC-pålogging", "Username as share" => "Brukernavn som share", diff --git a/apps/files_external/l10n/nl.php b/apps/files_external/l10n/nl.php index 961370d15fa..f66e9f1c292 100644 --- a/apps/files_external/l10n/nl.php +++ b/apps/files_external/l10n/nl.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 en overeenkomstig", "Access Key" => "Access Key", "Secret Key" => "Secret Key", -"Hostname (optional)" => "Hostname (optioneel)", -"Port (optional)" => "Poort (optioneel)", -"Region (optional)" => "Regio (optioneel)", "Enable SSL" => "Activeren SSL", "Enable Path Style" => "Activeren pad stijl", "App key" => "App key", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "Client ID", "Client secret" => "Client secret", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Gebruikersnaam (verplicht)", -"Bucket (required)" => "Bucket (verplicht)", "Region (optional for OpenStack Object Storage)" => "Regio (optioneel voor OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "API Key (verplicht voor Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Tenantname (Verplicht voor OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Wachtwoord (verplicht voor OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Service Name (verplicht voor OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL van identity endpoint (verplicht voor OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Time-out van HTTP aanvragen in seconden (optioneel)", "Share" => "Share", "SMB / CIFS using OC login" => "SMB / CIFS via OC inlog", "Username as share" => "Gebruikersnaam als share", diff --git a/apps/files_external/l10n/pl.php b/apps/files_external/l10n/pl.php index 31a28389ce0..99f4ec2d39b 100644 --- a/apps/files_external/l10n/pl.php +++ b/apps/files_external/l10n/pl.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 i zgodne", "Access Key" => "Klucz dostępu", "Secret Key" => "Klucz hasła", -"Hostname (optional)" => "Nazwa hosta (opcjonalnie)", -"Port (optional)" => "Port (opcjonalnie)", -"Region (optional)" => "Region (opcjonalnie)", "Enable SSL" => "Włącz SSL", "Enable Path Style" => "Włącz styl ścieżki", "App key" => "Klucz aplikacji", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "ID klienta", "Client secret" => "Hasło klienta", "OpenStack Object Storage" => "Magazyn obiektów OpenStack", -"Username (required)" => "Użytkownik (wymagany)", -"Bucket (required)" => "Kosz (wymagany)", "Region (optional for OpenStack Object Storage)" => "Region (opcjonalny dla magazynu obiektów OpenStack)", "API Key (required for Rackspace Cloud Files)" => "Klucz API (wymagany dla plików Rackspace Cloud)", "Tenantname (required for OpenStack Object Storage)" => "Nazwa najemcy (wymagana dla magazynu obiektów OpenStack)", "Password (required for OpenStack Object Storage)" => "Hasło (wymagane dla magazynu obiektów OpenStack)", "Service Name (required for OpenStack Object Storage)" => "Nazwa usługi (wymagana dla magazynu obiektów OpenStack)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL lub zakończenie jednostki (wymagane dla magazynu obiektów OpenStack)", -"Timeout of HTTP requests in seconds (optional)" => "Czas wygaśnięcia żądań HTTP w sekundach (opcjonalne)", "Share" => "Udostępnij", "SMB / CIFS using OC login" => "SMB / CIFS przy użyciu loginu OC", "Username as share" => "Użytkownik jako zasób", diff --git a/apps/files_external/l10n/pt_BR.php b/apps/files_external/l10n/pt_BR.php index e45f94628de..8a269218a6b 100644 --- a/apps/files_external/l10n/pt_BR.php +++ b/apps/files_external/l10n/pt_BR.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 e compatível", "Access Key" => "Chave de Acesso", "Secret Key" => "Chave Secreta", -"Hostname (optional)" => "Nome do Host (opcional)", -"Port (optional)" => "Porta (opcional)", -"Region (optional)" => "Região (opcional)", "Enable SSL" => "Habilitar SSL", "Enable Path Style" => "Habilitar Estilo do Caminho", "App key" => "Chave do Aplicativo", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "ID do Cliente", "Client secret" => "Segredo do cliente", "OpenStack Object Storage" => "Armazenamento de Objetos OpenStack", -"Username (required)" => "Nome do Usuário (requerido)", -"Bucket (required)" => "Cesta (requerido)", "Region (optional for OpenStack Object Storage)" => "Região (opcional para armazenamento de objetos OpenStack)", "API Key (required for Rackspace Cloud Files)" => "Chave API (necessário para Rackspace Cloud File)", "Tenantname (required for OpenStack Object Storage)" => "Nome Tenant (necessário para armazenamento de objetos OpenStack)", "Password (required for OpenStack Object Storage)" => "Senha (necessário para armazenamento de objetos OpenStack)", "Service Name (required for OpenStack Object Storage)" => "Nome do Serviço (necessário para armazenamento de objetos OpenStack)", "URL of identity endpoint (required for OpenStack Object Storage)" => "Ponto final de identidade da URL (obrigatório para armazenamento de objetos OpenStack)", -"Timeout of HTTP requests in seconds (optional)" => "Tempo limite de solicitações HTTP em segundos (opcional)", "Share" => "Compartilhar", "SMB / CIFS using OC login" => "SMB / CIFS usando OC login", "Username as share" => "Nome de usuário como compartilhado", diff --git a/apps/files_external/l10n/pt_PT.php b/apps/files_external/l10n/pt_PT.php index b7e480349ff..a95439fbfed 100644 --- a/apps/files_external/l10n/pt_PT.php +++ b/apps/files_external/l10n/pt_PT.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 e compatível", "Access Key" => "Chave de acesso", "Secret Key" => "Chave Secreta", -"Hostname (optional)" => "Nome do Hospedeiro (opcional)", -"Port (optional)" => "Porta (opcional)", -"Region (optional)" => "Região (opcional)", "Enable SSL" => "Activar SSL", "Enable Path Style" => "Ativar Estilo do Caminho", "App key" => "Chave da aplicação", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "ID Cliente", "Client secret" => "Segredo do cliente", "OpenStack Object Storage" => "Armazenamento de objetos OpenStack", -"Username (required)" => "Utilizador (requerido)", -"Bucket (required)" => "Bucket (necessário)", "Region (optional for OpenStack Object Storage)" => "Região (opcional para OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "Chave API (necessário para Rackspace Cloud File)", "Tenantname (required for OpenStack Object Storage)" => "Nome do Serviço (necessário para OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Senha (necessária para OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Nome do Serviço (necessário para OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "Nome do Serviço (necessário para OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Timeout de solicitações HTTP em segundos (opcional)", "Share" => "Partilhar", "SMB / CIFS using OC login" => "SMB / CIFS utilizando o início de sessão OC", "Username as share" => "Utilizar nome de utilizador como partilha", diff --git a/apps/files_external/l10n/ro.php b/apps/files_external/l10n/ro.php index 0f292c1bbfb..130187dd585 100644 --- a/apps/files_external/l10n/ro.php +++ b/apps/files_external/l10n/ro.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "External storage" => "Stocare externă", "Location" => "Locație", "Amazon S3" => "Amazon S3", -"Region (optional)" => "Regiune", "Host" => "Gazdă", "Username" => "Nume utilizator", "Password" => "Parolă", diff --git a/apps/files_external/l10n/ru.php b/apps/files_external/l10n/ru.php index 4e09ff854d4..76c0011c473 100644 --- a/apps/files_external/l10n/ru.php +++ b/apps/files_external/l10n/ru.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 и совместимый", "Access Key" => "Ключ доступа", "Secret Key" => "Секретный ключ", -"Hostname (optional)" => "Хост (опц.)", -"Port (optional)" => "Порт (опц.)", -"Region (optional)" => "Регион (опц.)", "Enable SSL" => "Включить SSL", "Enable Path Style" => "Включить стиль пути", "App key" => "Ключ приложения", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "Идентификатор клиента", "Client secret" => "Клиентский ключ ", "OpenStack Object Storage" => "Хранилище объектов OpenStack", -"Username (required)" => "Имя пользователя (обяз.)", -"Bucket (required)" => "Bucket (обяз.)", "Region (optional for OpenStack Object Storage)" => "Регион (необяз. для Хранилища объектов OpenStack)", "API Key (required for Rackspace Cloud Files)" => "Ключ API (обяз. для Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Имя арендатора (обяз. для Хранилища объектов OpenStack)", "Password (required for OpenStack Object Storage)" => "Пароль (обяз. для Хранилища объектов OpenStack)", "Service Name (required for OpenStack Object Storage)" => "Имя Службы (обяз. для Хранилища объектов OpenStack)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL для удостоверения конечной точки (обяз. для Хранилища объектов OpenStack)", -"Timeout of HTTP requests in seconds (optional)" => "Тайм-аут HTTP запросов в секундах (опционально)", "Share" => "Открыть доступ", "SMB / CIFS using OC login" => "SMB / CIFS с ипользованием логина OC", "Username as share" => "Имя для открытого доступа", diff --git a/apps/files_external/l10n/sk_SK.php b/apps/files_external/l10n/sk_SK.php index 3aa9711ae90..2bbcf511a9b 100644 --- a/apps/files_external/l10n/sk_SK.php +++ b/apps/files_external/l10n/sk_SK.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 a kompatibilné", "Access Key" => "Prístupový kľúč", "Secret Key" => "Tajný kľúč", -"Hostname (optional)" => "Hostname (voliteľný)", -"Port (optional)" => "Port (voliteľný)", -"Region (optional)" => "Región (voliteľný)", "Enable SSL" => "Povoliť SSL", "Enable Path Style" => "Povoliť štýl cesty", "App key" => "Kľúč aplikácie", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "Client ID", "Client secret" => "Heslo klienta", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Používateľské meno (povinné)", -"Bucket (required)" => "Sektor (povinné)", "Region (optional for OpenStack Object Storage)" => "Región (voliteľné pre OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "API Key (požadované pre Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Tenantname (požadované pre OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Heslo (požadované pre OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Meno služby (požadované pre OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL of identity endpoint (požadované pre OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Vypršanie HTTP požadiavkiek v sekundách (voliteľné)", "Share" => "Zdieľať", "SMB / CIFS using OC login" => "SMB / CIFS s použitím OC prihlásenia", "Username as share" => "Používateľské meno ako zdieľaný priečinok", diff --git a/apps/files_external/l10n/sl.php b/apps/files_external/l10n/sl.php index f29999b6c10..d8b9dda0e0c 100644 --- a/apps/files_external/l10n/sl.php +++ b/apps/files_external/l10n/sl.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 in podobno", "Access Key" => "Ključ za dostop", "Secret Key" => "Skrivni ključ", -"Hostname (optional)" => "Ime gostitelja (izbirno)", -"Port (optional)" => "Vrata (izbirno)", -"Region (optional)" => "Območje (izbirno)", "Enable SSL" => "Omogoči SSL", "Enable Path Style" => "Omogoči slog poti", "App key" => "Programski ključ", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "ID odjemalca", "Client secret" => "Skrivni ključ odjemalca", "OpenStack Object Storage" => "Shramba predmeta OpenStack", -"Username (required)" => "Uporabniško ime (zahtevano)", -"Bucket (required)" => "Pomnilniško vedro (zahtevano)", "Region (optional for OpenStack Object Storage)" => "Območje (zahtevano za shrambo predmeta OpenStack)", "API Key (required for Rackspace Cloud Files)" => "Ključ programskega vmesnika (API) (zahtevan je za datoteke v oblaku Rackspace)", "Tenantname (required for OpenStack Object Storage)" => "Ime uporabnika (zahtevano za shrambo predmeta OpenStack)", "Password (required for OpenStack Object Storage)" => "Geslo (zahtevano za shrambo predmeta OpenStack)", "Service Name (required for OpenStack Object Storage)" => "Ime storitve (zahtevano za shrambo predmeta OpenStack)", "URL of identity endpoint (required for OpenStack Object Storage)" => "Naslov URL končne točke uporabnika (zahtevano za shrambo predmeta OpenStack)", -"Timeout of HTTP requests in seconds (optional)" => "Časovni zamik zahtev HTTP v sekundah (izbirno)", "Share" => "Souporaba", "SMB / CIFS using OC login" => "SMB / CIFS z uporabo prijave OC", "Username as share" => "Uporabniško ime za souporabo", diff --git a/apps/files_external/l10n/sv.php b/apps/files_external/l10n/sv.php index adbf774be3a..deb78cb3749 100644 --- a/apps/files_external/l10n/sv.php +++ b/apps/files_external/l10n/sv.php @@ -13,9 +13,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 och compliant", "Access Key" => "Accessnyckel", "Secret Key" => "Hemlig nyckel", -"Hostname (optional)" => "Värdnamn (valfritt)", -"Port (optional)" => "Port (valfritt)", -"Region (optional)" => "Region (valfritt)", "Enable SSL" => "Aktivera SSL", "Enable Path Style" => "Aktivera Path Style", "App key" => "App-nyckel", @@ -28,15 +25,12 @@ $TRANSLATIONS = array( "Client ID" => "Klient ID", "Client secret" => "klient secret", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Användarnamn (måste anges)", -"Bucket (required)" => "Bucket (krävs)", "Region (optional for OpenStack Object Storage)" => "Region (valfritt för OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "API-nyckel (krävs för Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Tenantname (krävs för OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Lösenord (krävs för OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Tjänstens namn (krävs för OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL för identitetens slutpunkt (krävs för OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Timeout för HTTP-förfrågningar i sekunder (tillval)", "Share" => "Dela", "SMB / CIFS using OC login" => "SMB / CIFS använder OC inloggning", "Username as share" => "Användarnamn till utdelning", diff --git a/apps/files_external/l10n/tr.php b/apps/files_external/l10n/tr.php index 9655566be85..705e812208f 100644 --- a/apps/files_external/l10n/tr.php +++ b/apps/files_external/l10n/tr.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 ve uyumlu olanlar", "Access Key" => "Erişim Anahtarı", "Secret Key" => "Gizli Anahtar", -"Hostname (optional)" => "Makine Adı (isteğe bağlı)", -"Port (optional)" => "Bağl. Nok. (isteğe bağlı)", -"Region (optional)" => "Bölge (isteğe bağlı)", "Enable SSL" => "SSL'yi Etkinleştir", "Enable Path Style" => "Yol Biçemini Etkinleştir", "App key" => "Uyg. anahtarı", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "İstemci kimliği", "Client secret" => "İstemci parolası", "OpenStack Object Storage" => "OpenStack Nesne Depolama", -"Username (required)" => "Kullanıcı adı (gerekli)", -"Bucket (required)" => "Bucket (gerekli)", "Region (optional for OpenStack Object Storage)" => "Bölge (OpenStack Nesne Depolaması için isteğe bağlı)", "API Key (required for Rackspace Cloud Files)" => "API Anahtarı (Rackspace Bulut Dosyaları için gerekli)", "Tenantname (required for OpenStack Object Storage)" => "Kiracı Adı (OpenStack Nesne Depolaması için gerekli)", "Password (required for OpenStack Object Storage)" => "Parola (OpenStack Nesne Depolaması için gerekli)", "Service Name (required for OpenStack Object Storage)" => "Hizmet Adı (OpenStack Nesne Depolaması için gerekli)", "URL of identity endpoint (required for OpenStack Object Storage)" => "Kimlik uç nokta adresi (OpenStack Nesne Depolaması için gerekli)", -"Timeout of HTTP requests in seconds (optional)" => "Saniye cinsinden HTTP istek zaman aşımı (isteğe bağlı)", "Share" => "Paylaş", "SMB / CIFS using OC login" => "OC oturumu kullanarak SMB / CIFS", "Username as share" => "Paylaşım olarak kullanıcı adı", diff --git a/apps/files_external/l10n/zh_CN.php b/apps/files_external/l10n/zh_CN.php index 275c375ebf0..9b576691363 100644 --- a/apps/files_external/l10n/zh_CN.php +++ b/apps/files_external/l10n/zh_CN.php @@ -10,9 +10,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 和兼容协议", "Access Key" => "访问密钥", "Secret Key" => "秘钥", -"Hostname (optional)" => "域名 (可选)", -"Port (optional)" => "端口 (可选)", -"Region (optional)" => "区域 (optional)", "Enable SSL" => "启用 SSL", "Enable Path Style" => "启用 Path Style", "Host" => "主机", @@ -21,9 +18,6 @@ $TRANSLATIONS = array( "Root" => "根路径", "Secure ftps://" => "安全 ftps://", "OpenStack Object Storage" => "OpenStack 对象存储", -"Username (required)" => "用户名 (必须)", -"Bucket (required)" => "Bucket (必须)", -"Timeout of HTTP requests in seconds (optional)" => "HTTP 请求超时(秒) (可选)", "Share" => "共享", "SMB / CIFS using OC login" => "SMB / CIFS 使用 OC 登录信息", "URL" => "URL", diff --git a/apps/files_external/l10n/zh_TW.php b/apps/files_external/l10n/zh_TW.php index 1c3bebb7f80..66523be7fdd 100644 --- a/apps/files_external/l10n/zh_TW.php +++ b/apps/files_external/l10n/zh_TW.php @@ -8,14 +8,10 @@ $TRANSLATIONS = array( "Key" => "鑰", "Secret" => "密", "Secret Key" => "密鑰", -"Hostname (optional)" => "主機名稱 (選填)", -"Port (optional)" => "埠號 (選填)", -"Region (optional)" => "區域 (選填)", "Enable SSL" => "啟用 SSL", "Host" => "主機", "Username" => "使用者名稱:", "Password" => "密碼", -"Username (required)" => "使用者名稱 (必填)", "Share" => "分享", "URL" => "URL", "Access granted" => "允許存取", diff --git a/apps/files_sharing/l10n/cs_CZ.php b/apps/files_sharing/l10n/cs_CZ.php index b4f52dbef7e..45019e34708 100644 --- a/apps/files_sharing/l10n/cs_CZ.php +++ b/apps/files_sharing/l10n/cs_CZ.php @@ -8,13 +8,13 @@ $TRANSLATIONS = array( "Shared by link" => "Sdíleno pomocí odkazu", "No files have been shared with you yet." => "Zatím s vámi nikdo žádné soubory nesdílel.", "You haven't shared any files yet." => "Zatím jste nesdíleli žádné soubory.", -"You haven't shared any files by link yet." => "Zatím jste nesdíleli pomocí odkazu žádný soubor.", +"You haven't shared any files by link yet." => "Zatím jste nesdíleli pomocí odkazu žádné soubory.", "Do you want to add the remote share {name} from {owner}@{remote}?" => "Chcete přidat vzdálené úložiště {name} uživatele {owner}@{remote}?", "Remote share" => "Vzdálené úložiště", "Remote share password" => "Heslo ke vzdálenému úložišti", "Cancel" => "Zrušit", "Add remote share" => "Přidat vzdálené úložiště", -"No ownCloud installation found at {remote}" => "Nebyla nalezen žádný funkční ownCloud na {remote}", +"No ownCloud installation found at {remote}" => "Nebyla nalezena instalace ownCloud na {remote}", "Invalid ownCloud url" => "Neplatná ownCloud url", "Shared by" => "Sdílí", "This share is password-protected" => "Toto sdílení je chráněno heslem", diff --git a/apps/files_trashbin/l10n/az.php b/apps/files_trashbin/l10n/az.php index 60a214eea59..9d07ff60499 100644 --- a/apps/files_trashbin/l10n/az.php +++ b/apps/files_trashbin/l10n/az.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "Restore" => "Geri qaytar", "Error" => "Səhv", "restored" => "geriqaytarılıb", +"Nothing in here. Your trash bin is empty!" => "Burda heçnə yoxdur. Sizin zibil qutusu boşdur!", "Name" => "Ad", "Deleted" => "Silinib", "Delete" => "Sil" diff --git a/apps/user_ldap/l10n/cs_CZ.php b/apps/user_ldap/l10n/cs_CZ.php index 3be197a1b26..e3b76799fb1 100644 --- a/apps/user_ldap/l10n/cs_CZ.php +++ b/apps/user_ldap/l10n/cs_CZ.php @@ -17,9 +17,9 @@ $TRANSLATIONS = array( "mappings cleared" => "mapování zrušeno", "Success" => "Úspěch", "Error" => "Chyba", -"Please specify a Base DN" => "Uveď prosím základní DN", -"Could not determine Base DN" => "Nelze určit základní DN", -"Please specify the port" => "Prosím zadej port", +"Please specify a Base DN" => "Uveďte prosím Base DN", +"Could not determine Base DN" => "Nelze určit Base DN", +"Please specify the port" => "Prosím zadejte port", "Configuration OK" => "Konfigurace v pořádku", "Configuration incorrect" => "Nesprávná konfigurace", "Configuration incomplete" => "Nekompletní konfigurace", @@ -103,6 +103,8 @@ $TRANSLATIONS = array( "Group-Member association" => "Asociace člena skupiny", "Nested Groups" => "Vnořené skupiny", "When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "Pokud zapnuto, je možno používat skupiny, které obsahují jiné skupiny. (Funguje pouze pokud atribut člena skupiny obsahuje DN.)", +"Paging chunksize" => "Velikost bloku stránkování", +"Chunksize used for paged LDAP searches that may return bulky results like user or group enumeration. (Setting it 0 disables paged LDAP searches in those situations.)" => "Velikost bloku použitá pro stránkování vyhledávání v LDAP, které může vracet objemné výsledky jako třeba výčet uživatelů či skupin. (Nastavení na 0 zakáže stránkovaná vyhledávání pro tyto situace.)", "Special Attributes" => "Speciální atributy", "Quota Field" => "Pole pro kvótu", "Quota Default" => "Výchozí kvóta", diff --git a/core/l10n/az.php b/core/l10n/az.php index d977225bd11..a214bb0334b 100644 --- a/core/l10n/az.php +++ b/core/l10n/az.php @@ -16,6 +16,11 @@ $TRANSLATIONS = array( "Ok" => "Oldu", "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "Dayandır", +"Very weak password" => "Çox asan şifrə", +"Weak password" => "Asan şifrə", +"So-so password" => "Elə-belə şifrə", +"Good password" => "Yaxşı şifrə", +"Strong password" => "Çətin şifrə", "Share" => "Yayımla", "Error" => "Səhv", "Send" => "Göndər", @@ -23,13 +28,16 @@ $TRANSLATIONS = array( "can share" => "yayımlaya bilərsiniz", "delete" => "sil", "Email sent" => "Məktub göndərildi", +"Warning" => "Xəbərdarlıq", "Delete" => "Sil", "Add" => "Əlavə etmək", "Username" => "İstifadəçi adı", "Reset" => "Sıfırla", +"Personal" => "Şəxsi", "Users" => "İstifadəçilər", "Admin" => "İnzibatçı", "Help" => "Kömək", +"Security Warning" => "Təhlükəsizlik xəbərdarlığı", "Password" => "Şifrə", "You are accessing the server from an untrusted domain." => "Siz serverə inamsız domain-dən girməyə çalışırsız.", "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domain\" setting in config/config.php. An example configuration is provided in config/config.sample.php." => "Xahiş olunur inzibatçı ilə əlaqə saxlayasınız. Eger siz bu xidmətin inzibatçısısınizsa, \"trusted_domain\" configini config/config.php faylinda düzgün qeyd edin. Config nüsxəsi config/config.sample.php faylında qeyd edilmişdir." diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 0a295bc0072..04861c9dbc4 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -181,8 +181,8 @@ $TRANSLATIONS = array( "Thank you for your patience." => "Děkuji za trpělivost.", "You are accessing the server from an untrusted domain." => "Přistupujete na server z nedůvěryhodné domény.", "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domain\" setting in config/config.php. An example configuration is provided in config/config.sample.php." => "Kontaktujte prosím správce. Pokud jste správce této instalace, nastavte \"trusted_domain\" v souboru config/config.php. Příklad konfigurace najdete v souboru config/config.sample.php.", -"Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." => "V závislosti na vaší konfiguraci vám může být, jako administrátorovi, umožněno použití tlačítka níže a označit tuto doménu jako důvěryhodnou.", -"Add \"%s\" as trusted domain" => "Přidat \"%s\" jako důvěryhodnou doménu.", +"Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." => "V závislosti na vaší konfiguraci vám může být, jako administrátorovi, umožněno použití tlačítka níže k označení této domény jako důvěryhodné.", +"Add \"%s\" as trusted domain" => "Přidat \"%s\" jako důvěryhodnou doménu", "%s will be updated to version %s." => "%s bude aktualizován na verzi %s.", "The following apps will be disabled:" => "Následující aplikace budou zakázány:", "The theme %s has been disabled." => "Vzhled %s byl zakázán.", diff --git a/l10n/ach/files_external.po b/l10n/ach/files_external.po index e76b517c321..35e6470b3fa 100644 --- a/l10n/ach/files_external.po +++ b/l10n/ach/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/ady/files_external.po b/l10n/ady/files_external.po index 8aaa4d34e36..373989099ad 100644 --- a/l10n/ady/files_external.po +++ b/l10n/ady/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 346d6f27c2f..ca77b75c96f 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/files_external.po b/l10n/af_ZA/files_external.po index b67b2a07fd5..446757f34d2 100644 --- a/l10n/af_ZA/files_external.po +++ b/l10n/af_ZA/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Gebruikersnaam" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "Persoonlik" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/af_ZA/files_sharing.po b/l10n/af_ZA/files_sharing.po index 916dad9aca3..1cfdf756c30 100644 --- a/l10n/af_ZA/files_sharing.po +++ b/l10n/af_ZA/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index 5f77004f86d..1ecbc3d1cff 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/user_ldap.po b/l10n/af_ZA/user_ldap.po index b528a9e6fcb..dd896431984 100644 --- a/l10n/af_ZA/user_ldap.po +++ b/l10n/af_ZA/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-06-10 01:54-0400\n" -"PO-Revision-Date: 2014-06-10 05:01+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,66 +102,66 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:83 lib/wizard.php:97 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:130 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:825 lib/wizard.php:837 -msgid "Invalid Host" +#: lib/wizard.php:392 lib/wizard.php:1128 +msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:1025 -msgid "Could not find the desired feature" +#: lib/wizard.php:935 lib/wizard.php:947 +msgid "Invalid Host" msgstr "" #: settings.php:52 @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Wagwoord" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/ak/files_external.po b/l10n/ak/files_external.po index 0dac88a1890..f7cf06c2908 100644 --- a/l10n/ak/files_external.po +++ b/l10n/ak/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/am_ET/files_external.po b/l10n/am_ET/files_external.po index bf813ea50c6..96cda7ffa25 100644 --- a/l10n/am_ET/files_external.po +++ b/l10n/am_ET/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 8e0c706c0c6..5f1ff114ec5 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index e4e02e8b4ec..38fa5c1d07b 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,15 +85,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "المضيف" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "إسم المستخدم" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -232,15 +224,15 @@ msgstr "شخصي" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "حفظ" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index 306c701514b..9f9c89dc79a 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -30,15 +30,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index cbf6ddada4c..af22e72bd7b 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index c68660d30ae..b1879ebe354 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -50,11 +50,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -103,47 +103,47 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "إختر مجموعة" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -154,7 +154,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -165,11 +165,11 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -261,60 +261,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "المضيف" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "المنفذ" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "كلمة المرور" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/ast/core.po b/l10n/ast/core.po index d1a4a7624d2..a2dd38adbe4 100644 --- a/l10n/ast/core.po +++ b/l10n/ast/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ast/files_external.po b/l10n/ast/files_external.po index ba6963106b8..623777ff9d1 100644 --- a/l10n/ast/files_external.po +++ b/l10n/ast/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -69,7 +69,7 @@ msgstr "Clave" msgid "Secret" msgstr "Secretu" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Depósitu" @@ -86,16 +86,16 @@ msgid "Secret Key" msgstr "Clave Secreta" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Nome d'equipu (opcional)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Puertu (opcional)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Rexón (opcional)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -118,8 +118,8 @@ msgstr "App secreta" msgid "Host" msgstr "Sirvidor" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nome d'usuariu" @@ -149,14 +149,6 @@ msgstr "Veceru secretu" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Nome d'usuariu (necesariu)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Depósitu (necesariu)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Rexón (opcional pa OpenStack Object Storage)" @@ -182,8 +174,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL d'identidá de puntu final (necesariu pa OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Tiempu d'espera de peticiones HTTP en segundos (opcional)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -233,15 +225,15 @@ msgstr "Personal" msgid "System" msgstr "Sistema" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Guardáu" diff --git a/l10n/ast/files_sharing.po b/l10n/ast/files_sharing.po index 8f83df371ca..2ae04d45bc3 100644 --- a/l10n/ast/files_sharing.po +++ b/l10n/ast/files_sharing.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-27 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 22:21+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Ḷḷumex03 \n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ast/settings.po b/l10n/ast/settings.po index 22dcbef15e2..b9225b7fc42 100644 --- a/l10n/ast/settings.po +++ b/l10n/ast/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ast/user_ldap.po b/l10n/ast/user_ldap.po index 11c722acb6a..00d56acabe7 100644 --- a/l10n/ast/user_ldap.po +++ b/l10n/ast/user_ldap.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Iñigo Varela \n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/az/core.po b/l10n/az/core.po index 53d34dafd1a..605948849db 100644 --- a/l10n/az/core.po +++ b/l10n/az/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -278,23 +278,23 @@ msgstr "" #: js/setup.js:96 msgid "Very weak password" -msgstr "" +msgstr "Çox asan şifrə" #: js/setup.js:97 msgid "Weak password" -msgstr "" +msgstr "Asan şifrə" #: js/setup.js:98 msgid "So-so password" -msgstr "" +msgstr "Elə-belə şifrə" #: js/setup.js:99 msgid "Good password" -msgstr "" +msgstr "Yaxşı şifrə" #: js/setup.js:100 msgid "Strong password" -msgstr "" +msgstr "Çətin şifrə" #: js/share.js:129 js/share.js:251 msgid "Shared" @@ -440,7 +440,7 @@ msgstr "Məktub göndərildi" #: js/share.js:1087 msgid "Warning" -msgstr "" +msgstr "Xəbərdarlıq" #: js/tags.js:8 msgid "The object type is not specified." @@ -557,7 +557,7 @@ msgstr "" #: strings.php:5 msgid "Personal" -msgstr "" +msgstr "Şəxsi" #: strings.php:6 msgid "Users" @@ -634,7 +634,7 @@ msgstr "" #: templates/installation.php:25 templates/installation.php:32 #: templates/installation.php:39 msgid "Security Warning" -msgstr "" +msgstr "Təhlükəsizlik xəbərdarlığı" #: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" diff --git a/l10n/az/files_external.po b/l10n/az/files_external.po index 80459005f2a..65f6fe5c2a7 100644 --- a/l10n/az/files_external.po +++ b/l10n/az/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ msgstr "Açar" msgid "Secret" msgstr "Gizli" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,15 +85,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Avadanlığın adı(məcburi deyil)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "Şəbəkədə ünvan" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "İstifadəçi adı" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -198,7 +190,7 @@ msgstr "" #: appinfo/app.php:151 appinfo/app.php:162 msgid "URL" -msgstr "" +msgstr "URL" #: appinfo/app.php:155 appinfo/app.php:166 msgid "Secure https://" @@ -226,21 +218,21 @@ msgstr "" #: js/mountsfilelist.js:34 msgid "Personal" -msgstr "" +msgstr "Şəxsi" #: js/mountsfilelist.js:36 msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Saxlanıldı" diff --git a/l10n/az/files_sharing.po b/l10n/az/files_sharing.po index 322fa08474b..df4f05337c2 100644 --- a/l10n/az/files_sharing.po +++ b/l10n/az/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-24 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 10:11+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: unixidzero \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/az/files_trashbin.po b/l10n/az/files_trashbin.po index b21d6c2dd24..3b163624aab 100644 --- a/l10n/az/files_trashbin.po +++ b/l10n/az/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 06:40+0000\n" "Last-Translator: unixidzero \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -46,7 +46,7 @@ msgstr "geriqaytarılıb" #: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" -msgstr "" +msgstr "Burda heçnə yoxdur. Sizin zibil qutusu boşdur!" #: templates/index.php:18 msgid "Name" diff --git a/l10n/az/lib.po b/l10n/az/lib.po index 96159e03315..49be218d5e6 100644 --- a/l10n/az/lib.po +++ b/l10n/az/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 07:40+0000\n" "Last-Translator: unixidzero \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -38,11 +38,11 @@ msgstr "Bax %s" msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." -msgstr "" +msgstr "Bu adətən %s config qovluğuna web server üçün yazma yetkisi verdikdə, %s tərəfindən fix edilə bilir. " #: base.php:581 msgid "Sample configuration detected" -msgstr "" +msgstr "Konfiqurasiya nüsxəsi təyin edildi" #: base.php:582 msgid "" @@ -57,7 +57,7 @@ msgstr "Kömək" #: private/app.php:387 msgid "Personal" -msgstr "" +msgstr "Şəxsi" #: private/app.php:398 msgid "Settings" @@ -96,12 +96,12 @@ msgstr "" #: private/installer.php:77 msgid "App directory already exists" -msgstr "" +msgstr "Proqram təminatı qovluğu artıq mövcuddur." #: private/installer.php:90 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "" +msgstr "Proqram təminatı qovluğunu yaratmaq mümkün olmadı. Xahiş edilir yetkiləri düzgün təyin edəsiniz. %s" #: private/installer.php:235 msgid "No source specified when installing app" @@ -152,7 +152,7 @@ msgstr "" #: private/json.php:29 msgid "Application is not enabled" -msgstr "" +msgstr "Proqram təminatı aktiv edilməyib" #: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" @@ -160,21 +160,21 @@ msgstr "Təyinat metodikası" #: private/json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Token vaxtı bitib. Xahiş olunur səhifəni yenidən yükləyəsiniz." #: private/json.php:74 msgid "Unknown user" -msgstr "" +msgstr "Istifadəçi tanınmır " #: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." -msgstr "" +msgstr "Verilənlər bazası istifadəçi adını %s daxil et." #: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." -msgstr "" +msgstr "Verilənlər bazası adını %s daxil et." #: private/setup/abstractdatabase.php:32 #, php-format @@ -184,7 +184,7 @@ msgstr "" #: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "MS SQL istifadəçi adı və/ya şifrəsi düzgün deyil : %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 #: private/setup/oci.php:128 private/setup/postgresql.php:31 @@ -194,7 +194,7 @@ msgstr "" #: private/setup/mysql.php:12 msgid "MySQL/MariaDB username and/or password not valid" -msgstr "" +msgstr "MySQL/MariaDB istifadəçi adı və/ya şifrəsi düzgün deyil :" #: private/setup/mysql.php:67 private/setup/oci.php:68 #: private/setup/oci.php:135 private/setup/oci.php:158 @@ -206,7 +206,7 @@ msgstr "" #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" -msgstr "" +msgstr "DB səhvi: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:69 #: private/setup/oci.php:136 private/setup/oci.php:159 @@ -226,7 +226,7 @@ msgstr "" #: private/setup/mysql.php:86 msgid "Drop this user from MySQL/MariaDB" -msgstr "" +msgstr "Bu istifadəçini MySQL/MariaDB-dən sil" #: private/setup/mysql.php:91 #, php-format @@ -235,15 +235,15 @@ msgstr "" #: private/setup/mysql.php:92 msgid "Drop this user from MySQL/MariaDB." -msgstr "" +msgstr "Bu istifadəçini MySQL/MariaDB-dən sil." #: private/setup/oci.php:48 msgid "Oracle connection could not be established" -msgstr "" +msgstr "Oracle qoşulması alınmır" #: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" -msgstr "" +msgstr "Oracle istifadəçi adı və/ya şifrəsi düzgün deyil" #: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format @@ -256,11 +256,11 @@ msgstr "" #: private/setup.php:28 msgid "Set an admin username." -msgstr "" +msgstr "İnzibatçı istifadəçi adını təyin et." #: private/setup.php:31 msgid "Set an admin password." -msgstr "" +msgstr "İnzibatçı şifrəsini təyin et." #: private/setup.php:170 msgid "" @@ -277,17 +277,17 @@ msgstr "" #: private/share/mailnotifications.php:142 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s yayımlandı »%s« sizinlə" #: private/share/share.php:494 #, php-format msgid "Sharing %s failed, because the file does not exist" -msgstr "" +msgstr "%s yayımlanmasında səhv baş verdi ona görə ki, fayl mövcud deyil." #: private/share/share.php:501 #, php-format msgid "You are not allowed to share %s" -msgstr "" +msgstr "%s-in yayimlanmasına sizə izin verilmir" #: private/share/share.php:531 #, php-format @@ -335,7 +335,7 @@ msgstr "" #: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "Yayımlanma tipi %s etibarlı deyil %s üçün" #: private/share/share.php:863 #, php-format @@ -465,11 +465,11 @@ msgstr "" #: private/user/manager.php:249 msgid "A valid username must be provided" -msgstr "" +msgstr "Düzgün istifadəçi adı daxil edilməlidir" #: private/user/manager.php:253 msgid "A valid password must be provided" -msgstr "" +msgstr "Düzgün şifrə daxil edilməlidir" #: private/user/manager.php:258 msgid "The username is already being used" diff --git a/l10n/az/settings.po b/l10n/az/settings.po index b78ca00c5c3..721bcc2ec00 100644 --- a/l10n/az/settings.po +++ b/l10n/az/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" +"Last-Translator: unixidzero \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -196,59 +196,59 @@ msgstr "Şifrəni dəyişmək olmur" #: js/admin.js:45 msgid "Are you really sure you want add \"{domain}\" as trusted domain?" -msgstr "" +msgstr "\"{domain}\" adını inamlı domainlər siyahısına əlavə etməyinizdən əminsinizmi?" #: js/admin.js:46 msgid "Add trusted domain" -msgstr "" +msgstr "İnamlı domainlərə əlavə et" #: js/admin.js:146 msgid "Sending..." -msgstr "" +msgstr "Göndərilir..." #: js/apps.js:45 templates/help.php:7 msgid "User Documentation" -msgstr "" +msgstr "İstifadəçi sənədləri" #: js/apps.js:54 msgid "Admin Documentation" -msgstr "" +msgstr "İnzibatçı sənədləri" #: js/apps.js:82 msgid "Update to {appversion}" -msgstr "" +msgstr "{appversion} -a yenilə" #: js/apps.js:90 msgid "Uninstall App" -msgstr "" +msgstr "Proqram təminatını sil" #: js/apps.js:96 js/apps.js:158 js/apps.js:191 msgid "Disable" -msgstr "" +msgstr "Dayandır" #: js/apps.js:96 js/apps.js:167 js/apps.js:184 js/apps.js:215 msgid "Enable" -msgstr "" +msgstr "İşə sal" #: js/apps.js:147 msgid "Please wait...." -msgstr "" +msgstr "Xahiş olunur gözləyəsiniz." #: js/apps.js:155 js/apps.js:156 js/apps.js:182 msgid "Error while disabling app" -msgstr "" +msgstr "Proqram təminatını dayandırdıqda səhv baş verdi" #: js/apps.js:181 js/apps.js:210 js/apps.js:211 msgid "Error while enabling app" -msgstr "" +msgstr "Proqram təminatını işə saldıqda səhv baş verdi" #: js/apps.js:220 msgid "Updating...." -msgstr "" +msgstr "Yenilənir..." #: js/apps.js:223 msgid "Error while updating app" -msgstr "" +msgstr "Proqram təminatı yeniləndikdə səhv baş verdi" #: js/apps.js:223 js/apps.js:236 msgid "Error" @@ -256,90 +256,90 @@ msgstr "Səhv" #: js/apps.js:224 templates/apps.php:55 msgid "Update" -msgstr "" +msgstr "Yenilənmə" #: js/apps.js:227 msgid "Updated" -msgstr "" +msgstr "Yeniləndi" #: js/apps.js:233 msgid "Uninstalling ...." -msgstr "" +msgstr "Silinir..." #: js/apps.js:236 msgid "Error while uninstalling app" -msgstr "" +msgstr "Proqram təminatını sildikdə səhv baş verdi" #: js/apps.js:237 templates/apps.php:56 msgid "Uninstall" -msgstr "" +msgstr "Sil" #: js/personal.js:256 msgid "Select a profile picture" -msgstr "" +msgstr "Profil üçün şəkli seç" #: js/personal.js:287 msgid "Very weak password" -msgstr "" +msgstr "Çox asan şifrə" #: js/personal.js:288 msgid "Weak password" -msgstr "" +msgstr "Asan şifrə" #: js/personal.js:289 msgid "So-so password" -msgstr "" +msgstr "Elə-belə şifrə" #: js/personal.js:290 msgid "Good password" -msgstr "" +msgstr "Yaxşı şifrə" #: js/personal.js:291 msgid "Strong password" -msgstr "" +msgstr "Çətin şifrə" #: js/personal.js:310 msgid "Decrypting files... Please wait, this can take some time." -msgstr "" +msgstr "Fayllar deşifrə edilir... Xahiş olunur gözləyəsiniz, bu biraz vaxt alacaq." #: js/personal.js:324 msgid "Delete encryption keys permanently." -msgstr "" +msgstr "Şifrələnmə açarlarını həmişəlik sil." #: js/personal.js:338 msgid "Restore encryption keys." -msgstr "" +msgstr "Şifrələnmə açarlarını geri qaytar" #: js/users/deleteHandler.js:166 msgid "Unable to delete {objName}" -msgstr "" +msgstr "{objName} silmək olmur" #: js/users/groups.js:94 js/users/groups.js:202 msgid "Error creating group" -msgstr "" +msgstr "Qrup yaranmasında səhv baş verdi" #: js/users/groups.js:201 msgid "A valid group name must be provided" -msgstr "" +msgstr "Düzgün qrup adı təyin edilməlidir" #: js/users/groups.js:229 msgid "deleted {groupName}" -msgstr "" +msgstr "{groupName} silindi" #: js/users/groups.js:230 js/users/users.js:299 msgid "undo" -msgstr "" +msgstr "geriyə" #: js/users/users.js:49 templates/admin.php:323 #: templates/users/part.createuser.php:12 templates/users/part.userlist.php:10 #: templates/users/part.userlist.php:41 msgid "Groups" -msgstr "" +msgstr "Qruplar" #: js/users/users.js:53 templates/users/part.userlist.php:12 #: templates/users/part.userlist.php:57 msgid "Group Admin" -msgstr "" +msgstr "Qrup İnzibatçısı" #: js/users/users.js:75 templates/users/part.grouplist.php:46 #: templates/users/part.userlist.php:108 @@ -348,83 +348,83 @@ msgstr "Sil" #: js/users/users.js:96 templates/users/part.userlist.php:98 msgid "never" -msgstr "" +msgstr "heç vaxt" #: js/users/users.js:298 msgid "deleted {userName}" -msgstr "" +msgstr "{userName} silindi" #: js/users/users.js:434 msgid "add group" -msgstr "" +msgstr "qrupu əlavə et" #: js/users/users.js:652 msgid "A valid username must be provided" -msgstr "" +msgstr "Düzgün istifadəçi adı daxil edilməlidir" #: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" -msgstr "" +msgstr "İstifadəçi yaratdıqda səhv baş verdi" #: js/users/users.js:658 msgid "A valid password must be provided" -msgstr "" +msgstr "Düzgün şifrə daxil edilməlidir" #: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" -msgstr "" +msgstr "Xəbərdarlıq: \"{user}\" istfadəçisi üçün ev qovluğu artıq mövcuddur." #: personal.php:50 personal.php:51 msgid "__language_name__" -msgstr "" +msgstr "__AZ_Azerbaijan__" #: templates/admin.php:12 msgid "Everything (fatal issues, errors, warnings, info, debug)" -msgstr "" +msgstr "Hər şey(ən pis hadisələr, səhvlər, xəbərdarlıqlar, məlmat, araşdırma səhvləri)" #: templates/admin.php:13 msgid "Info, warnings, errors and fatal issues" -msgstr "" +msgstr "Məlmat, xəbərdarlıqlar, səhvlər və ən pis hadisələr" #: templates/admin.php:14 msgid "Warnings, errors and fatal issues" -msgstr "" +msgstr "Xəbərdarlıqlar, səhvlər və ən pis hadisələr" #: templates/admin.php:15 msgid "Errors and fatal issues" -msgstr "" +msgstr "Səhvlər və ən pis hadisələr" #: templates/admin.php:16 msgid "Fatal issues only" -msgstr "" +msgstr "Yalnız ən pis hadisələr" #: templates/admin.php:20 templates/admin.php:27 msgid "None" -msgstr "" +msgstr "Heç bir" #: templates/admin.php:21 msgid "Login" -msgstr "" +msgstr "Giriş" #: templates/admin.php:22 msgid "Plain" -msgstr "" +msgstr "Adi" #: templates/admin.php:23 msgid "NT LAN Manager" -msgstr "" +msgstr "NT LAN Manager" #: templates/admin.php:28 msgid "SSL" -msgstr "" +msgstr "SSL" #: templates/admin.php:29 msgid "TLS" -msgstr "" +msgstr "TLS" #: templates/admin.php:51 templates/admin.php:65 msgid "Security Warning" -msgstr "" +msgstr "Təhlükəsizlik xəbərdarlığı" #: templates/admin.php:54 #, php-format @@ -444,7 +444,7 @@ msgstr "" #: templates/admin.php:79 templates/admin.php:94 msgid "Setup Warning" -msgstr "" +msgstr "Quruluş xəbərdarlığı" #: templates/admin.php:82 msgid "" @@ -471,7 +471,7 @@ msgstr "" #: templates/admin.php:109 msgid "Database Performance Info" -msgstr "" +msgstr "Verilənlər bazasının davamiyyəti məlumatı" #: templates/admin.php:112 msgid "" @@ -482,7 +482,7 @@ msgstr "" #: templates/admin.php:123 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "'fileinfo' modulu çatışmır" #: templates/admin.php:126 msgid "" @@ -492,7 +492,7 @@ msgstr "" #: templates/admin.php:137 msgid "Your PHP version is outdated" -msgstr "" +msgstr "Sizin PHP versiyası köhnəlib" #: templates/admin.php:140 msgid "" @@ -503,7 +503,7 @@ msgstr "" #: templates/admin.php:151 msgid "PHP charset is not set to UTF-8" -msgstr "" +msgstr "PHP simvol tipi UTF-8 deyil" #: templates/admin.php:154 msgid "" @@ -535,7 +535,7 @@ msgstr "" #: templates/admin.php:190 msgid "Internet connection not working" -msgstr "" +msgstr "İnternet qoşulması işləmir" #: templates/admin.php:193 msgid "" diff --git a/l10n/az/user_ldap.po b/l10n/az/user_ldap.po index 0bc397162f6..c061209de13 100644 --- a/l10n/az/user_ldap.po +++ b/l10n/az/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-27 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 15:41+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: unixidzero \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -50,11 +50,11 @@ msgstr "Heç bir iş təyin edilməyib" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "%s configi təyin etmək mümkün olmadı" @@ -103,65 +103,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:321 lib/wizard.php:1057 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:864 lib/wizard.php:876 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" diff --git a/l10n/be/files_external.po b/l10n/be/files_external.po index f2de9d61a2f..619299c247d 100644 --- a/l10n/be/files_external.po +++ b/l10n/be/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index c9e41d3c70e..641b608bf65 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index cd17c402b27..fac9eb47cdd 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" -"Last-Translator: Ivo\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,7 +69,7 @@ msgstr "Key" msgid "Secret" msgstr "Secret" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Bucket" @@ -86,16 +86,16 @@ msgid "Secret Key" msgstr "Secret Key" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Сървър (незадължително)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Порт (незадължително)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Регион (незадължително)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -118,8 +118,8 @@ msgstr "App secret" msgid "Host" msgstr "Сървър" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Потребителско Име" @@ -149,14 +149,6 @@ msgstr "Client secret" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Потребителско Име (задължително)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (задължително)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Регион (незадължително за OpenStack Object Storage)" @@ -182,8 +174,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL of identity endpoint (задължително за OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Максимално време за HTTP заявки в секунди (незадължително)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -233,15 +225,15 @@ msgstr "Личен" msgid "System" msgstr "Системен" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "Всички потребители. Пиши, за да избереш потребител или група." -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "(група)" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Запазено" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index 61c4dc3326c..6740ed821dc 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-28 13:51+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Ivo\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index d8953a8b82b..1bba18641a0 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 55aa5853271..e24aed2deea 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Ivo\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index bd2c971a144..2f7844d25c5 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 1b70bd36868..7998f4bf47e 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,15 +85,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "হোস্ট" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "ব্যবহারকারী" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -232,15 +224,15 @@ msgstr "ব্যক্তিগত" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "সংরক্ষণ করা হলো" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index d6e2988fc7e..8b418671706 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 18:01+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: azizul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index f89fb702ac2..9d027ce7093 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 1ac208a0fca..9f59b236692 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: azizul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_IN/core.po b/l10n/bn_IN/core.po index db9d03843e7..03f1615effa 100644 --- a/l10n/bn_IN/core.po +++ b/l10n/bn_IN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_IN/files_external.po b/l10n/bn_IN/files_external.po index 30d3f882e0b..a0642989361 100644 --- a/l10n/bn_IN/files_external.po +++ b/l10n/bn_IN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "হোস্ট" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "ইউজারনেম" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "সংরক্ষিত" diff --git a/l10n/bn_IN/settings.po b/l10n/bn_IN/settings.po index 46b9f19cbe0..45fa395ae00 100644 --- a/l10n/bn_IN/settings.po +++ b/l10n/bn_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files_external.po b/l10n/bs/files_external.po index 39269a93b08..7b163633009 100644 --- a/l10n/bs/files_external.po +++ b/l10n/bs/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 96010c6dc89..d5a56e7e621 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 4aa91ed42e7..595d214f00e 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -70,7 +70,7 @@ msgstr "Clau" msgid "Secret" msgstr "Secret" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Cub" @@ -87,16 +87,16 @@ msgid "Secret Key" msgstr "Clau secreta" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Nom de l'equip (opcional)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Port (opcional)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Regió (opcional)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -119,8 +119,8 @@ msgstr "Secret de l'aplicació" msgid "Host" msgstr "Equip remot" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nom d'usuari" @@ -150,14 +150,6 @@ msgstr "Secret del client" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Nom d'usuari (necessari)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Cub (requerit)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Regió (opcional per OpenStack Object Storage)" @@ -183,8 +175,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL del punt identificador final (requerit per OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Temps d'espera dels requeriments HTTP en segons (opcional)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -234,15 +226,15 @@ msgstr "Personal" msgid "System" msgstr "Sistema" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Desat" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 81d70e50d46..060a544cbc0 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -30,15 +30,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "No s'ha pogut afegir una compartició remota" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Compartit per vós" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Compartit amb altres" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Compartit amb enllaç" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 3737f3e0e5d..9cee1c569fb 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 44f20b5fd05..e6f97ff5c48 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca@valencia/files_external.po b/l10n/ca@valencia/files_external.po index c4ee422dd0b..944f92f614d 100644 --- a/l10n/ca@valencia/files_external.po +++ b/l10n/ca@valencia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (Valencian) (http://www.transifex.com/projects/p/owncloud/language/ca@valencia/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 83429dd5d45..863e4e6f236 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" +"Last-Translator: Petr Šťastný \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" @@ -820,12 +820,12 @@ msgstr "Kontaktujte prosím správce. Pokud jste správce této instalace, nasta msgid "" "Depending on your configuration, as an administrator you might also be able " "to use the button below to trust this domain." -msgstr "V závislosti na vaší konfiguraci vám může být, jako administrátorovi, umožněno použití tlačítka níže a označit tuto doménu jako důvěryhodnou." +msgstr "V závislosti na vaší konfiguraci vám může být, jako administrátorovi, umožněno použití tlačítka níže k označení této domény jako důvěryhodné." #: templates/untrustedDomain.php:14 #, php-format msgid "Add \"%s\" as trusted domain" -msgstr "Přidat \"%s\" jako důvěryhodnou doménu." +msgstr "Přidat \"%s\" jako důvěryhodnou doménu" #: templates/update.admin.php:3 #, php-format diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index b9fd9821be4..c522bbfdc9b 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -70,9 +70,9 @@ msgstr "Klíč" msgid "Secret" msgstr "Tajemství" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" -msgstr "" +msgstr "Bucket" #: appinfo/app.php:59 msgid "Amazon S3 and compliant" @@ -87,16 +87,16 @@ msgid "Secret Key" msgstr "Tajný klíč" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Hostname (nepovinný)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Port (nepovinný)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Region (nepovinný)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -104,7 +104,7 @@ msgstr "Povolit SSL" #: appinfo/app.php:69 msgid "Enable Path Style" -msgstr "" +msgstr "Povolit Path Style" #: appinfo/app.php:77 msgid "App key" @@ -119,8 +119,8 @@ msgstr "Tajemství aplikace" msgid "Host" msgstr "Počítač" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Uživatelské jméno" @@ -150,14 +150,6 @@ msgstr "Klientské tajemství" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Uživatelské jméno (povinné)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Region (nepovinný pro OpenStack Object Storage)" @@ -183,8 +175,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL identity koncového bodu (vyžadováno pro OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Časový limit HTTP požadavků v sekundách (nepovinné)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -234,15 +226,15 @@ msgstr "Osobní" msgid "System" msgstr "Systém" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." -msgstr "" +msgstr "Všichni uživatelé. Začněte psát pro výběr uživatelů a skupin." -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" -msgstr "" +msgstr "(skupina)" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Uloženo" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 1999484b72f..0d0ef65b94e 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-19 01:54-0400\n" -"PO-Revision-Date: 2014-08-18 14:41+0000\n" -"Last-Translator: Jaroslav Lichtblau \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" +"Last-Translator: Petr Šťastný \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" @@ -34,15 +34,15 @@ msgstr "Neplatný nebo nedůvěryhodný SSL certifikát" msgid "Couldn't add remote share" msgstr "Nelze přidat vzdálené úložiště" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Sdíleno s vámi" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Sdíleno s ostatními" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Sdíleno pomocí odkazu" @@ -56,7 +56,7 @@ msgstr "Zatím jste nesdíleli žádné soubory." #: js/app.js:73 msgid "You haven't shared any files by link yet." -msgstr "Zatím jste nesdíleli pomocí odkazu žádný soubor." +msgstr "Zatím jste nesdíleli pomocí odkazu žádné soubory." #: js/external.js:48 js/external.js:59 msgid "Do you want to add the remote share {name} from {owner}@{remote}?" @@ -80,7 +80,7 @@ msgstr "Přidat vzdálené úložiště" #: js/public.js:204 msgid "No ownCloud installation found at {remote}" -msgstr "Nebyla nalezen žádný funkční ownCloud na {remote}" +msgstr "Nebyla nalezena instalace ownCloud na {remote}" #: js/public.js:205 msgid "Invalid ownCloud url" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index a14c8f7b14f..9cdd5f7ef2d 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:24+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 17:40+0000\n" +"Last-Translator: Petr Šťastný \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,7 +32,7 @@ msgstr "Nelze zapisovat do adresáře \"config\"!" msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" -msgstr "To bývá obyčejně vyřešeno povolením webovému serveru zapisovat do konfiguračního adresáře." +msgstr "To lze obvykle vyřešit povolením zápisu webovému serveru do konfiguračního adresáře" #: base.php:204 #, php-format @@ -44,7 +44,7 @@ msgstr "Viz %s" msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." -msgstr "To bývá obyčeně vyřešeno, když %s povolí webovému serveru zápis do konfiguračního adresáře %s." +msgstr "To lze obvykle vyřešit %spovolením zápisu webovému serveru do konfiguračního adresáře%s." #: base.php:581 msgid "Sample configuration detected" @@ -360,31 +360,31 @@ msgstr "Nastavení práv pro %s selhalo, protože položka nebyla nalezena" msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" -msgstr "Nelze nastavit datum vypršení platnosti. Sdílení nemůže vypršet později než za %s po zveřejnění." +msgstr "Nelze nastavit datum vypršení platnosti. Sdílení nemůže vypršet později než za %s po zveřejnění" #: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" -msgstr "Nelze nastavit datum vypršení platnosti. Datum vypršení je v minulosti." +msgstr "Nelze nastavit datum vypršení platnosti. Datum vypršení je v minulosti" #: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" -msgstr "Podpůrná vrstva pro sdílení %s musí obsahovat rozhraní OCP\\Share_Backend" +msgstr "Úložiště pro sdílení %s musí implementovat rozhraní OCP\\Share_Backend" #: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" -msgstr "Podpůrná vrstva sdílení %s nenalezena" +msgstr "Úložiště sdílení %s nenalezeno" #: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" -msgstr "Podpůrná vrstva sdílení pro %s nenalezena" +msgstr "Úložiště sdílení pro %s nenalezeno" #: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "Sdílení položky %s selhalo, protože byla sdílena uživatelem %s jako první." +msgstr "Sdílení položky %s selhalo, protože byla sdílena uživatelem %s jako první" #: private/share/share.php:1535 #, php-format @@ -395,20 +395,20 @@ msgstr "Sdílení položky %s selhalo, protože jsou k tomu nutná vyšší opr #: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "Sdílení položky %s selhalo, protože sdílení dále není povoleno" +msgstr "Sdílení položky %s selhalo, protože znovu-sdílení není povoleno" #: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" -msgstr "Sdílení položky %s selhalo, protože podpůrná vrstva sdílení nenalezla zdrojový %s" +msgstr "Sdílení položky %s selhalo, protože úložiště sdílení %s nenalezla zdroj" #: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "Sdílení položky %s selhalo, protože soubor nebyl nalezen v dočasném úložišti" +msgstr "Sdílení položky %s selhalo, protože soubor nebyl nalezen ve vyrovnávací paměti" #: private/tags.php:183 #, php-format @@ -494,7 +494,7 @@ msgstr "Nejsou instalovány ovladače databází (sqlite, mysql nebo postresql). msgid "" "Permissions can usually be fixed by %sgiving the webserver write access to " "the root directory%s." -msgstr "Oprávnění bývají obvykle napravena, když %s povolí webovému serveru zápis do kořenového adresáře %s." +msgstr "Oprávnění lze obvykle napravit %spovolením zápisu webovému serveru do kořenového adresáře%s." #: private/util.php:441 msgid "Cannot write into \"config\" directory" @@ -509,19 +509,19 @@ msgstr "Nelze zapisovat do adresáře \"apps\"" msgid "" "This can usually be fixed by %sgiving the webserver write access to the apps" " directory%s or disabling the appstore in the config file." -msgstr "To bývá obyčeně vyřešeno, když %s povolí webovému serveru zápis do apps adresáře%s nebo vypnutím položky appstore v konfiguračním souboru." +msgstr "To lze obvykle vyřešit %spovolením zápisu webovému serveru do adresáře apps%s nebo zakázáním appstore v konfiguračním souboru." #: private/util.php:470 #, php-format msgid "Cannot create \"data\" directory (%s)" -msgstr "Nelze vytvořit \"data\" adresář (%s)" +msgstr "Nelze vytvořit adresář \"data\" (%s)" #: private/util.php:471 #, php-format msgid "" "This can usually be fixed by giving the " "webserver write access to the root directory." -msgstr "To bývá obvykle vyřešeno, když povolí webovému serveru zápis do kořenového adresáře." +msgstr "To lze obvykle vyřešit povolením zápisu webovému serveru do kořenového adresáře." #: private/util.php:487 #, php-format @@ -536,7 +536,7 @@ msgstr "Prosím nainstalujte alespoň jeden z těchto jazyků do svého systému #: private/util.php:494 msgid "Please ask your server administrator to install the module." -msgstr "Požádejte svého administrátora, ať nainstaluje příslušný modul." +msgstr "Požádejte svého administrátora o instalaci tohoto modulu." #: private/util.php:498 private/util.php:505 private/util.php:512 #: private/util.php:526 private/util.php:533 private/util.php:540 @@ -555,7 +555,7 @@ msgstr "Je vyžadováno PHP %s nebo vyšší." msgid "" "Please ask your server administrator to update PHP to the latest version. " "Your PHP version is no longer supported by ownCloud and the PHP community." -msgstr "Požádejte svého administrátora, aby provedl aktualizaci PHP na nejvyšší verzi. Vaše verze PHP již není podporována komunitami ownCloud a PHP." +msgstr "Požádejte svého administrátora o aktualizaci PHP na nejnovější verzi. Vaše verze PHP již není podporována komunitami ownCloud a PHP." #: private/util.php:587 msgid "" @@ -568,7 +568,7 @@ msgid "" "PHP Safe Mode is a deprecated and mostly useless setting that should be " "disabled. Please ask your server administrator to disable it in php.ini or " "in your webserver config." -msgstr "PHP Safe Mode je zastaralé a víceméně zbytečné nastavení, které je třeba vypnout. Požádejte prosím svého administrátora, ať toto provede v php.ini nebo v nastavení konfigurace webového serveru." +msgstr "PHP Safe Mode je zastaralé a většinou zbytečné nastavení, které je třeba vypnout. Požádejte prosím svého administrátora o zakázání v php.ini nebo v konfiguraci webového serveru." #: private/util.php:595 msgid "" @@ -581,19 +581,19 @@ msgid "" "Magic Quotes is a deprecated and mostly useless setting that should be " "disabled. Please ask your server administrator to disable it in php.ini or " "in your webserver config." -msgstr "Magic Quotes je zastaralé a víceméně zbytečné nastavení, které je třeba vypnout. Požádejte prosím svého administrátora, ať toto provede v php.ini nebo v nastavení konfigurace webového serveru." +msgstr "Magic Quotes je zastaralé a většinou zbytečné nastavení, které je třeba vypnout. Požádejte prosím svého administrátora o zakázání v php.ini nebo v konfiguraci webového serveru." #: private/util.php:610 msgid "PHP modules have been installed, but they are still listed as missing?" -msgstr "PHP moduly jsou nainstalovány, ale stále vykázány jako chybějící?" +msgstr "PHP moduly jsou nainstalovány, ale stále se tváří jako chybějící?" #: private/util.php:611 msgid "Please ask your server administrator to restart the web server." -msgstr "Požádejte svého administrátora, ať restartuje webový server." +msgstr "Požádejte svého administrátora o restart webového serveru." #: private/util.php:641 msgid "PostgreSQL >= 9 required" -msgstr "Je třeba PostgreSQL >= 9" +msgstr "Je vyžadováno PostgreSQL >= 9" #: private/util.php:642 msgid "Please upgrade your database version" @@ -607,23 +607,23 @@ msgstr "Při zjišťování verze PostgreSQL došlo k chybě" msgid "" "Please make sure you have PostgreSQL >= 9 or check the logs for more " "information about the error" -msgstr "Zajistěte prosím PostgreSQL >=9 nebo zkontrolujte logy pro více informací o chybě." +msgstr "Ujistěte se, že máte PostgreSQL >= 9, a zkontrolujte logy pro více informací o chybě." #: private/util.php:715 msgid "" "Please change the permissions to 0770 so that the directory cannot be listed" " by other users." -msgstr "Změntě prosím práva na 0770, aby adresář nemohl být otevřen ostatními uživateli." +msgstr "Změňte prosím práva na 0770, aby adresář nemohl být otevřen ostatními uživateli." #: private/util.php:724 #, php-format msgid "Data directory (%s) is readable by other users" -msgstr "Data adresář (%s) je čitelný i ostatními uživateli" +msgstr "Datový adresář (%s) je čitelný i ostatními uživateli" #: private/util.php:745 #, php-format msgid "Data directory (%s) is invalid" -msgstr "Data adresář (%s) je neplatný" +msgstr "Datový adresář (%s) je neplatný" #: private/util.php:746 msgid "" @@ -634,4 +634,4 @@ msgstr "Ověřte prosím, že kořenový adresář s daty obsahuje soubor \".ocd #: public/files/locknotacquiredexception.php:39 #, php-format msgid "Could not obtain lock type %d on \"%s\"." -msgstr "Nelze zjistit typ zámku %d na \"%s\"." +msgstr "Nelze získat zámek typu %d na \"%s\"." diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index c3d35363e05..12d27a295d0 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 19:00+0000\n" +"Last-Translator: Petr Šťastný \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" @@ -109,7 +109,7 @@ msgstr "Nebylo možno dešifrovat soubory, zkontrolujte své heslo a zkuste znov #: ajax/deletekeys.php:14 msgid "Encryption keys deleted permanently" -msgstr "Šifrovací klíče trvale smazány" +msgstr "Šifrovací klíče trvale smazány" #: ajax/deletekeys.php:16 msgid "" @@ -119,7 +119,7 @@ msgstr "Nebylo možno trvale smazat vaše šifrovací klíče, zkontrolujte pros #: ajax/installapp.php:18 ajax/uninstallapp.php:18 msgid "Couldn't remove app." -msgstr "Nepodařilo se odstranit aplikaci." +msgstr "Nepodařilo se odebrat aplikaci." #: ajax/lostpassword.php:12 msgid "Email saved" @@ -312,11 +312,11 @@ msgstr "Probíhá dešifrování souborů... Čekejte prosím, tato operace mů #: js/personal.js:324 msgid "Delete encryption keys permanently." -msgstr "Trvale smazat šifrovací klíče" +msgstr "Trvale smazat šifrovací klíče." #: js/personal.js:338 msgid "Restore encryption keys." -msgstr "Obnovit šifrovací klíče" +msgstr "Obnovit šifrovací klíče." #: js/users/deleteHandler.js:166 msgid "Unable to delete {objName}" @@ -469,7 +469,7 @@ msgstr "Zkontrolujte prosím znovu instalační příručku." msgid "" "PHP is apparently setup to strip inline doc blocks. This will make several " "core apps inaccessible." -msgstr "PHP je patrně nastaveno tak, aby odstraňovalo vnitřní části dokumentů. Toto bude mít za následek množsví nedostupných hlavních aplikací." +msgstr "PHP je patrně nastaveno tak, aby odstraňovalo bloky komentářů. Toto bude mít za následek nedostupnost množství hlavních aplikací." #: templates/admin.php:98 msgid "" @@ -486,7 +486,7 @@ msgid "" "SQLite is used as database. For larger installations we recommend to change " "this. To migrate to another database use the command line tool: 'occ db" ":convert-type'" -msgstr "Je použita databáze SQLite. Pro větší instalace doporučujeme toto změnit. Pro migraci na jiný typ databáze lze použít příkaz: 'occ db:convert-type'" +msgstr "Je použita databáze SQLite. Pro větší instalace doporučujeme toto změnit. Pro migraci na jiný typ databáze lze použít nástroj pro příkazový řádek: 'occ db:convert-type'" #: templates/admin.php:123 msgid "Module 'fileinfo' missing" @@ -518,7 +518,7 @@ msgid "" "PHP charset is not set to UTF-8. This can cause major issues with non-ASCII " "characters in file names. We highly recommend to change the value of " "'default_charset' php.ini to 'UTF-8'." -msgstr "Znaková sada PHP není nastavena na UTF-8. Toto může způsobit závažné problémy ve jménech souborů se znaky neobsaženými v ASCII. Doporučujeme změnit hodnotu 'default_charset' v php.ini na 'UTF-8'." +msgstr "Znaková sada PHP není nastavena na UTF-8. To může způsobit závažné problémy se jmény souborů se znaky neobsaženými v ASCII. Důrazně doporučujeme změnit hodnotu 'default_charset' v php.ini na 'UTF-8'." #: templates/admin.php:165 msgid "Locale not working" @@ -565,7 +565,7 @@ msgid "" "system cron, there can be issues with the URL generation. To avoid these " "problems, please set the \"overwritewebroot\" option in your config.php file" " to the webroot path of your installation (Suggested: \"%s\")" -msgstr "Instalace mimo kořenový adresář domény a používání systémového příkazu cron může způsobit problém s generováním správné URL. Pro zabránění chyb v rozpoznání specifikujte prosím správnou cestu ve svém config.php souboru pod hodnotu \"overwritewebroot\" (Doporučujeme: \"%s\")" +msgstr "Instalace mimo kořenový adresář domény a používání systémového příkazu cron může způsobit problém s generováním správné URL. Pro zabránění těmto chybám nastavte prosím správnou cestu ve svém config.php souboru v hodnotě \"overwritewebroot\" (Doporučujeme: \"%s\")" #: templates/admin.php:220 msgid "Cron" @@ -599,7 +599,7 @@ msgstr "cron.php je registrován u služby webcron, aby volal cron.php jednou za #: templates/admin.php:260 msgid "Use system's cron service to call the cron.php file every 15 minutes." -msgstr "Použít systémovou službu cron pro spuštění souboru cron.php každých 15 minut." +msgstr "Použít systémovou službu cron pro volání cron.php každých 15 minut." #: templates/admin.php:265 msgid "Sharing" @@ -935,7 +935,7 @@ msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." -msgstr "Vaše šifrovací klíče byly zálohovány. Pokud se něco pokazilo, dají se znovu obnovit. Smažte je trvale pouze pokud jste jisti, že jsou všechny vaše soubory bezchybně dešifrovány." +msgstr "Vaše šifrovací klíče byly zálohovány. Pokud se něco pokazí, můžete je obnovit. Smažte je trvale pouze pokud jste jisti, že jsou všechny vaše soubory bezchybně dešifrovány." #: templates/personal.php:191 msgid "Restore Encryption Keys" @@ -947,11 +947,11 @@ msgstr "Smazat šifrovací klíče" #: templates/users/main.php:34 msgid "Show storage location" -msgstr "" +msgstr "Zobrazit umístění úložiště" #: templates/users/main.php:38 msgid "Show last log in" -msgstr "" +msgstr "Zobrazit poslední přihlášení" #: templates/users/part.createuser.php:4 msgid "Login Name" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 91aa4189ac0..4a060340f8a 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" -"Last-Translator: Jaroslav Lichtblau \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 19:00+0000\n" +"Last-Translator: Petr Šťastný \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" @@ -100,15 +100,15 @@ msgstr "Chyba" #: js/settings.js:244 msgid "Please specify a Base DN" -msgstr "Uveď prosím základní DN" +msgstr "Uveďte prosím Base DN" #: js/settings.js:245 msgid "Could not determine Base DN" -msgstr "Nelze určit základní DN" +msgstr "Nelze určit Base DN" #: js/settings.js:276 msgid "Please specify the port" -msgstr "Prosím zadej port" +msgstr "Prosím zadejte port" #: js/settings.js:792 msgid "Configuration OK" @@ -484,14 +484,14 @@ msgstr "Pokud zapnuto, je možno používat skupiny, které obsahují jiné skup #: templates/settings.php:40 msgid "Paging chunksize" -msgstr "" +msgstr "Velikost bloku stránkování" #: templates/settings.php:40 msgid "" "Chunksize used for paged LDAP searches that may return bulky results like " "user or group enumeration. (Setting it 0 disables paged LDAP searches in " "those situations.)" -msgstr "" +msgstr "Velikost bloku použitá pro stránkování vyhledávání v LDAP, které může vracet objemné výsledky jako třeba výčet uživatelů či skupin. (Nastavení na 0 zakáže stránkovaná vyhledávání pro tyto situace.)" #: templates/settings.php:42 msgid "Special Attributes" diff --git a/l10n/cs_CZ/user_webdavauth.po b/l10n/cs_CZ/user_webdavauth.po index fc112977f28..5c13053d25e 100644 --- a/l10n/cs_CZ/user_webdavauth.po +++ b/l10n/cs_CZ/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:12+0000\n" -"Last-Translator: Josef Moravec \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 18:44+0000\n" +"Last-Translator: Petr Šťastný \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 93d659fa48a..499136fadee 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index 54f773940f0..4dfe7e7bb32 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Enw defnyddiwr" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "Personol" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index a2bcfcf8915..847a988a669 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 599b925571c..84d4e434431 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 896da5a86bd..c4c1095a39d 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,47 +102,47 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -151,7 +151,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -160,11 +160,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -256,60 +256,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Cyfrinair" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/da/core.po b/l10n/da/core.po index 0bc21e816c9..b98d95bcf1c 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index 43a3b82aa1e..cdf1f3e6b8a 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -70,7 +70,7 @@ msgstr "Nøgle" msgid "Secret" msgstr "Hemmelighed" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Bucket" @@ -87,16 +87,16 @@ msgid "Secret Key" msgstr "Hemmelig Nøgle " #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Værtsnavn (valgfri)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Port (valgfri)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Region (valgfri)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -119,8 +119,8 @@ msgstr "App-hemmelighed" msgid "Host" msgstr "Host" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Brugernavn" @@ -150,14 +150,6 @@ msgstr "Klient hemmelighed" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Brugernavn (påkrævet)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (påkrævet)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Region (valgfri for OpenStack Object Storage)" @@ -183,8 +175,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL på slutpunkt for identitet (påkrævet for OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Timeout på HTTP forespørgsler i sekunder (valgfri)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -234,15 +226,15 @@ msgstr "Personligt" msgid "System" msgstr "System" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Gemt" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index aaf5293460d..b9420111ff0 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 04:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Aputsiaĸ Niels Janussen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 8323212ec76..9f50bd82524 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 432f92fda19..466763e83a7 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-13 01:54-0400\n" -"PO-Revision-Date: 2014-07-12 10:21+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -50,11 +50,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -103,65 +103,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Vælg grupper" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Forbindelsestest lykkedes" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Forbindelsestest mislykkedes" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Ønsker du virkelig at slette den nuværende Server Konfiguration?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Bekræft Sletning" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -253,60 +253,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Tilføj Server Konfiguration" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Host" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Du kan udelade protokollen, medmindre du skal bruge SSL. Start i så fald med ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Bruger DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Kodeord" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "For anonym adgang, skal du lade DN og Adgangskode tomme." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "You can specify Base DN for users and groups in the Advanced tab" diff --git a/l10n/de/core.po b/l10n/de/core.po index 0e5aaa76ae2..6bf8fdffd92 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:10+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" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index e087ded1266..b075f64a951 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -71,7 +71,7 @@ msgstr "Schlüssel" msgid "Secret" msgstr "Geheime Zeichenkette" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Bucket" @@ -88,16 +88,16 @@ msgid "Secret Key" msgstr "Sicherheitssschlüssel" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Host-Name (Optional)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Port (Optional)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Region (Optional)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -120,8 +120,8 @@ msgstr "Geheime Zeichenkette der App" msgid "Host" msgstr "Host" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Benutzername" @@ -151,14 +151,6 @@ msgstr "Geheime Zeichenkette des Client" msgid "OpenStack Object Storage" msgstr "Openstack-Objektspeicher" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Benutzername (Erforderlich)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (Erforderlich)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Region (Optional für Openstack-Objektspeicher)" @@ -184,8 +176,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL des Identitätsendpunktes (Erforderlich für Openstack-Objektspeicher)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Zeitüberschreitung von HTTP-Anfragen in Sekunden (Optional)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -235,15 +227,15 @@ msgstr "Persönlich" msgid "System" msgstr "System" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Gespeichert" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index f65ef70d6f8..a2a85c52400 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-17 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 20:31+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:10+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -35,15 +35,15 @@ msgstr "Ungültiges oder nicht vertrauenswürdiges SSL-Zertifikat" msgid "Couldn't add remote share" msgstr "Entfernte Freigabe kann nicht hinzu gefügt werden" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Mit Dir geteilt" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Von Dir geteilt" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Geteilt über einen Link" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index fdebbe535f3..a38b7e84e72 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:10+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" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 34f2e32efef..7d54b0f77c7 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:10+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_AT/core.po b/l10n/de_AT/core.po index 50d0eda430c..e014f41a7ee 100644 --- a/l10n/de_AT/core.po +++ b/l10n/de_AT/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_AT/files_external.po b/l10n/de_AT/files_external.po index c77a9681bf4..f5a655b70a6 100644 --- a/l10n/de_AT/files_external.po +++ b/l10n/de_AT/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "Host" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "Persönlich" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/de_AT/files_sharing.po b/l10n/de_AT/files_sharing.po index 3e81a301ee2..df470b5931f 100644 --- a/l10n/de_AT/files_sharing.po +++ b/l10n/de_AT/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/de_AT/settings.po b/l10n/de_AT/settings.po index 345823c8cee..f319566e57e 100644 --- a/l10n/de_AT/settings.po +++ b/l10n/de_AT/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_AT/user_ldap.po b/l10n/de_AT/user_ldap.po index 56f454cbdf6..d7497483309 100644 --- a/l10n/de_AT/user_ldap.po +++ b/l10n/de_AT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Malspherus \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index 4bd4564ffbd..a0f27b02dab 100644 --- a/l10n/de_CH/core.po +++ b/l10n/de_CH/core.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_CH/files_external.po b/l10n/de_CH/files_external.po index e7e41c18842..c5f73ffaf94 100644 --- a/l10n/de_CH/files_external.po +++ b/l10n/de_CH/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,15 +85,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "Host" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Benutzername" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -232,15 +224,15 @@ msgstr "Persönlich" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Gespeichert" diff --git a/l10n/de_CH/files_sharing.po b/l10n/de_CH/files_sharing.po index 96cdf875c91..aa382f7df15 100644 --- a/l10n/de_CH/files_sharing.po +++ b/l10n/de_CH/files_sharing.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -32,15 +32,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/de_CH/settings.po b/l10n/de_CH/settings.po index 9138f86a788..e6dc40ec855 100644 --- a/l10n/de_CH/settings.po +++ b/l10n/de_CH/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_CH/user_ldap.po b/l10n/de_CH/user_ldap.po index 0764a7e1c43..ac7aa358d92 100644 --- a/l10n/de_CH/user_ldap.po +++ b/l10n/de_CH/user_ldap.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -57,11 +57,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -110,65 +110,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Wähle Gruppen" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Verbindungstest erfolgreich" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Verbindungstest fehlgeschlagen" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Möchten Sie die aktuelle Serverkonfiguration wirklich löschen?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Löschung bestätigen" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -260,60 +260,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Bestimmt den Filter, welcher bei einer Anmeldung angewandt wird. %%uid ersetzt den Benutzernamen bei der Anmeldung. Beispiel: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Serverkonfiguration hinzufügen" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Host" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Sie können das Protokoll auslassen, ausser wenn Sie SSL benötigen. Beginnen Sie dann mit ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Benutzer-DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für einen anonymen Zugriff lassen Sie DN und Passwort leer." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Passwort" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Lassen Sie die Felder DN und Passwort für einen anonymen Zugang leer." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Ein Basis-DN pro Zeile" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Sie können Basis-DN für Benutzer und Gruppen in dem «Erweitert»-Reiter konfigurieren" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 33653a87343..7c2bcbca369 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 186a2fd6abc..582b9ea48ff 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -72,7 +72,7 @@ msgstr "Schlüssel" msgid "Secret" msgstr "Geheime Zeichenkette" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Bucket" @@ -89,16 +89,16 @@ msgid "Secret Key" msgstr "Sicherheitsschlüssel" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Host-Name (Optional)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Port (Optional)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Region (Optional)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -121,8 +121,8 @@ msgstr "Geheime Zeichenkette der App" msgid "Host" msgstr "Host" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Benutzername" @@ -152,14 +152,6 @@ msgstr "Geheime Zeichenkette des Client" msgid "OpenStack Object Storage" msgstr "Openstack-Objektspeicher" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Benutzername (Erforderlich)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (Erforderlich)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Region (Optional für Openstack-Objektspeicher)" @@ -185,8 +177,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL des Identitätsendpunktes (Erforderlich für Openstack-Objektspeicher)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Zeitüberschreitung von HTTP-Anfragen in Sekunden (Optional)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -236,15 +228,15 @@ msgstr "Persönlich" msgid "System" msgstr "System" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Gespeichert" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index fe325d461c9..e5d478c619f 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-17 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 20:31+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -34,15 +34,15 @@ msgstr "Ungültiges oder nicht vertrauenswürdiges SSL-Zertifikat" msgid "Couldn't add remote share" msgstr "Entfernte Freigabe kann nicht hinzu gefügt werden" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Mit Ihnen geteilt" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Von Ihnen geteilt" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Geteilt über einen Link" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 0e85d48932c..a1d77127f3c 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 5a82f9d2269..13b7c24f93b 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index b63e4328d93..dda647c5565 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index f69db901cf7..aa0d6a341f4 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2014 # thea_rad , 2014 # ggoniotakis , 2014 # Spyros Melissovas , 2014 @@ -12,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -72,7 +73,7 @@ msgstr "Κλειδί" msgid "Secret" msgstr "Μυστικό" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Κάδος" @@ -89,16 +90,16 @@ msgid "Secret Key" msgstr "Μυστικό κλειδί" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Όνομα μηχανήματος (προαιρετικά)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Πόρτα (προαιρετικά)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Περιοχή (προαιρετικά)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -121,8 +122,8 @@ msgstr "Μυστικό εφαρμογής" msgid "Host" msgstr "Διακομιστής" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Όνομα χρήστη" @@ -152,14 +153,6 @@ msgstr "Μυστικό πελάτη" msgid "OpenStack Object Storage" msgstr "Αποθήκη αντικειμένων OpenStack" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Όνομα χρήστη (απαιτείται)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Κάδος (απαιτείται)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Περιοχή (προαιρετικά για την αποθήκευση αντικειμένων OpenStack)" @@ -185,8 +178,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "Διεύθυνση URL της ταυτότητας τελικού σημείου (απαιτείται για την αποθήκευση αντικειμένων OpenStack)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Χρονικό όριο των αιτήσεων HTTP σε δευτερόλεπτα (προαιρετικά)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -236,15 +229,15 @@ msgstr "Προσωπικά" msgid "System" msgstr "Σύστημα" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" -msgstr "" +msgstr "(ομάδα)" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Αποθηκεύτηκαν" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index 7ecc343dcd7..bbee8632642 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-25 01:54-0400\n" -"PO-Revision-Date: 2014-08-25 01:34+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: evigiannakou \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index cc2f479f47f..27001817f96 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -953,7 +953,7 @@ msgstr "" #: templates/users/main.php:38 msgid "Show last log in" -msgstr "" +msgstr "Εμφάνιση τελευταίας εισόδου" #: templates/users/part.createuser.php:4 msgid "Login Name" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 9d5393145c9..3a6dc67605e 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Vassilis Kehayas \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index 22041ec7d61..54689a74a60 100644 --- a/l10n/en@pirate/core.po +++ b/l10n/en@pirate/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -149,27 +149,27 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "" diff --git a/l10n/en@pirate/files_external.po b/l10n/en@pirate/files_external.po index 437c2019741..1575b31f133 100644 --- a/l10n/en@pirate/files_external.po +++ b/l10n/en@pirate/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 4537f96a9b2..f8a6e63b1f5 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -30,15 +30,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/en@pirate/settings.po b/l10n/en@pirate/settings.po index 9a0f7175c1b..b24ecce9caf 100644 --- a/l10n/en@pirate/settings.po +++ b/l10n/en@pirate/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/user_ldap.po b/l10n/en@pirate/user_ldap.po index 8b7e4ebaf62..55e571bb209 100644 --- a/l10n/en@pirate/user_ldap.po +++ b/l10n/en@pirate/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-06-04 01:54-0400\n" -"PO-Revision-Date: 2014-06-04 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,66 +102,66 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:83 lib/wizard.php:97 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:130 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:825 lib/wizard.php:837 -msgid "Invalid Host" +#: lib/wizard.php:392 lib/wizard.php:1128 +msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:1025 -msgid "Could not find the desired feature" +#: lib/wizard.php:935 lib/wizard.php:947 +msgid "Invalid Host" msgstr "" #: settings.php:52 @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Passcode" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po index ad3e0932758..0245c6929ba 100644 --- a/l10n/en_GB/core.po +++ b/l10n/en_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en_GB/files_external.po b/l10n/en_GB/files_external.po index 9cdfbfda808..bbb4d519417 100644 --- a/l10n/en_GB/files_external.po +++ b/l10n/en_GB/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" -"Last-Translator: Darren Richardson \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,7 +68,7 @@ msgstr "Key" msgid "Secret" msgstr "Secret" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Bucket" @@ -85,16 +85,16 @@ msgid "Secret Key" msgstr "Secret Key" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Hostname (optional)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Port (optional)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Region (optional)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -117,8 +117,8 @@ msgstr "App secret" msgid "Host" msgstr "Host" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Username" @@ -148,14 +148,6 @@ msgstr "Client secret" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Username (required)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (required)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Region (optional for OpenStack Object Storage)" @@ -181,8 +173,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL of identity endpoint (required for OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -232,15 +224,15 @@ msgstr "Personal" msgid "System" msgstr "System" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "All users. Type to select user or group." -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "(group)" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Saved" diff --git a/l10n/en_GB/files_sharing.po b/l10n/en_GB/files_sharing.po index cb95ead4643..df6a9eae9c4 100644 --- a/l10n/en_GB/files_sharing.po +++ b/l10n/en_GB/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-19 01:54-0400\n" -"PO-Revision-Date: 2014-08-18 11:20+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Darren Richardson \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -30,15 +30,15 @@ msgstr "Invalid or untrusted SSL certificate" msgid "Couldn't add remote share" msgstr "Couldn't add remote share" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Shared with you" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Shared with others" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Shared by link" diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index 630f586cf6d..94d36266599 100644 --- a/l10n/en_GB/settings.po +++ b/l10n/en_GB/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" +"Last-Translator: Darren Richardson \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -939,11 +939,11 @@ msgstr "Delete Encryption Keys" #: templates/users/main.php:34 msgid "Show storage location" -msgstr "" +msgstr "Show storage location" #: templates/users/main.php:38 msgid "Show last log in" -msgstr "" +msgstr "Show last log in" #: templates/users/part.createuser.php:4 msgid "Login Name" diff --git a/l10n/en_GB/user_ldap.po b/l10n/en_GB/user_ldap.po index 0c21160ab3d..629f9f800da 100644 --- a/l10n/en_GB/user_ldap.po +++ b/l10n/en_GB/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Darren Richardson \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en_NZ/files_external.po b/l10n/en_NZ/files_external.po index 5ecde6e6c04..9165e77f635 100644 --- a/l10n/en_NZ/files_external.po +++ b/l10n/en_NZ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (New Zealand) (http://www.transifex.com/projects/p/owncloud/language/en_NZ/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index bb0c78a51c0..bb64e29a89e 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index 14bb153364b..921b43bec0a 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ msgstr "Klavo" msgid "Secret" msgstr "Sekreto" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,16 +85,16 @@ msgid "Secret Key" msgstr "Sekretoklavo" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Gastigonomo (malnepra)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Pordo (malnepra)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Regiono (malnepra)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -117,8 +117,8 @@ msgstr "Aplikaĵosekreto" msgid "Host" msgstr "Gastigo" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Uzantonomo" @@ -148,14 +148,6 @@ msgstr "Klientosekreto" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Uzantonomo (nepra)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Regiono (malnepra por OpenStack Object Storage)" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -232,15 +224,15 @@ msgstr "Persona" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Konservita" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index e6e1c36d6fa..30b7ab15d2d 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -30,15 +30,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Kunhavata kun vi" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Kunhavata kun aliaj" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Kunhavata per ligilo" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 3f5763739b0..c8304cd8696 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index c68d15bb5c2..802ee1a8a5d 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/core.po b/l10n/es/core.po index 757ab6fdd85..db43215615c 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -33,8 +33,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index 3cdc8d86a6a..22f72bbf3e6 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" -"Last-Translator: Artopal \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -73,7 +73,7 @@ msgstr "Clave" msgid "Secret" msgstr "Secreto" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Depósito" @@ -90,16 +90,16 @@ msgid "Secret Key" msgstr "Clave Secreta" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Nombre de Equipo (opcional)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Puerto (opcional)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Región (opcional)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -122,8 +122,8 @@ msgstr "App secreta" msgid "Host" msgstr "Servidor" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nombre de usuario" @@ -153,14 +153,6 @@ msgstr "Cliente secreto" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Nombre de Usuario (requerido)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Depósito (requerido)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Región (opcional para OpenStack Object Storage)" @@ -186,8 +178,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL de identidad de punto final (requerido para OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Tiempo de espera de peticiones HTTP en segundos (opcional)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -237,15 +229,15 @@ msgstr "Personal" msgid "System" msgstr "Sistema" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "Todos los usuarios. Teclee para seleccionar un usuario o grupo." -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "(grupo)" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Guardado" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 1f7674ef6b0..d99960a912a 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-17 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 07:10+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Artopal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -39,15 +39,15 @@ msgstr "Certificado SSL inválido o no confiable" msgid "Couldn't add remote share" msgstr "No se puede añadir un compartido remoto" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Compartido contigo" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Compartido con otros" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Compartido por medio de enlaces" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index dfa5addbd16..fc6e084db38 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -25,9 +25,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 18:20+0000\n" +"Last-Translator: Artopal \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" @@ -574,7 +574,7 @@ msgid "" "system cron, there can be issues with the URL generation. To avoid these " "problems, please set the \"overwritewebroot\" option in your config.php file" " to the webroot path of your installation (Suggested: \"%s\")" -msgstr "" +msgstr "Si su instalación no está ubicada en la raíz del dominio y usa el cron del sistema, puede haber problemas al generarse los URL. Para evitarlos, configure la opción \"overwritewebroot\" en su archivo config.php para que use la ruta de la raíz del sitio web de su instalación (sugerencia: \"%s\")" #: templates/admin.php:220 msgid "Cron" @@ -956,11 +956,11 @@ msgstr "Eliminar claves de cifrado" #: templates/users/main.php:34 msgid "Show storage location" -msgstr "" +msgstr "Mostrar la ubicación del almacenamiento" #: templates/users/main.php:38 msgid "Show last log in" -msgstr "" +msgstr "Mostrar el último inicio de sesión" #: templates/users/part.createuser.php:4 msgid "Login Name" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 38b5314985d..592694aaa37 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Artopal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 06645e3d5ed..d158e965e52 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index 8debbe14de0..071683eddb6 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,15 +85,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "Servidor" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nombre de usuario" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -232,15 +224,15 @@ msgstr "Personal" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Guardado" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index 1c030ce6a67..3940ea8dca1 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -31,15 +31,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 94264c885f2..c4f6c6d68cd 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 2b0e5be9f91..59c02016f92 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -52,11 +52,11 @@ msgstr "No se ha especificado una acción" msgid "No configuration specified" msgstr "No se ha especificado una configuración" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "No se ha especificado datos" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "No se pudo asignar la configuración %s" @@ -105,65 +105,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Configuración válida" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Configuración incorrecta" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Configuración incompleta" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Seleccionar grupos" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Seleccionar las clases de objetos" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Seleccionar atributos" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "El este de conexión ha sido completado satisfactoriamente" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Falló es test de conexión" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "¿Realmente desea borrar la configuración actual del servidor?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Confirmar borrado" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s grupo encontrado" msgstr[1] "%s grupos encontrados" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s usuario encontrado" msgstr[1] "%s usuarios encontrados" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "No se pudo encontrar la característica deseada" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Host inválido" @@ -255,60 +255,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Define el filtro a aplicar cuando se intenta ingresar. %%uid remplaza el nombre de usuario en el proceso de identificación. Por ejemplo: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Añadir Configuración del Servidor" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Servidor" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Podés omitir el protocolo, excepto si SSL es requerido. En ese caso, empezá con ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Puerto" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN usuario" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, dejá DN y contraseña vacíos." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Contraseña" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Para acceso anónimo, dejá DN y contraseña vacíos." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Una DN base por línea" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Podés especificar el DN base para usuarios y grupos en la pestaña \"Avanzado\"" diff --git a/l10n/es_BO/files_external.po b/l10n/es_BO/files_external.po index 03f0d760688..1b40b8eb5c3 100644 --- a/l10n/es_BO/files_external.po +++ b/l10n/es_BO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Bolivia) (http://www.transifex.com/projects/p/owncloud/language/es_BO/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/es_CL/core.po b/l10n/es_CL/core.po index 2c8bd9a0d5f..f456c19fb6d 100644 --- a/l10n/es_CL/core.po +++ b/l10n/es_CL/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_CL/files_external.po b/l10n/es_CL/files_external.po index 6e96be88156..bf7b93bf303 100644 --- a/l10n/es_CL/files_external.po +++ b/l10n/es_CL/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Usuario" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "Personal" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/es_CL/files_sharing.po b/l10n/es_CL/files_sharing.po index b8768a1ccec..fe7989fa927 100644 --- a/l10n/es_CL/files_sharing.po +++ b/l10n/es_CL/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/es_CL/settings.po b/l10n/es_CL/settings.po index b937173a32d..acbe15244d1 100644 --- a/l10n/es_CL/settings.po +++ b/l10n/es_CL/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_CL/user_ldap.po b/l10n/es_CL/user_ldap.po index eacb455bf67..8ecf85fb5e6 100644 --- a/l10n/es_CL/user_ldap.po +++ b/l10n/es_CL/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-31 01:54-0400\n" -"PO-Revision-Date: 2014-07-30 21:11+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,65 +102,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Clave" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/es_CO/files_external.po b/l10n/es_CO/files_external.po index 38ab770e345..7da7e52d076 100644 --- a/l10n/es_CO/files_external.po +++ b/l10n/es_CO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/projects/p/owncloud/language/es_CO/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/es_CR/files_external.po b/l10n/es_CR/files_external.po index e72df440623..3db319b217f 100644 --- a/l10n/es_CR/files_external.po +++ b/l10n/es_CR/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/es_EC/files_external.po b/l10n/es_EC/files_external.po index 53d61c6bde3..930105a8b19 100644 --- a/l10n/es_EC/files_external.po +++ b/l10n/es_EC/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Ecuador) (http://www.transifex.com/projects/p/owncloud/language/es_EC/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/es_MX/core.po b/l10n/es_MX/core.po index aa75ebb9a3e..6779fe2257f 100644 --- a/l10n/es_MX/core.po +++ b/l10n/es_MX/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_MX/files_external.po b/l10n/es_MX/files_external.po index 97282ebeedc..dc4f75f3377 100644 --- a/l10n/es_MX/files_external.po +++ b/l10n/es_MX/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "Servidor" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nombre de usuario" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "Personal" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/es_MX/files_sharing.po b/l10n/es_MX/files_sharing.po index f2b6e60e29d..875f91a0eec 100644 --- a/l10n/es_MX/files_sharing.po +++ b/l10n/es_MX/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/es_MX/settings.po b/l10n/es_MX/settings.po index cee486b9635..88f5984a5f1 100644 --- a/l10n/es_MX/settings.po +++ b/l10n/es_MX/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_MX/user_ldap.po b/l10n/es_MX/user_ldap.po index e9946619829..ae41a082bce 100644 --- a/l10n/es_MX/user_ldap.po +++ b/l10n/es_MX/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "No se ha especificado la acción" msgid "No configuration specified" msgstr "No se ha especificado la configuración" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "No se han especificado los datos" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "No se pudo establecer la configuración %s" @@ -102,65 +102,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Configuración OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Configuración Incorrecta" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Configuración incompleta" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Seleccionar grupos" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Seleccionar la clase de objeto" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Seleccionar atributos" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "La prueba de conexión fue exitosa" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "La prueba de conexión falló" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "¿Realmente desea eliminar la configuración actual del servidor?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Confirmar eliminación" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "Grupo %s encontrado" msgstr[1] "Grupos %s encontrados" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "Usuario %s encontrado" msgstr[1] "Usuarios %s encontrados" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "No se puede encontrar la función deseada." -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Host inválido" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Define el filtro a aplicar cuando se intenta identificar. %%uid remplazará al nombre de usuario en el proceso de identificación. Por ejemplo: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Agregar configuracion del servidor" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Servidor" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Puede omitir el protocolo, excepto si requiere SSL. En ese caso, empiece con ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Puerto" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN usuario" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, deje DN y contraseña vacíos." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Contraseña" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Para acceso anónimo, deje DN y contraseña vacíos." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Un DN Base por línea" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Puede especificar el DN base para usuarios y grupos en la pestaña Avanzado" diff --git a/l10n/es_PE/files_external.po b/l10n/es_PE/files_external.po index 327c9f2236d..3fbe3a06f92 100644 --- a/l10n/es_PE/files_external.po +++ b/l10n/es_PE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Peru) (http://www.transifex.com/projects/p/owncloud/language/es_PE/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/es_PY/files_external.po b/l10n/es_PY/files_external.po index 29010203c9f..89c96197d1f 100644 --- a/l10n/es_PY/files_external.po +++ b/l10n/es_PY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Paraguay) (http://www.transifex.com/projects/p/owncloud/language/es_PY/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/es_US/files_external.po b/l10n/es_US/files_external.po index c9e7707dbe2..7b0277a8c2b 100644 --- a/l10n/es_US/files_external.po +++ b/l10n/es_US/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (United States) (http://www.transifex.com/projects/p/owncloud/language/es_US/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/es_UY/files_external.po b/l10n/es_UY/files_external.po index 8a9ef13f76d..7e439465f4f 100644 --- a/l10n/es_UY/files_external.po +++ b/l10n/es_UY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Uruguay) (http://www.transifex.com/projects/p/owncloud/language/es_UY/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 4b628c87539..ca166d42154 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 294852b3037..f0c1a141b71 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,7 +69,7 @@ msgstr "Võti" msgid "Secret" msgstr "Salasõna" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Korv" @@ -86,16 +86,16 @@ msgid "Secret Key" msgstr "Salavõti" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Hostinimi (valikuline)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Post (valikuline)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Regioon (valikuline)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -118,8 +118,8 @@ msgstr "Rakenduse salasõna" msgid "Host" msgstr "Host" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Kasutajanimi" @@ -149,14 +149,6 @@ msgstr "Kliendi salasõna" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Kasutajanimi (kohustuslik)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Korv (kohustuslik)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Regioon (valikuline OpenStack Object Storage puhul)" @@ -182,8 +174,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "Tuvastuse URL lõpp-punkt (vajalik OpenStack Object Storage puhul)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "HTTP päringu aegumine sekundites (valikuline)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -233,15 +225,15 @@ msgstr "Isiklik" msgid "System" msgstr "Süsteem" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "Kõik kasutajad. Kirjuta, et valida kasutaja või grupp." -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "(grupp)" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Salvestatud" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 0fc96c0b188..f36d7843a66 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 09:30+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index fbdc8d98d0a..8d88e1728aa 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index bf66ad75e1f..b5bdf3eba82 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Pisike Sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index d494a2242e8..40cf1f7bf21 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 9aa628371f2..86e9ebb45b4 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -70,7 +70,7 @@ msgstr "Gakoa" msgid "Secret" msgstr "Sekretua" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -87,16 +87,16 @@ msgid "Secret Key" msgstr "Giltza Sekretua" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Hostalari izena (hautazkoa)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Portua (hautazkoa)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Eskualdea (hautazkoa)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -119,8 +119,8 @@ msgstr "App sekretua" msgid "Host" msgstr "Ostalaria" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Erabiltzaile izena" @@ -150,14 +150,6 @@ msgstr "Bezeroaren Sekretua" msgid "OpenStack Object Storage" msgstr "OpenStack Objektu Biltegiratzea" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Erabiltzaile izena (beharrezkoa)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Eskualdea (hautazkoa OpenStack Objektu Biltegiratzerako)" @@ -183,8 +175,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "Nortasun amaierako puntuaren URLa (beharrezkoa OpenStack Objektu Biltegiratzerako)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "HTTP eskarien gehienezko denbora segundutan (hautazkoa)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -234,15 +226,15 @@ msgstr "Pertsonala" msgid "System" msgstr "Sistema" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Gordeta" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index a6ca8fb29b6..31014b33072 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -32,15 +32,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "Ezin izan da hurruneko elkarbanaketa gehitu" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Zurekin elkarbanatuta" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Beste batzuekin elkarbanatuta" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Lotura bidez elkarbanatuta" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 8fe44ed491b..cfc7483e575 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 90a1b6d6c2a..8865938175c 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Alexander Gabilondo \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu_ES/files_external.po b/l10n/eu_ES/files_external.po index dad89f7328d..ab7b6097577 100644 --- a/l10n/eu_ES/files_external.po +++ b/l10n/eu_ES/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "Pertsonala" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 9b4bb4b144d..5ff9bac9357 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index 1542b2c2329..2f08b7b2779 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,15 +85,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "میزبانی" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "نام کاربری" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -232,15 +224,15 @@ msgstr "شخصی" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "ذخیره شد" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 2112032a5a7..b6d4909db46 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-19 01:54-0400\n" -"PO-Revision-Date: 2014-08-18 13:11+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: hamidm70 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -35,15 +35,15 @@ msgstr "گواهینامه SSL غیر قابل اعتماد یا غیر معتب msgid "Couldn't add remote share" msgstr "امکان افزودن اشتراک گذاری از راه دور وجود ندارد" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "موارد به اشتراک گذاشته شده با شما" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "موارد به اشتراک گذاشته شده با دیگران" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "اشتراک گذاشته شده از طریق پیوند" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 148d9b934e7..983303c6c69 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 7bef4211849..684fa103153 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Mohammad \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index ae12946c20e..54ff1e1784e 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 475f6d36c3a..2a54437901a 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,7 +68,7 @@ msgstr "Avain" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,16 +85,16 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Verkkonimi (valinnainen)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Portti (valinnainen)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Alue (valinnainen)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "Isäntä" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Käyttäjätunnus" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Käyttäjätunnus (vaaditaan)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,8 +173,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "HTTP-pyyntöjen aikakatkaisu sekunneissa (valinnainen)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -232,15 +224,15 @@ msgstr "Henkilökohtainen" msgid "System" msgstr "Järjestelmä" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "Kaikki käyttäjät. Kirjoita valitaksesi käyttäjän tai ryhmän." -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "(ryhmä)" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Tallennettu" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index c8ce3b61c17..ba1444c99f5 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-17 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 09:00+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -30,15 +30,15 @@ msgstr "Virheellinen tai ei-luotettu SSL-varmenne" msgid "Couldn't add remote share" msgstr "Etäjaon liittäminen epäonnistui" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Jaettu kanssasi" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Jaettu muiden kanssa" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Jaettu linkin kautta" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 9018770b45f..95ab250f4ad 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -196,11 +196,11 @@ msgstr "Salasanan vaihto ei onnistunut" #: js/admin.js:45 msgid "Are you really sure you want add \"{domain}\" as trusted domain?" -msgstr "" +msgstr "Haluatko varmasti liittää kohteen \"{domain}\" luotetuksi toimialueeksi?" #: js/admin.js:46 msgid "Add trusted domain" -msgstr "" +msgstr "Lisää luotettu toimialue" #: js/admin.js:146 msgid "Sending..." @@ -548,7 +548,7 @@ msgstr "Tällä palvelimella ei ole toimivaa internetyhteyttä. Sen seurauksena #: templates/admin.php:203 msgid "URL generation in notification emails" -msgstr "" +msgstr "Verkko-osoitteiden luominen sähköposti-ilmoituksissa" #: templates/admin.php:206 #, php-format @@ -939,11 +939,11 @@ msgstr "Poista salausavaimet" #: templates/users/main.php:34 msgid "Show storage location" -msgstr "" +msgstr "Näytä tallennustilan sijainti" #: templates/users/main.php:38 msgid "Show last log in" -msgstr "" +msgstr "Näytä viimeisin sisäänkirjautuminen" #: templates/users/part.createuser.php:4 msgid "Login Name" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 1458fc79967..de00dc05463 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index d1963b12ace..a46476b7c08 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 14dc42b94eb..961130e3f7c 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -75,7 +75,7 @@ msgstr "Clé" msgid "Secret" msgstr "Secret" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Seau" @@ -92,16 +92,16 @@ msgid "Secret Key" msgstr "Clé secrète" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Nom machine (optionnel)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Port (optionnel)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Région (facultatif)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -124,8 +124,8 @@ msgstr "Secret de l'application" msgid "Host" msgstr "Hôte" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nom d'utilisateur" @@ -155,14 +155,6 @@ msgstr "Secret client" msgid "OpenStack Object Storage" msgstr "Object de Stockage OpenStack" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Nom d'utilisation (requis)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (requis)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Region (optionnel pour Object de Stockage OpenStack)" @@ -188,8 +180,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL du point d'accès d'identité (requis pour le stockage OpenStack)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Temps maximal de requête HTTP en seconde (facultatif)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -239,15 +231,15 @@ msgstr "Personnel" msgid "System" msgstr "Système" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Sauvegarder" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index 2d175c3f7ab..c62c02f8270 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-18 01:54-0400\n" -"PO-Revision-Date: 2014-08-17 13:20+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Ogre Sympathique\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -38,15 +38,15 @@ msgstr "Certificat SSL invalide ou non-fiable" msgid "Couldn't add remote share" msgstr "Impossible d'ajouter un partage distant" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Partagés avec vous" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Partagés avec d'autres" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Partagés par lien" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 4e9b3a83340..ca90a67a568 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -23,8 +23,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 36d36c4590e..ee1522c0dd9 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: themen \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr_CA/files_external.po b/l10n/fr_CA/files_external.po index 86eb1b40031..ce8bf7a2c35 100644 --- a/l10n/fr_CA/files_external.po +++ b/l10n/fr_CA/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 0d2c2afcca4..dfdf59747cd 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 26faf3d80dc..2572d6f3aec 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ msgstr "Clave" msgid "Secret" msgstr "Secreto" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Bucket" @@ -85,16 +85,16 @@ msgid "Secret Key" msgstr "Clave secreta" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Nome de máquina (opcional)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Porto (opcional)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Rexión (opcional)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -117,8 +117,8 @@ msgstr "Secreto da aplicación" msgid "Host" msgstr "Servidor" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nome de usuario" @@ -148,14 +148,6 @@ msgstr "Secreto do cliente" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Nome de usuario (obrigatorio)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (obrigatorio)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Rexión (opcional para OpenStack Object Storage)" @@ -181,8 +173,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL do punto final da identidade (obrigatorio para OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Tempo de espera de peticións HTTP en segundos (opcional)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -232,15 +224,15 @@ msgstr "Persoal" msgid "System" msgstr "Sistema" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Gardado" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index f0d71adab1c..54dba0e4899 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-18 01:54-0400\n" -"PO-Revision-Date: 2014-08-17 08:57+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Miguel Anxo Bouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -31,15 +31,15 @@ msgstr "Certificado SSL incorrecto ou non fiábel" msgid "Couldn't add remote share" msgstr "Non foi posíbel engadir a compartición remota" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Compartido con vostede" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Compartido con outros" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Compartido por ligazón" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index c8f0d6896b5..cd696edb868 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 473ddbed416..6f07d44a917 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Miguel Anxo Bouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index 7a176428a89..cb574a30fe5 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index 839169a37bc..993cd374adc 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "מארח" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "שם משתמש" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "אישי" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "נשמר" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index 9a77478b590..1b6a5acf1c0 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 2677e75d02b..0e9e343d037 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 45d382cff0e..6ac17f3951a 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -50,11 +50,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -103,65 +103,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "בדיקת החיבור עברה בהצלחה" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "בדיקת החיבור נכשלה" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "האם אכן למחוק את הגדרות השרת הנוכחיות?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "אישור המחיקה" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -253,60 +253,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "הוספת הגדרות השרת" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "מארח" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "פורט" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN משתמש" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "סיסמא" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "לגישה אנונימית, השאר את הDM והסיסמא ריקים." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 8bb2f864d12..1a23a678887 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_external.po b/l10n/hi/files_external.po index 882518060d9..676da305053 100644 --- a/l10n/hi/files_external.po +++ b/l10n/hi/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "प्रयोक्ता का नाम" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "यक्तिगत" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/hi/files_sharing.po b/l10n/hi/files_sharing.po index 85c8f4807ce..6ee58281f83 100644 --- a/l10n/hi/files_sharing.po +++ b/l10n/hi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-18 01:54-0400\n" -"PO-Revision-Date: 2014-08-17 08:21+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 4ac9ce1a24b..b4f59c9f0c9 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index 98e1f16b467..7c39370adfd 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-18 01:54-0400\n" -"PO-Revision-Date: 2014-08-17 07:20+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,65 +102,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:321 lib/wizard.php:1057 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:864 lib/wizard.php:876 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" diff --git a/l10n/hi_IN/files_external.po b/l10n/hi_IN/files_external.po index eac7084c70c..8f4ddb08648 100644 --- a/l10n/hi_IN/files_external.po +++ b/l10n/hi_IN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (India) (http://www.transifex.com/projects/p/owncloud/language/hi_IN/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 67697f98938..98c1958b465 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index c3183289d3b..47d62681f8c 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ msgstr "Ključ" msgid "Secret" msgstr "Lozinka" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,15 +85,15 @@ msgid "Secret Key" msgstr "Tajni ključ" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "Poslužitelj" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Korisničko ime" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -232,15 +224,15 @@ msgstr "Osobno" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Snimljeno" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index c1805867d90..dec199a81ff 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 127fc7a1521..716d9e6c90d 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 46fb84a2b57..98d888748ee 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-15 21:31+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,47 +102,47 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -150,7 +150,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -158,11 +158,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:321 lib/wizard.php:1057 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:864 lib/wizard.php:876 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 3ac23999700..d3bdea111a4 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 3663839c471..852b6724426 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,15 +85,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "Kiszolgáló" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Felhasználónév" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -232,15 +224,15 @@ msgstr "Személyes" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Elmentve" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 0cc8c78bf0f..3492a7198e9 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-25 09:20+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index aefa741c675..a91068c2ce5 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index c803a01e470..527b525c9c7 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index 1b5f2e8084d..148341fabdd 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 54a5e2df142..9ce9faf9b97 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index 1ee919c2cdb..d08920bc909 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nomine de usator" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "Personal" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index a659be941d1..f79de51cded 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 1522a467e21..1c37052085e 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 5579533bf72..df653940cb5 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,65 +102,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Contrasigno" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/id/core.po b/l10n/id/core.po index 776ea672229..1ecc49ffac8 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 21e0cc027d7..d2bd50b87a0 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,16 +85,16 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Hostname (tambahan)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Port (tambahan)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Wilayah (tambahan)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "Host" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nama Pengguna" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Nama pengguna (dibutuhkan)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -232,15 +224,15 @@ msgstr "Pribadi" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Disimpan" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index f10d4e2f77e..fe19bd65483 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -30,15 +30,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Dibagikan dengan Anda" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Dibagikan dengan lainnya" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Dibagikan dengan tautan" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 60f8d524089..7e22d2d097b 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index 27369550cb9..78c575b006f 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,63 +102,63 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Pilih grup" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Tes koneksi sukses" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Tes koneksi gagal" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Anda ingin menghapus Konfigurasi Server saat ini?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Konfirmasi Penghapusan" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -250,60 +250,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Tambah Konfigurasi Server" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Host" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Protokol dapat tidak ditulis, kecuali anda menggunakan SSL. Lalu jalankan dengan ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "User DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "DN dari klien pengguna yang dengannya tautan akan diterapkan, mis. uid=agen,dc=contoh,dc=com. Untuk akses anonim, biarkan DN dan kata sandi kosong." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Sandi" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Untuk akses anonim, biarkan DN dan Kata sandi kosong." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Satu Base DN per baris" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Anda dapat menetapkan Base DN untuk pengguna dan grup dalam tab Lanjutan" diff --git a/l10n/io/files_external.po b/l10n/io/files_external.po index 66b2040de10..d2496f37b3b 100644 --- a/l10n/io/files_external.po +++ b/l10n/io/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Ido (http://www.transifex.com/projects/p/owncloud/language/io/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/is/core.po b/l10n/is/core.po index 5fd9fc053db..b9be75d469b 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index 381384f78cf..f420765b45b 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "Netþjónn" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Notendanafn" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "Um mig" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index 2709cf30737..ef31bd75ad3 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 187d09a702d..823fa205cd6 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 5964b6a0b0b..982ec7be772 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -50,11 +50,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -103,65 +103,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -253,60 +253,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Netþjónn" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Lykilorð" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/it/core.po b/l10n/it/core.po index ae6c17e6ee0..8f31fc1d50a 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index a49a1a3e776..58bc49234d3 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -71,7 +71,7 @@ msgstr "Chiave" msgid "Secret" msgstr "Segreto" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Bucket" @@ -88,16 +88,16 @@ msgid "Secret Key" msgstr "Chiave segreta" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Nome host (opzionale)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Porta (opzionale)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Regione (opzionale)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -120,8 +120,8 @@ msgstr "Segreto applicazione" msgid "Host" msgstr "Host" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nome utente" @@ -151,14 +151,6 @@ msgstr "Segreto del client" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Nome utente (richiesto)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (richiesto)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Regione (facoltativa per OpenStack Object Storage)" @@ -184,8 +176,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL del servizio di identità (richiesto per OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Tempo massimo in secondi delle richieste HTTP (opzionale)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -235,15 +227,15 @@ msgstr "Personale" msgid "System" msgstr "Sistema" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "Tutti gli utenti. Digita per selezionare utente o gruppo." -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "(gruppo)" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Salvato" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 9267c66680d..52155b57a9e 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-18 01:54-0400\n" -"PO-Revision-Date: 2014-08-17 06:30+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -32,15 +32,15 @@ msgstr "Certificato SSL non valido o non attendibile" msgid "Couldn't add remote share" msgstr "Impossibile aggiungere la condivisione remota" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Condiviso con te" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Condiviso con altri" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Condiviso tramite collegamento" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 9be7fd4e04b..808ea9c6ece 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -942,11 +942,11 @@ msgstr "Elimina chiavi di cifratura" #: templates/users/main.php:34 msgid "Show storage location" -msgstr "" +msgstr "Mostra posizione di archiviazione" #: templates/users/main.php:38 msgid "Show last log in" -msgstr "" +msgstr "Mostra ultimo accesso" #: templates/users/part.createuser.php:4 msgid "Login Name" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 0647bbfc932..030a5ca268c 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja/core.po b/l10n/ja/core.po index c0b7d985b8e..ba391962ec0 100644 --- a/l10n/ja/core.po +++ b/l10n/ja/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja/files_external.po b/l10n/ja/files_external.po index d86daeb0a2e..4fdd09c2b84 100644 --- a/l10n/ja/files_external.po +++ b/l10n/ja/files_external.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -71,7 +71,7 @@ msgstr "キー" msgid "Secret" msgstr "シークレットキー" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "バケット名" @@ -88,16 +88,16 @@ msgid "Secret Key" msgstr "シークレットキー" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "ホスト名 (オプション)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "ポート (オプション)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "リージョン (オプション)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -120,8 +120,8 @@ msgstr "アプリシークレット" msgid "Host" msgstr "ホスト" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "ユーザー名" @@ -151,14 +151,6 @@ msgstr "クライアント秘密キー" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "ユーザー名 (必須)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "バケット (必須)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "リージョン (OpenStack Object Storage用のオプション)" @@ -184,8 +176,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "識別用エンドポイントURL (OpenStack Object Storage用に必要)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "HTTPリクエストのタイムアウト秒数 (オプション)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -235,15 +227,15 @@ msgstr "個人" msgid "System" msgstr "システム" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "保存されました" diff --git a/l10n/ja/files_sharing.po b/l10n/ja/files_sharing.po index f0e368a2ddd..447678e8769 100644 --- a/l10n/ja/files_sharing.po +++ b/l10n/ja/files_sharing.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-20 01:54-0400\n" -"PO-Revision-Date: 2014-08-19 15:10+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: kuromabo \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja/settings.po b/l10n/ja/settings.po index dddf181a415..646bcd84567 100644 --- a/l10n/ja/settings.po +++ b/l10n/ja/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja/user_ldap.po b/l10n/ja/user_ldap.po index 0063ad391df..9a8db532b1e 100644 --- a/l10n/ja/user_ldap.po +++ b/l10n/ja/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: kuromabo \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/jv/files_external.po b/l10n/jv/files_external.po index e037dc17ad8..a38ab4f2133 100644 --- a/l10n/jv/files_external.po +++ b/l10n/jv/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 91698e3e787..f3a818b87ed 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index e33bbcd5069..e725026bc1f 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "ჰოსტი" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "მომხმარებლის სახელი" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "პირადი" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 6e05cf98ca7..d085396c195 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index b41643ef30d..e40a86004ac 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index d9a0752dd4d..b05c2388cef 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,63 +102,63 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "ჯგუფების არჩევა" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "კავშირის ტესტირება მოხერხდა" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "კავშირის ტესტირება ვერ მოხერხდა" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "ნამდვილად გინდათ წაშალოთ სერვერის მიმდინარე პარამეტრები?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "წაშლის დადასტურება" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -250,60 +250,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "სერვერის პარამეტრების დამატება" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "ჰოსტი" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "თქვენ შეგიძლიათ გამოტოვოთ პროტოკოლი. გარდა ამისა გჭირდებათ SSL. შემდეგ დაიწყეთ ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "პორტი" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "მომხმარებლის DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "მომხმარებლის DN რომელთანაც უნდა მოხდეს დაკავშირება მოხდება შემდეგნაირად მაგ: uid=agent,dc=example,dc=com. ხოლო ანონიმური დაშვებისთვის, დატოვეთ DN–ის და პაროლის ველები ცარიელი." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "პაროლი" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "ანონიმური დაშვებისთვის, დატოვეთ DN–ის და პაროლის ველები ცარიელი." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "ერთი საწყისი DN ერთ ხაზზე" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "თქვენ შეგიძლიათ მიუთითოთ საწყისი DN მომხმარებლებისთვის და ჯგუფებისთვის Advanced ტაბში" diff --git a/l10n/km/core.po b/l10n/km/core.po index 49972e261f3..f883de7240c 100644 --- a/l10n/km/core.po +++ b/l10n/km/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/km/files_external.po b/l10n/km/files_external.po index 4ea69b17956..d675bae213c 100644 --- a/l10n/km/files_external.po +++ b/l10n/km/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,15 +85,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "ម៉ាស៊ីន​ផ្ទុក" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "ឈ្មោះ​អ្នកប្រើ" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -232,15 +224,15 @@ msgstr "ផ្ទាល់​ខ្លួន" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "បាន​រក្សាទុក" diff --git a/l10n/km/files_sharing.po b/l10n/km/files_sharing.po index b43493683b4..f76bc3f2100 100644 --- a/l10n/km/files_sharing.po +++ b/l10n/km/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -31,15 +31,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/km/settings.po b/l10n/km/settings.po index b0dee64c8d4..f118647436b 100644 --- a/l10n/km/settings.po +++ b/l10n/km/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/km/user_ldap.po b/l10n/km/user_ldap.po index cd50cc91875..4066a158609 100644 --- a/l10n/km/user_ldap.po +++ b/l10n/km/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: beth borin \n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -51,11 +51,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -104,63 +104,63 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "សាក​ល្បង​ការ​ត​ភ្ជាប់ បាន​ជោគជ័យ" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "សាកល្បង​ការ​តភ្ជាប់ មិន​បាន​សម្រេច" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "តើ​អ្នក​ពិត​ជា​ចង់​លុប​ការ​កំណត់​រចនាសម្ព័ន្ធ​ម៉ាស៊ីន​បម្រើ​បច្ចុប្បន្ន​មែន​ទេ?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "បញ្ជាក់​ការ​លុប" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "បន្ថែម​ការ​កំណត់​រចនាសម្ព័ន្ធ​ម៉ាស៊ីន​បម្រើ" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "ម៉ាស៊ីន​ផ្ទុក" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "ច្រក" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "ពាក្យសម្ងាត់" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/kn/files_external.po b/l10n/kn/files_external.po index 89a62dc205c..f1a8ece2948 100644 --- a/l10n/kn/files_external.po +++ b/l10n/kn/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index fea3eabe745..dbcb65921de 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index 6c24a7c0ef8..61be1b459d0 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -69,7 +69,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -86,15 +86,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -118,8 +118,8 @@ msgstr "" msgid "Host" msgstr "호스트" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "사용자 이름" @@ -149,14 +149,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -182,7 +174,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -233,15 +225,15 @@ msgstr "개인" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "저장됨" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index dd30c53a500..8a346da21f4 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -32,15 +32,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 181506fffa9..ce09bdfab43 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index 61823c73a49..bd420424f7c 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -52,11 +52,11 @@ msgstr "동작이 지정되지 않음" msgid "No configuration specified" msgstr "설정이 지정되지 않음" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "데이터가 지정되지 않음" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr " 설정 %s을(를) 지정할 수 없음" @@ -105,63 +105,63 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "설정 올바름" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "설정 올바르지 않음" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "설정 불완전함" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "그룹 선택" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "객체 클래스 선택" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "속성 선택" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "연결 시험 성공" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "연결 시험 실패" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "현재 서버 설정을 지우시겠습니까?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "삭제 확인" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "그룹 %s개 찾음" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "사용자 %s명 찾음" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "필요한 기능을 찾을 수 없음" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "잘못된 호스트" @@ -253,60 +253,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "로그인을 시도할 때 적용할 필터를 입력하십시오. %%uid는 로그인 동작의 사용자 이름으로 대체됩니다. 예: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "서버 설정 추가" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "호스트" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "SSL을 사용하지 않으면 프로토콜을 입력하지 않아도 됩니다. SSL을 사용하려면 ldaps://를 입력하십시오." -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "포트" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "사용자 DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "바인딩 작업을 수행할 클라이언트 사용자 DN입니다. 예를 들어서 uid=agent,dc=example,dc=com입니다. 익명 접근을 허용하려면 DN과 암호를 비워 두십시오." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "암호" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "익명 접근을 허용하려면 DN과 암호를 비워 두십시오." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "기본 DN을 한 줄에 하나씩 입력하십시오" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "고급 탭에서 사용자 및 그룹에 대한 기본 DN을 지정할 수 있습니다." diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 812b430f750..c6af3ffc093 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_external.po b/l10n/ku_IQ/files_external.po index 5f80beea342..2573d27326f 100644 --- a/l10n/ku_IQ/files_external.po +++ b/l10n/ku_IQ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "ناوی به‌کارهێنه‌ر" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index 86caf3a0b44..82e4e4979f7 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index c134cde8948..f8840dc57d5 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 88adf0ae7f9..d4af627640f 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,65 +102,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "وشەی تێپەربو" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index c42168e4cdb..60ba106bfa1 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index 6015a32bf44..12904bc711e 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "Host" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Benotzernumm" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "Perséinlech" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index 70a5569d4b1..4ed59cb8b01 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -30,15 +30,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 8ec0b765491..30fb813bc82 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index f4bf9d319ae..731c885084b 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,65 +102,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Host" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Passwuert" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index a2fca3f0362..03386e12ae7 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index 2717bdf99bf..1c79dc822b2 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,15 +85,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "Mazgas" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Prisijungimo vardas" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -232,15 +224,15 @@ msgstr "Asmeniniai" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index d4463e328f6..1f6968ab8b7 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -32,15 +32,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index e7540452ad7..6cec4753dd4 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index b10a46d45eb..0a9d33751d7 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -51,11 +51,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -104,47 +104,47 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Pasirinkti grupes" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Ryšio patikrinimas pavyko" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Ryšio patikrinimas nepavyko" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Ar tikrai norite ištrinti dabartinę serverio konfigūraciją?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Patvirtinkite trynimą" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -152,7 +152,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -160,11 +160,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -256,60 +256,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Pridėti serverio konfigūraciją" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Mazgas" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Prievadas" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Naudotojas DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Slaptažodis" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Anoniminiam prisijungimui, palikite DN ir Slaptažodis laukus tuščius." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Vienas bazinis DN eilutėje" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 34d69e80710..50b1c3c476a 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index 83521962c82..aa49cf304a5 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,15 +85,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "Resursdators" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Lietotājvārds" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -232,15 +224,15 @@ msgstr "Personīgi" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 78c9b998990..a22084db330 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 43406e7408c..6000a4fa264 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 8c618663422..d71ba6b6f84 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,47 +102,47 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Izvēlieties grupas" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Savienojuma tests ir veiksmīgs" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Savienojuma tests cieta neveiksmi" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Vai tiešām vēlaties dzēst pašreizējo servera konfigurāciju?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Apstiprināt dzēšanu" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -150,7 +150,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -158,11 +158,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -254,60 +254,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Pievienot servera konfigurāciju" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Resursdators" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Var neiekļaut protokolu, izņemot, ja vajag SSL. Tad sākums ir ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Ports" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Lietotāja DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "Klienta lietotāja DN, ar ko veiks sasaisti, piemēram, uid=agent,dc=example,dc=com. Lai piekļūtu anonīmi, atstājiet DN un paroli tukšu." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Parole" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Lai piekļūtu anonīmi, atstājiet DN un paroli tukšu." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Viena bāzes DN rindā" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Lietotājiem un grupām bāzes DN var norādīt cilnē “Paplašināti”" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 5dd4b6ecc75..fff91af7b41 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index dc3d4c706dd..ee4832f4f4c 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "Домаќин" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Корисничко име" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "Лично" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Снимено" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index 0376d6962bd..b8cfadcce9f 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -30,15 +30,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Споделено со тебе" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Сподели со останатите" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Споделено со врска" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 8917daff0aa..1008e262e52 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 4ac1ad6fd0a..ccd9241fc6b 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -50,11 +50,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -103,65 +103,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Тестот за поврзување е успешен" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Тестот за поврзување не е успешен" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Потврдете го бришењето" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -253,60 +253,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Домаќин" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Може да го скокнете протколот освен ако не ви треба SSL. Тогаш ставете ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Порта" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Лозинка" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/ml/files_external.po b/l10n/ml/files_external.po index 8a90058a0eb..ab871fc0452 100644 --- a/l10n/ml/files_external.po +++ b/l10n/ml/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/ml_IN/files_external.po b/l10n/ml_IN/files_external.po index 352d803b5c8..41eab87aa03 100644 --- a/l10n/ml_IN/files_external.po +++ b/l10n/ml_IN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/mn/files_external.po b/l10n/mn/files_external.po index 55c2de66f3d..52265aa29fc 100644 --- a/l10n/mn/files_external.po +++ b/l10n/mn/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index f2ca6aa6dc4..1dc967bfd5c 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index 26742fd5316..8e0fe9fd873 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nama pengguna" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "Peribadi" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index 840a9cb0f08..b68692bfe80 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index e6f40acabe0..98045bb1227 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 8a4fafa6503..8e3229e3613 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,63 +102,63 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -250,60 +250,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Kata laluan" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index a8b6ac5e912..5b660d8c17a 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -148,27 +148,27 @@ msgstr "နိုဝင်ဘာ" msgid "December" msgstr "ဒီဇင်ဘာ" -#: js/js.js:496 +#: js/js.js:497 msgid "Settings" msgstr "" -#: js/js.js:585 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:586 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:587 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:588 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:602 +#: js/js.js:603 msgid "Saving..." msgstr "" diff --git a/l10n/my_MM/files_external.po b/l10n/my_MM/files_external.po index 34500ffebcd..77f980183cd 100644 --- a/l10n/my_MM/files_external.po +++ b/l10n/my_MM/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "သုံးစွဲသူအမည်" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index 379396fd485..99c00dc04db 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/my_MM/settings.po b/l10n/my_MM/settings.po index 2e2bfa78d10..efe2e295ef1 100644 --- a/l10n/my_MM/settings.po +++ b/l10n/my_MM/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/user_ldap.po b/l10n/my_MM/user_ldap.po index 5d3304afdf0..6cce582f810 100644 --- a/l10n/my_MM/user_ldap.po +++ b/l10n/my_MM/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-06-10 01:54-0400\n" -"PO-Revision-Date: 2014-06-10 05:01+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,64 +102,64 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:83 lib/wizard.php:97 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" -#: lib/wizard.php:130 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:825 lib/wizard.php:837 -msgid "Invalid Host" +#: lib/wizard.php:392 lib/wizard.php:1128 +msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:1025 -msgid "Could not find the desired feature" +#: lib/wizard.php:935 lib/wizard.php:947 +msgid "Invalid Host" msgstr "" #: settings.php:52 @@ -250,60 +250,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "စကားဝှက်" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 2e81ec80aea..0a5662c7936 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index 175a44e83dc..fea73dad737 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -70,7 +70,7 @@ msgstr "Key" msgid "Secret" msgstr "Secret" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Bucket" @@ -87,16 +87,16 @@ msgid "Secret Key" msgstr "Secret Key" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Servernavn (ikke påkrevd)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Port (ikke påkrevd)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Region (ikke påkrevd)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -119,8 +119,8 @@ msgstr "App secret" msgid "Host" msgstr "Tjener" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Brukernavn" @@ -150,14 +150,6 @@ msgstr "Client secret" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Brukernavn (påkrevet)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (påkrevet)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Region (ikke påkrevet for OpenStack Object Storage)" @@ -183,8 +175,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL for identity endpoint (påkrevet for OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Tidsavbrudd for HTTP-spørringer i sekunder (ikke påkrevet)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -234,15 +226,15 @@ msgstr "Personlig" msgid "System" msgstr "System" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Lagret" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index a4cc1fc2d1a..7e08b7cbace 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-24 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 15:01+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: vidaren \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index e8d03233907..5b82dd69ab8 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index f81b1637b69..62a86cff667 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: vidaren \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nds/files_external.po b/l10n/nds/files_external.po index 99a88cb4859..3637d320a9a 100644 --- a/l10n/nds/files_external.po +++ b/l10n/nds/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/ne/files_external.po b/l10n/ne/files_external.po index f940b6f552b..e286b655c0b 100644 --- a/l10n/ne/files_external.po +++ b/l10n/ne/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index fad5a22535c..b00eb54dc47 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 57fd64d7db5..b900b15e17d 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,7 +68,7 @@ msgstr "Sleutel" msgid "Secret" msgstr "Geheim" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Bucket" @@ -85,16 +85,16 @@ msgid "Secret Key" msgstr "Secret Key" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Hostname (optioneel)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Poort (optioneel)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Regio (optioneel)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -117,8 +117,8 @@ msgstr "App secret" msgid "Host" msgstr "Host" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Gebruikersnaam" @@ -148,14 +148,6 @@ msgstr "Client secret" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Gebruikersnaam (verplicht)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (verplicht)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Regio (optioneel voor OpenStack Object Storage)" @@ -181,8 +173,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL van identity endpoint (verplicht voor OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Time-out van HTTP aanvragen in seconden (optioneel)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -232,15 +224,15 @@ msgstr "Persoonlijk" msgid "System" msgstr "Systeem" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "Alle gebruikers. Tikken om een gebruiker of groep te selecteren." -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "(groep)" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Bewaard" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index ea680a71d3c..4d37133b450 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-24 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 18:50+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Koen Willems \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 41e1cc3c11a..efd222da1ee 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" +"Last-Translator: Koen Willems \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" @@ -942,11 +942,11 @@ msgstr "Verwijder cryptosleutels" #: templates/users/main.php:34 msgid "Show storage location" -msgstr "" +msgstr "Toon opslaglocatie" #: templates/users/main.php:38 msgid "Show last log in" -msgstr "" +msgstr "Toon laatste inlog" #: templates/users/part.createuser.php:4 msgid "Login Name" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index dd199e789d5..a3272d9c153 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 99f58395760..73b93c05e6b 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index 461b697c5b6..e3a7ba5ce74 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "Tenar" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Brukarnamn" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "Personleg" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index faaa351a2c3..653c789baed 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -30,15 +30,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 017d9f739f9..dddc966ba20 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index d26153c9716..fa6d38721bc 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,65 +102,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Vel grupper" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Tenar" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Passord" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/nqo/files_external.po b/l10n/nqo/files_external.po index 40313a0cf16..501ba2dcd11 100644 --- a/l10n/nqo/files_external.po +++ b/l10n/nqo/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 1713bf8b949..b7d94444c9f 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index 759164de14f..9b649fc60a3 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Non d'usancièr" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "Personal" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index 941fbbfa0ad..7acb2d0669c 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index a6b2fb0bf6e..eb1250e711e 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index ca93bc819c4..5f46a5620e3 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,65 +102,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Senhal" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/or_IN/files_external.po b/l10n/or_IN/files_external.po index 1d095c72ba4..d9c8b72f13a 100644 --- a/l10n/or_IN/files_external.po +++ b/l10n/or_IN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/pa/core.po b/l10n/pa/core.po index cb15576e96c..9ede33850ea 100644 --- a/l10n/pa/core.po +++ b/l10n/pa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pa/files_external.po b/l10n/pa/files_external.po index b3acba4c09c..acbf84a5687 100644 --- a/l10n/pa/files_external.po +++ b/l10n/pa/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "ਯੂਜ਼ਰ-ਨਾਂ" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/pa/files_sharing.po b/l10n/pa/files_sharing.po index c7ece5eaf5e..e23ea542b89 100644 --- a/l10n/pa/files_sharing.po +++ b/l10n/pa/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/pa/settings.po b/l10n/pa/settings.po index 59e523de2e0..f130055dc6a 100644 --- a/l10n/pa/settings.po +++ b/l10n/pa/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pa/user_ldap.po b/l10n/pa/user_ldap.po index a9285449ff4..0a23f1eeb81 100644 --- a/l10n/pa/user_ldap.po +++ b/l10n/pa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-06-04 01:54-0400\n" -"PO-Revision-Date: 2014-06-04 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,66 +102,66 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:83 lib/wizard.php:97 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:130 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:825 lib/wizard.php:837 -msgid "Invalid Host" +#: lib/wizard.php:392 lib/wizard.php:1128 +msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:1025 -msgid "Could not find the desired feature" +#: lib/wizard.php:935 lib/wizard.php:947 +msgid "Invalid Host" msgstr "" #: settings.php:52 @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "ਪਾਸਵਰ" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 0645612784b..db7b8618661 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 85214797c43..8d5ae01f872 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -70,7 +70,7 @@ msgstr "Klucz" msgid "Secret" msgstr "Hasło" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Kosz" @@ -87,16 +87,16 @@ msgid "Secret Key" msgstr "Klucz hasła" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Nazwa hosta (opcjonalnie)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Port (opcjonalnie)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Region (opcjonalnie)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -119,8 +119,8 @@ msgstr "Hasło aplikacji" msgid "Host" msgstr "Host" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nazwa użytkownika" @@ -150,14 +150,6 @@ msgstr "Hasło klienta" msgid "OpenStack Object Storage" msgstr "Magazyn obiektów OpenStack" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Użytkownik (wymagany)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Kosz (wymagany)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Region (opcjonalny dla magazynu obiektów OpenStack)" @@ -183,8 +175,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL lub zakończenie jednostki (wymagane dla magazynu obiektów OpenStack)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Czas wygaśnięcia żądań HTTP w sekundach (opcjonalne)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -234,15 +226,15 @@ msgstr "Osobiste" msgid "System" msgstr "System" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Zapisano" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 85c2c69b006..dc78a658a90 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-25 08:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Maciej Przybecki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 3552e490c8e..dcc7ae96ab5 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 022e0c7f1dd..cc1eea350bd 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Maciej Przybecki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 957056c391b..08aa6518373 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index deb22e82e14..f87db213091 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,7 +68,7 @@ msgstr "Chave" msgid "Secret" msgstr "Segredo" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Cesta" @@ -85,16 +85,16 @@ msgid "Secret Key" msgstr "Chave Secreta" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Nome do Host (opcional)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Porta (opcional)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Região (opcional)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -117,8 +117,8 @@ msgstr "Segredo da Aplicação" msgid "Host" msgstr "Host" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nome de Usuário" @@ -148,14 +148,6 @@ msgstr "Segredo do cliente" msgid "OpenStack Object Storage" msgstr "Armazenamento de Objetos OpenStack" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Nome do Usuário (requerido)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Cesta (requerido)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Região (opcional para armazenamento de objetos OpenStack)" @@ -181,8 +173,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "Ponto final de identidade da URL (obrigatório para armazenamento de objetos OpenStack)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Tempo limite de solicitações HTTP em segundos (opcional)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -232,15 +224,15 @@ msgstr "Pessoal" msgid "System" msgstr "Sistema" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "Todos os usuários. Digite para selecionar usuário ou grupo." -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "(grupo)" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Salvo" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index cf8d0c0eb43..88377f8ac9e 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-21 01:54-0400\n" -"PO-Revision-Date: 2014-08-20 18:50+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: dudanogueira \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index cafdc377f8a..253e4306963 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 21d5d003b36..33f44ad36c8 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 7b115c8400f..16e0c47c3d8 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index a10e4b95cd5..f89397a7aed 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -73,7 +73,7 @@ msgstr "Chave" msgid "Secret" msgstr "Secreto" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Bucket" @@ -90,16 +90,16 @@ msgid "Secret Key" msgstr "Chave Secreta" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Nome do Hospedeiro (opcional)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Porta (opcional)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Região (opcional)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -122,8 +122,8 @@ msgstr "Chave secreta da aplicação" msgid "Host" msgstr "Endereço" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nome de utilizador" @@ -153,14 +153,6 @@ msgstr "Segredo do cliente" msgid "OpenStack Object Storage" msgstr "Armazenamento de objetos OpenStack" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Utilizador (requerido)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (necessário)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Região (opcional para OpenStack Object Storage)" @@ -186,8 +178,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "Nome do Serviço (necessário para OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Timeout de solicitações HTTP em segundos (opcional)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -237,15 +229,15 @@ msgstr "Pessoal" msgid "System" msgstr "Sistema" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Guardado" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 38cbce32bc7..7eca34df8fb 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-20 01:54-0400\n" -"PO-Revision-Date: 2014-08-19 15:21+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 637f841462e..db8f2bb7087 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 7a97ff037db..f64aadbd432 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Luis Jorge Simões das Neves \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index b1c4d406818..076743fa69f 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index 2e587514469..fb69503e7e6 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -69,7 +69,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -86,16 +86,16 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Regiune" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -118,8 +118,8 @@ msgstr "" msgid "Host" msgstr "Gazdă" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nume utilizator" @@ -149,14 +149,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -182,7 +174,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -233,15 +225,15 @@ msgstr "Personal" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Salvat" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index 894c2c54780..e8dd4ccf95e 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -31,15 +31,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Partajat cu tine" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Partajat cu alții" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 656f38f7c91..4ad8184a29b 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 818c096c26e..cc53205fe30 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -50,11 +50,11 @@ msgstr "Nu este specificata nici o acţiune " msgid "No configuration specified" msgstr "Nu este specificata nici o configurare " -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -103,47 +103,47 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Configuraţie valida" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Configuraţie incorecta " -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Configuraţie incompleta " -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Selectaţi grupuri " -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Selectaţi caracteristici" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Testul de conectare a reuşit " -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Testul de conectare a eşuat " -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Sunteţi sigur ca vreţi sa ştergeţi configuraţia actuala a serverului ?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Confirmaţi Ştergerea " -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -151,7 +151,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -159,11 +159,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -255,60 +255,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Adăugaţi Configuraţia Serverului" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Gazdă" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Puteți omite protocolul, decât dacă folosiți SSL. Atunci se începe cu ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Portul" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN al utilizatorului" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "DN-ul clientului utilizator cu care se va efectua conectarea, d.e. uid=agent,dc=example,dc=com. Pentru acces anonim, lăsăți DN și Parolă libere." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Parolă" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Pentru acces anonim, lăsați DN și Parolă libere." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Un Base DN pe linie" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Puteți să specificați DN de bază pentru utilizatori și grupuri în fila Avansat" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 92023f0c8b8..69298f6c4e3 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -33,8 +33,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 37aa1655e88..01a124e74a2 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -76,7 +76,7 @@ msgstr "Ключ" msgid "Secret" msgstr "Секрет" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Корзина" @@ -93,16 +93,16 @@ msgid "Secret Key" msgstr "Секретный ключ" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Хост (опц.)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Порт (опц.)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Регион (опц.)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -125,8 +125,8 @@ msgstr "Секретный ключ " msgid "Host" msgstr "Сервер" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Имя пользователя" @@ -156,14 +156,6 @@ msgstr "Клиентский ключ " msgid "OpenStack Object Storage" msgstr "Хранилище объектов OpenStack" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Имя пользователя (обяз.)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (обяз.)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Регион (необяз. для Хранилища объектов OpenStack)" @@ -189,8 +181,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL для удостоверения конечной точки (обяз. для Хранилища объектов OpenStack)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Тайм-аут HTTP запросов в секундах (опционально)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -240,15 +232,15 @@ msgstr "Личное" msgid "System" msgstr "Система" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Сохранено" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index e4ab97f355b..8850bc2c9b3 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-25 11:10+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: sad2shade \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 9a5d6e524a9..b64ae60e5d0 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -32,8 +32,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index ad23e4e79b7..e62e4a73f11 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Alexander Savchenko\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 03a237ba88a..c518b474ddf 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index 8a24a7090c9..684b64649cf 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "සත්කාරකය" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "පරිශීලක නම" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "පෞද්ගලික" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index 2dd3ed0fb24..4b2e3d39633 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 8068b65ea0d..aac9dc87a35 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index 5ff263c32d6..470d37e8a15 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,65 +102,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "සත්කාරකය" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "SSL අවශ්‍යය වන විට පමණක් හැර, අන් අවස්ථාවන්හිදී ප්‍රොටොකෝලය අත් හැරිය හැක. භාවිතා කරන විට ldaps:// ලෙස ආරම්භ කරන්න" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "තොට" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "මුර පදය" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/sk/files_external.po b/l10n/sk/files_external.po index b3eec10c996..0f9badc6594 100644 --- a/l10n/sk/files_external.po +++ b/l10n/sk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "Osobné" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 2ee1983d25b..b72f46e8120 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 145e8cbfed0..5fdfab1fca1 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -69,7 +69,7 @@ msgstr "Kľúč" msgid "Secret" msgstr "Tajné" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Sektor" @@ -86,16 +86,16 @@ msgid "Secret Key" msgstr "Tajný kľúč" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Hostname (voliteľný)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Port (voliteľný)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Región (voliteľný)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -118,8 +118,8 @@ msgstr "Heslo aplikácie" msgid "Host" msgstr "Hostiteľ" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Používateľské meno" @@ -149,14 +149,6 @@ msgstr "Heslo klienta" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Používateľské meno (povinné)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Sektor (povinné)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Región (voliteľné pre OpenStack Object Storage)" @@ -182,8 +174,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL of identity endpoint (požadované pre OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Vypršanie HTTP požadiavkiek v sekundách (voliteľné)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -233,15 +225,15 @@ msgstr "Osobné" msgid "System" msgstr "Systém" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Uložené" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index 749d73b49de..ea8feb77209 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-19 01:54-0400\n" -"PO-Revision-Date: 2014-08-18 13:30+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: helix84 \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -31,15 +31,15 @@ msgstr "Neplatný alebo nedôveryhodný certifikát SSL" msgid "Couldn't add remote share" msgstr "Nemožno pridať vzdialené zdieľanie" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Zdieľané s vami" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Zdieľané s ostanými" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Zdieľané pomocou odkazu" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 4bedbf13cdd..2f4e334acfe 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 52ad25812a4..98f5d54d9c9 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: helix84 \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index e5f7bc39502..4e682fa84b7 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 77bebd6915b..1f7ce85464c 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" -"Last-Translator: Matej Urbančič <>\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,7 +68,7 @@ msgstr "Ključ" msgid "Secret" msgstr "Skrivni ključ" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Pomnilniško vedro" @@ -85,16 +85,16 @@ msgid "Secret Key" msgstr "Skrivni ključ" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Ime gostitelja (izbirno)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Vrata (izbirno)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Območje (izbirno)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -117,8 +117,8 @@ msgstr "Skrivni programski ključ" msgid "Host" msgstr "Gostitelj" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Uporabniško ime" @@ -148,14 +148,6 @@ msgstr "Skrivni ključ odjemalca" msgid "OpenStack Object Storage" msgstr "Shramba predmeta OpenStack" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Uporabniško ime (zahtevano)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Pomnilniško vedro (zahtevano)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Območje (zahtevano za shrambo predmeta OpenStack)" @@ -181,8 +173,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "Naslov URL končne točke uporabnika (zahtevano za shrambo predmeta OpenStack)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Časovni zamik zahtev HTTP v sekundah (izbirno)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -232,15 +224,15 @@ msgstr "Osebno" msgid "System" msgstr "Sistem" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "Vsi uporabniki. Skupino ali uporabnika je mogoče tudi izbrati." -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "(skupina)" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Shranjeno" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index 5744597d764..afef672f7c9 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-25 18:11+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Matej Urbančič <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 34dc0f718f0..7b1ce449430 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index 3462b6c35e9..e194798823e 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Matej Urbančič <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index b138dc8fb31..ccd5e461209 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index 79298b1822b..1d24aab8d33 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "Pritësi" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Përdoruesi" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "Personale" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "U ruajt" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index 4fa611408db..4fadd310cd7 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -31,15 +31,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index cc5d64d862b..da075befe33 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index c6a330f5bdf..99e490e49bb 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,65 +102,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Prova e lidhjes përfundoi me sukses" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Prova e lidhjes dështoi" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Jeni vërtetë të sigurt të fshini konfigurimet aktuale të serverit?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Konfirmoni Fshirjen" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Shtoni konfigurimet e serverit" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Pritësi" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Ju mund të mos vendosni protokollin ,vetëm nëse ju nevojitet SSL. atherë filloni me ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Porta" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Përdoruesi DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "DN -ja e klientit për përdoruesin që kërkon të lidhet duhet të jetë si psh,uid=agent,dc=example,dc=com. Për lidhjet anonime lini boshe hapsirat e DN dhe fjalëkalim " -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "fjalëkalim" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Për tu lidhur në mënyre anonime, lini bosh hapsirat e DN dhe fjalëkalim" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Një baze DN për rrjesht" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Ju mund të specifikoni Bazen DN për përdorues dhe grupe në butonin 'Të Përparuara'" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index ea5b75f9bca..7997c8fb5c6 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index 0f6c5467963..4f1e2d240a2 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "Домаћин" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Корисничко име" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "Лично" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index b783e274654..0802cfb9117 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index c2ccdb0f340..3efb8510f28 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index db0c70bd46a..da8fc96d2c0 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,47 +102,47 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -150,7 +150,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -158,11 +158,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -254,60 +254,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Домаћин" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Можете да изоставите протокол, осим ако захтевате SSL. У том случају почните са ldaps://." -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Порт" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Корисник DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "DN корисника клијента са којим треба да се успостави веза, нпр. uid=agent,dc=example,dc=com. За анониман приступ, оставите поља DN и лозинка празним." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Лозинка" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "За анониман приступ, оставите поља DN и лозинка празним." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index eb225e90be9..58e8c0c307e 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index 9447b10b20d..607029e64d9 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Korisničko ime" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "Lično" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index d82f0d6debc..618fb01457b 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index b12f08bfee9..f4dbda5f9ec 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index 3518960487a..54de6076289 100644 --- a/l10n/sr@latin/user_ldap.po +++ b/l10n/sr@latin/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-18 01:54-0400\n" -"PO-Revision-Date: 2014-08-17 14:30+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,47 +102,47 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -150,7 +150,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -158,11 +158,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:321 lib/wizard.php:1057 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:864 lib/wizard.php:876 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" diff --git a/l10n/su/files_external.po b/l10n/su/files_external.po index c970650ddef..fde72ea23c5 100644 --- a/l10n/su/files_external.po +++ b/l10n/su/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 952604d5279..fad3e586259 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 706fa9fe2d8..7707f49fcbf 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -73,7 +73,7 @@ msgstr "Nyckel" msgid "Secret" msgstr "Hemlig" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Bucket" @@ -90,16 +90,16 @@ msgid "Secret Key" msgstr "Hemlig nyckel" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Värdnamn (valfritt)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Port (valfritt)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Region (valfritt)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -122,8 +122,8 @@ msgstr "App-hemlighet" msgid "Host" msgstr "Server" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Användarnamn" @@ -153,14 +153,6 @@ msgstr "klient secret" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Användarnamn (måste anges)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (krävs)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Region (valfritt för OpenStack Object Storage)" @@ -186,8 +178,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL för identitetens slutpunkt (krävs för OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Timeout för HTTP-förfrågningar i sekunder (tillval)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -237,15 +229,15 @@ msgstr "Personligt" msgid "System" msgstr "System" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Sparad" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index c00dd088d8c..10ec2fc7630 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -35,15 +35,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "Kunde inte lägga till fjärrutdelning" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Delat med dig" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Delat med andra" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Delad som länk" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 45474a3b3c1..b9f04be3097 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 931120dd933..834be7c3976 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Juho Ojala\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/files_external.po b/l10n/sw_KE/files_external.po index 3c2762b69ae..4479d6bd0c6 100644 --- a/l10n/sw_KE/files_external.po +++ b/l10n/sw_KE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/ta_IN/files_external.po b/l10n/ta_IN/files_external.po index 45d259ec1d5..59f0c676ef5 100644 --- a/l10n/ta_IN/files_external.po +++ b/l10n/ta_IN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (India) (http://www.transifex.com/projects/p/owncloud/language/ta_IN/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index c0f02f3b9cb..153c6326d21 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index 6f93555f9ad..ebf869c7861 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "ஓம்புனர்" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "பயனாளர் பெயர்" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "தனிப்பட்ட" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index cf755ec651e..0228dd90f73 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 44a3e9f9222..4d413e30e37 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 6b78faa4d06..b5b8c19aabf 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,65 +102,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "ஓம்புனர்" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "நீங்கள் SSL சேவையை தவிர உடன்படு வரைமுறையை தவிர்க்க முடியும். பிறகு ldaps:.// உடன் ஆரம்பிக்கவும்" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "துறை " -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "பயனாளர் DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "கடவுச்சொல்" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "நீங்கள் பயனாளர்களுக்கும் மேன்மை தத்தலில் உள்ள குழுவிற்கும் தள DN ஐ குறிப்பிடலாம் " diff --git a/l10n/te/core.po b/l10n/te/core.po index 43fe7f67e05..fdc39ac1699 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index ec3cb9552bf..6f62f34feeb 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "వాడుకరి పేరు" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "వ్యక్తిగతం" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/te/files_sharing.po b/l10n/te/files_sharing.po index fb2924ea404..50da14a75b7 100644 --- a/l10n/te/files_sharing.po +++ b/l10n/te/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index da7eda886d9..7c5f8b76a36 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index e8d50499d53..40ef8295acc 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,65 +102,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "సంకేతపదం" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 5aecedf8cd2..a67343476fd 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 15f403c0745..e14699b0ce5 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 12c90d7b66f..d6b0b5e4c88 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 56a00a10eaf..6a00bd2d962 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index cd1b081f8f3..8cb4bfe7112 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index dab4bb597b4..c0c1b44a965 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 1af544eca57..f5098c8a080 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index f0b36731c3b..99fd50eee26 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 79633800c57..7ead72129ec 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 56082707c98..c0217dab5ce 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 8c92e93f224..f991739b6bd 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 7c0f354033b..46fcea9028b 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 121c491bc83..7acc04d081c 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index 0036b21bd87..91bee3890ae 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "โฮสต์" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "ชื่อผู้ใช้งาน" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "ส่วนตัว" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index 7d4bc7befb5..584e8bf7d18 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index e52fdd75b35..f9049490917 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 331bf7279cb..00b68550bd9 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,63 +102,63 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "เลือกกลุ่ม" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "ทดสอบการเชื่อมต่อสำเร็จ" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "ทดสอบการเชื่อมต่อล้มเหลว" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "คุณแน่ใจแล้วหรือว่าต้องการลบการกำหนดค่าเซิร์ฟเวอร์ปัจจุบันทิ้งไป?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "ยืนยันการลบทิ้ง" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -250,60 +250,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "เพิ่มการกำหนดค่าเซิร์ฟเวอร์" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "โฮสต์" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "คุณสามารถปล่อยช่องโปรโตคอลเว้นไว้ได้, ยกเว้นกรณีที่คุณต้องการใช้ SSL จากนั้นเริ่มต้นด้วย ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "พอร์ต" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN ของผู้ใช้งาน" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "DN ของผู้ใช้งานที่เป็นลูกค้าอะไรก็ตามที่ผูกอยู่ด้วย เช่น uid=agent, dc=example, dc=com, สำหรับการเข้าถึงโดยบุคคลนิรนาม, ให้เว้นว่าง DN และ รหัสผ่านเอาไว้" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "รหัสผ่าน" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "สำหรับการเข้าถึงโดยบุคคลนิรนาม ให้เว้นว่าง DN และรหัสผ่านไว้" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "หนึ่ง Base DN ต่อบรรทัด" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "คุณสามารถระบุ DN หลักสำหรับผู้ใช้งานและกลุ่มต่างๆในแท็บขั้นสูงได้" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 0adb541c370..fa6afe171a1 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index 9ba0a8c6b66..c587f5f4a3c 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" -"Last-Translator: Volkan Gezer \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,7 +68,7 @@ msgstr "Anahtar" msgid "Secret" msgstr "Parola" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Bucket" @@ -85,16 +85,16 @@ msgid "Secret Key" msgstr "Gizli Anahtar" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Makine Adı (isteğe bağlı)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Bağl. Nok. (isteğe bağlı)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Bölge (isteğe bağlı)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -117,8 +117,8 @@ msgstr "Uyg. parolası" msgid "Host" msgstr "Sunucu" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Kullanıcı Adı" @@ -148,14 +148,6 @@ msgstr "İstemci parolası" msgid "OpenStack Object Storage" msgstr "OpenStack Nesne Depolama" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Kullanıcı adı (gerekli)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (gerekli)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Bölge (OpenStack Nesne Depolaması için isteğe bağlı)" @@ -181,8 +173,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "Kimlik uç nokta adresi (OpenStack Nesne Depolaması için gerekli)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Saniye cinsinden HTTP istek zaman aşımı (isteğe bağlı)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -232,15 +224,15 @@ msgstr "Kişisel" msgid "System" msgstr "Sistem" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "Tüm kullanıcılar. Kullanıcı veya grup seçmek için yazın." -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "(grup)" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Kaydedildi" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index 7dd03f7dfd1..4931b869cae 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-18 01:54-0400\n" -"PO-Revision-Date: 2014-08-17 16:01+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Volkan Gezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -31,15 +31,15 @@ msgstr "Geçersiz veya güvenilmeyen SSL sertifikası" msgid "Couldn't add remote share" msgstr "Uzak paylaşım eklenemedi" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Sizinle paylaşılmış" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Diğerleri ile paylaşılmış" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Bağlantı ile paylaşılmış" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 00c8b50c4f5..64c3801ac20 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" +"Last-Translator: Volkan Gezer \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" @@ -942,11 +942,11 @@ msgstr "Şifreleme Anahtarlarını Sil" #: templates/users/main.php:34 msgid "Show storage location" -msgstr "" +msgstr "Depolama konumunu göster" #: templates/users/main.php:38 msgid "Show last log in" -msgstr "" +msgstr "Son oturum açılma zamanını göster" #: templates/users/part.createuser.php:4 msgid "Login Name" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 788b744d27f..3994c224aa4 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Volkan Gezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tzm/files_external.po b/l10n/tzm/files_external.po index 2fea8a494ba..b8037297502 100644 --- a/l10n/tzm/files_external.po +++ b/l10n/tzm/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 0e324625d45..ab9114972c9 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index 1842e75d64c..e1d2cb36fd2 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "باش ئاپپارات" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "ئىشلەتكۈچى ئاتى" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "شەخسىي" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index 0391550319a..0ac687213bf 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -30,15 +30,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 82e6ffdf2da..e4595485e0f 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 054c8e8a81c..c66908b5d65 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,63 +102,63 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -250,60 +250,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "باش ئاپپارات" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "ئېغىز" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "ئىم" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index b1668edeefc..fe07d2ff248 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index 876d5756aa7..5b4910e6f26 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,15 +85,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "Хост" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Ім'я користувача" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -232,15 +224,15 @@ msgstr "Особисте" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index 89305d1de72..e2922ab4ca1 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -31,15 +31,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index f2740f70d9b..c30356a3969 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 7335868ef6f..01fe453c417 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,47 +102,47 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Оберіть групи" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Перевірка з'єднання пройшла успішно" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Перевірка з'єднання завершилась неуспішно" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Ви дійсно бажаєте видалити поточну конфігурацію сервера ?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Підтвердіть Видалення" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -150,7 +150,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -158,11 +158,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -254,60 +254,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Додати налаштування Сервера" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Хост" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Можна не вказувати протокол, якщо вам не потрібен SSL. Тоді почніть з ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Порт" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN Користувача" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "DN клієнтського користувача для прив'язки, наприклад: uid=agent,dc=example,dc=com. Для анонімного доступу, залиште DN і Пароль порожніми." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Пароль" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Для анонімного доступу, залиште DN і Пароль порожніми." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Один Base DN на одній строчці" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Ви можете задати Базовий DN для користувачів і груп на вкладинці Додатково" diff --git a/l10n/ur/files_external.po b/l10n/ur/files_external.po index f2b59dc72b4..0b43a8f0972 100644 --- a/l10n/ur/files_external.po +++ b/l10n/ur/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index e120e7c0c8b..3acda1e58ba 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_external.po b/l10n/ur_PK/files_external.po index 923c8e20af2..37cd6cf7171 100644 --- a/l10n/ur_PK/files_external.po +++ b/l10n/ur_PK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "یوزر نیم" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "شخصی" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/ur_PK/files_sharing.po b/l10n/ur_PK/files_sharing.po index d814c72910b..008c958d706 100644 --- a/l10n/ur_PK/files_sharing.po +++ b/l10n/ur_PK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 4b5c4e2fa2e..4293cb7762c 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index 6d4dd6a1edd..548354cc7c5 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,65 +102,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "پاسورڈ" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/uz/files_external.po b/l10n/uz/files_external.po index 05774cac616..5e6a66d5b30 100644 --- a/l10n/uz/files_external.po +++ b/l10n/uz/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-29 01:54-0400\n" -"PO-Revision-Date: 2014-08-29 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,41 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index e523645b1c9..3ebc4b40696 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index 968c35b2fb3..ccf245bd032 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,15 +85,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "Máy chủ" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Tên đăng nhập" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -232,15 +224,15 @@ msgstr "Cá nhân" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index fed9805aa98..969fc9dfdfb 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index d48d2c42ab5..d557907a33b 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index da65fee853d..3d69ae46ac7 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,63 +102,63 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Chọn nhóm" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -250,60 +250,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Máy chủ" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Bạn có thể bỏ qua các giao thức, ngoại trừ SSL. Sau đó bắt đầu với ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Cổng" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Người dùng DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "Các DN của người sử dụng đã được thực hiện, ví dụ như uid =agent , dc = example, dc = com. Để truy cập nặc danh ,DN và mật khẩu trống." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Mật khẩu" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Cho phép truy cập nặc danh , DN và mật khẩu trống." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Bạn có thể chỉ định DN cơ bản cho người dùng và các nhóm trong tab Advanced" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index cc6b46b5c3e..b8913aa2142 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index e1ca8c1c430..e5ab06a47b5 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -70,7 +70,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -87,16 +87,16 @@ msgid "Secret Key" msgstr "秘钥" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "域名 (可选)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "端口 (可选)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "区域 (optional)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -119,8 +119,8 @@ msgstr "" msgid "Host" msgstr "主机" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "用户名" @@ -150,14 +150,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "OpenStack 对象存储" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "用户名 (必须)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (必须)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -183,8 +175,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "HTTP 请求超时(秒) (可选)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -234,15 +226,15 @@ msgstr "个人" msgid "System" msgstr "系统" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "已保存" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index 0c8ff9585ca..a2188aa825c 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -33,15 +33,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "无法添加远程分享" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "分享给您的文件" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "您分享的文件" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "分享链接的文件" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 70642ff8bca..a40839ad392 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 427ebb9958c..bfe2bb7ebb4 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-20 01:54-0400\n" -"PO-Revision-Date: 2014-07-19 07:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Kaijia Feng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -53,11 +53,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -106,63 +106,63 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "选择分组" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "连接测试成功" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "连接测试失败" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "您真的想要删除当前服务器配置吗?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "确认删除" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "无效的主机" @@ -254,60 +254,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "增加服务器配置" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "主机" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "可以忽略协议,但如要使用SSL,则需以ldaps://开头" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "端口" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "User DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "客户端使用的DN必须与绑定的相同,比如uid=agent,dc=example,dc=com\n如需匿名访问,将DN和密码保留为空" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "密码" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "启用匿名访问,将DN和密码保留为空" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "每行一个基本判别名" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "您可以在高级选项卡里为用户和组指定Base DN" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index f0c9fc774cb..f16b8675504 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index 4085f2b4b26..29634566bb8 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "用戶名稱" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,15 +223,15 @@ msgstr "個人" msgid "System" msgstr "" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "已儲存" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index 82e7965adfa..3785bb66814 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 6c14e193626..39212b95460 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 264a0c9dca3..51874c7bfb3 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,63 +102,63 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -250,60 +250,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "連接埠" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "密碼" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index ba7053e04a5..01f9a89b3bf 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 77d55556307..ebc0f892676 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -69,7 +69,7 @@ msgstr "鑰" msgid "Secret" msgstr "密" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -86,16 +86,16 @@ msgid "Secret Key" msgstr "密鑰" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "主機名稱 (選填)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "埠號 (選填)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "區域 (選填)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -118,8 +118,8 @@ msgstr "" msgid "Host" msgstr "主機" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "使用者名稱:" @@ -149,14 +149,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "使用者名稱 (必填)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -182,7 +174,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -233,15 +225,15 @@ msgstr "個人" msgid "System" msgstr "系統" -#: js/settings.js:196 +#: js/settings.js:208 msgid "All users. Type to select user or group." msgstr "" -#: js/settings.js:279 +#: js/settings.js:291 msgid "(group)" msgstr "" -#: js/settings.js:445 js/settings.js:452 +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "已儲存" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index faa7495e10c..b9dc0e11731 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -30,15 +30,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "無法加入遠端分享" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "與你分享" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "與其他人分享" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "由連結分享" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 723763ee667..09b7ebc4fe1 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-30 01:54-0400\n" -"PO-Revision-Date: 2014-08-30 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index b32f887df9d..ca419ca33e6 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -51,11 +51,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -104,63 +104,63 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "選擇群組" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "連線測試成功" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "連線測試失敗" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "您真的要刪除現在的伺服器設定嗎?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "確認刪除" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "新增伺服器設定" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "主機" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "若您不需要 SSL 加密連線則不需輸入通訊協定,反之請輸入 ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "連接埠" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "User DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "客戶端使用者的DN與特定字詞的連結需要完善,例如:uid=agent,dc=example,dc=com。若是匿名連接,則將DN與密碼欄位留白。" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "密碼" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "匿名連接時請將 DN 與密碼欄位留白" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "一行一個 Base DN" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "您可以在進階標籤頁裡面指定使用者及群組的 Base DN" diff --git a/lib/l10n/az.php b/lib/l10n/az.php index c979ddd2932..a527b8edf5d 100644 --- a/lib/l10n/az.php +++ b/lib/l10n/az.php @@ -3,17 +3,42 @@ $TRANSLATIONS = array( "Cannot write into \"config\" directory!" => "\"configurasiya\" direktoriyasının daxilində yazmaq mümkün deyil", "This can usually be fixed by giving the webserver write access to the config directory" => "Adətən tez həll etmək üçün WEB serverdə yazma yetkisi verilir", "See %s" => "Bax %s", +"This can usually be fixed by %sgiving the webserver write access to the config directory%s." => "Bu adətən %s config qovluğuna web server üçün yazma yetkisi verdikdə, %s tərəfindən fix edilə bilir. ", +"Sample configuration detected" => "Konfiqurasiya nüsxəsi təyin edildi", "Help" => "Kömək", +"Personal" => "Şəxsi", "Settings" => "Quraşdırmalar", "Users" => "İstifadəçilər", "Admin" => "İnzibatçı", "No app name specified" => "Proqram adı təyin edilməyib", "Unknown filetype" => "Fayl tipi bəlli deyil.", "Invalid image" => "Yalnış şəkil", +"App directory already exists" => "Proqram təminatı qovluğu artıq mövcuddur.", +"Can't create app folder. Please fix permissions. %s" => "Proqram təminatı qovluğunu yaratmaq mümkün olmadı. Xahiş edilir yetkiləri düzgün təyin edəsiniz. %s", +"Application is not enabled" => "Proqram təminatı aktiv edilməyib", "Authentication error" => "Təyinat metodikası", +"Token expired. Please reload page." => "Token vaxtı bitib. Xahiş olunur səhifəni yenidən yükləyəsiniz.", +"Unknown user" => "Istifadəçi tanınmır ", +"%s enter the database username." => "Verilənlər bazası istifadəçi adını %s daxil et.", +"%s enter the database name." => "Verilənlər bazası adını %s daxil et.", +"MS SQL username and/or password not valid: %s" => "MS SQL istifadəçi adı və/ya şifrəsi düzgün deyil : %s", +"MySQL/MariaDB username and/or password not valid" => "MySQL/MariaDB istifadəçi adı və/ya şifrəsi düzgün deyil :", +"DB Error: \"%s\"" => "DB səhvi: \"%s\"", +"Drop this user from MySQL/MariaDB" => "Bu istifadəçini MySQL/MariaDB-dən sil", +"Drop this user from MySQL/MariaDB." => "Bu istifadəçini MySQL/MariaDB-dən sil.", +"Oracle connection could not be established" => "Oracle qoşulması alınmır", +"Oracle username and/or password not valid" => "Oracle istifadəçi adı və/ya şifrəsi düzgün deyil", +"Set an admin username." => "İnzibatçı istifadəçi adını təyin et.", +"Set an admin password." => "İnzibatçı şifrəsini təyin et.", +"%s shared »%s« with you" => "%s yayımlandı »%s« sizinlə", +"Sharing %s failed, because the file does not exist" => "%s yayımlanmasında səhv baş verdi ona görə ki, fayl mövcud deyil.", +"You are not allowed to share %s" => "%s-in yayimlanmasına sizə izin verilmir", +"Share type %s is not valid for %s" => "Yayımlanma tipi %s etibarlı deyil %s üçün", "_%n minute ago_::_%n minutes ago_" => array("",""), "_%n hour ago_::_%n hours ago_" => array("",""), "_%n day go_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("","") +"_%n month ago_::_%n months ago_" => array("",""), +"A valid username must be provided" => "Düzgün istifadəçi adı daxil edilməlidir", +"A valid password must be provided" => "Düzgün şifrə daxil edilməlidir" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index a34690c365f..c5c10a77bf2 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -1,9 +1,9 @@ "Nelze zapisovat do adresáře \"config\"!", -"This can usually be fixed by giving the webserver write access to the config directory" => "To bývá obyčejně vyřešeno povolením webovému serveru zapisovat do konfiguračního adresáře.", +"This can usually be fixed by giving the webserver write access to the config directory" => "To lze obvykle vyřešit povolením zápisu webovému serveru do konfiguračního adresáře", "See %s" => "Viz %s", -"This can usually be fixed by %sgiving the webserver write access to the config directory%s." => "To bývá obyčeně vyřešeno, když %s povolí webovému serveru zápis do konfiguračního adresáře %s.", +"This can usually be fixed by %sgiving the webserver write access to the config directory%s." => "To lze obvykle vyřešit %spovolením zápisu webovému serveru do konfiguračního adresáře%s.", "Sample configuration detected" => "Byla detekována vzorová konfigurace", "It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" => "Pravděpodobně byla zkopírována konfigurační nastavení ze vzorových souborů. Toto není podporováno a může poškodit vaši instalaci. Nahlédněte prosím do dokumentace před prováděním změn v souboru config.php", "Help" => "Nápověda", @@ -66,16 +66,16 @@ $TRANSLATIONS = array( "Share type %s is not valid for %s" => "Sdílení typu %s není korektní pro %s", "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Nastavení oprávnění pro %s selhalo, protože jsou k tomu nutná vyšší oprávnění, než jaká byla povolena pro %s", "Setting permissions for %s failed, because the item was not found" => "Nastavení práv pro %s selhalo, protože položka nebyla nalezena", -"Cannot set expiration date. Shares cannot expire later than %s after they have been shared" => "Nelze nastavit datum vypršení platnosti. Sdílení nemůže vypršet později než za %s po zveřejnění.", -"Cannot set expiration date. Expiration date is in the past" => "Nelze nastavit datum vypršení platnosti. Datum vypršení je v minulosti.", -"Sharing backend %s must implement the interface OCP\\Share_Backend" => "Podpůrná vrstva pro sdílení %s musí obsahovat rozhraní OCP\\Share_Backend", -"Sharing backend %s not found" => "Podpůrná vrstva sdílení %s nenalezena", -"Sharing backend for %s not found" => "Podpůrná vrstva sdílení pro %s nenalezena", -"Sharing %s failed, because the user %s is the original sharer" => "Sdílení položky %s selhalo, protože byla sdílena uživatelem %s jako první.", +"Cannot set expiration date. Shares cannot expire later than %s after they have been shared" => "Nelze nastavit datum vypršení platnosti. Sdílení nemůže vypršet později než za %s po zveřejnění", +"Cannot set expiration date. Expiration date is in the past" => "Nelze nastavit datum vypršení platnosti. Datum vypršení je v minulosti", +"Sharing backend %s must implement the interface OCP\\Share_Backend" => "Úložiště pro sdílení %s musí implementovat rozhraní OCP\\Share_Backend", +"Sharing backend %s not found" => "Úložiště sdílení %s nenalezeno", +"Sharing backend for %s not found" => "Úložiště sdílení pro %s nenalezeno", +"Sharing %s failed, because the user %s is the original sharer" => "Sdílení položky %s selhalo, protože byla sdílena uživatelem %s jako první", "Sharing %s failed, because the permissions exceed permissions granted to %s" => "Sdílení položky %s selhalo, protože jsou k tomu nutná vyšší oprávnění, než jaká byla %s povolena.", -"Sharing %s failed, because resharing is not allowed" => "Sdílení položky %s selhalo, protože sdílení dále není povoleno", -"Sharing %s failed, because the sharing backend for %s could not find its source" => "Sdílení položky %s selhalo, protože podpůrná vrstva sdílení nenalezla zdrojový %s", -"Sharing %s failed, because the file could not be found in the file cache" => "Sdílení položky %s selhalo, protože soubor nebyl nalezen v dočasném úložišti", +"Sharing %s failed, because resharing is not allowed" => "Sdílení položky %s selhalo, protože znovu-sdílení není povoleno", +"Sharing %s failed, because the sharing backend for %s could not find its source" => "Sdílení položky %s selhalo, protože úložiště sdílení %s nenalezla zdroj", +"Sharing %s failed, because the file could not be found in the file cache" => "Sdílení položky %s selhalo, protože soubor nebyl nalezen ve vyrovnávací paměti", "Could not find category \"%s\"" => "Nelze nalézt kategorii \"%s\"", "seconds ago" => "před pár sekundami", "_%n minute ago_::_%n minutes ago_" => array("před %n minutou","před %n minutami","před %n minutami"), @@ -92,32 +92,32 @@ $TRANSLATIONS = array( "A valid password must be provided" => "Musíte zadat platné heslo", "The username is already being used" => "Uživatelské jméno je již využíváno", "No database drivers (sqlite, mysql, or postgresql) installed." => "Nejsou instalovány ovladače databází (sqlite, mysql nebo postresql).", -"Permissions can usually be fixed by %sgiving the webserver write access to the root directory%s." => "Oprávnění bývají obvykle napravena, když %s povolí webovému serveru zápis do kořenového adresáře %s.", +"Permissions can usually be fixed by %sgiving the webserver write access to the root directory%s." => "Oprávnění lze obvykle napravit %spovolením zápisu webovému serveru do kořenového adresáře%s.", "Cannot write into \"config\" directory" => "Nelze zapisovat do adresáře \"config\"", "Cannot write into \"apps\" directory" => "Nelze zapisovat do adresáře \"apps\"", -"This can usually be fixed by %sgiving the webserver write access to the apps directory%s or disabling the appstore in the config file." => "To bývá obyčeně vyřešeno, když %s povolí webovému serveru zápis do apps adresáře%s nebo vypnutím položky appstore v konfiguračním souboru.", -"Cannot create \"data\" directory (%s)" => "Nelze vytvořit \"data\" adresář (%s)", -"This can usually be fixed by giving the webserver write access to the root directory." => "To bývá obvykle vyřešeno, když povolí webovému serveru zápis do kořenového adresáře.", +"This can usually be fixed by %sgiving the webserver write access to the apps directory%s or disabling the appstore in the config file." => "To lze obvykle vyřešit %spovolením zápisu webovému serveru do adresáře apps%s nebo zakázáním appstore v konfiguračním souboru.", +"Cannot create \"data\" directory (%s)" => "Nelze vytvořit adresář \"data\" (%s)", +"This can usually be fixed by giving the webserver write access to the root directory." => "To lze obvykle vyřešit povolením zápisu webovému serveru do kořenového adresáře.", "Setting locale to %s failed" => "Nastavení jazyka na %s selhalo", "Please install one of these locales on your system and restart your webserver." => "Prosím nainstalujte alespoň jeden z těchto jazyků do svého systému a restartujte webový server.", -"Please ask your server administrator to install the module." => "Požádejte svého administrátora, ať nainstaluje příslušný modul.", +"Please ask your server administrator to install the module." => "Požádejte svého administrátora o instalaci tohoto modulu.", "PHP module %s not installed." => "PHP modul %s není nainstalován.", "PHP %s or higher is required." => "Je vyžadováno PHP %s nebo vyšší.", -"Please ask your server administrator to update PHP to the latest version. Your PHP version is no longer supported by ownCloud and the PHP community." => "Požádejte svého administrátora, aby provedl aktualizaci PHP na nejvyšší verzi. Vaše verze PHP již není podporována komunitami ownCloud a PHP.", +"Please ask your server administrator to update PHP to the latest version. Your PHP version is no longer supported by ownCloud and the PHP community." => "Požádejte svého administrátora o aktualizaci PHP na nejnovější verzi. Vaše verze PHP již není podporována komunitami ownCloud a PHP.", "PHP Safe Mode is enabled. ownCloud requires that it is disabled to work properly." => "Je zapnut PHP Safe Mode. Pro správnou funkčnost ownCloud je třeba toto vypnout.", -"PHP Safe Mode is a deprecated and mostly useless setting that should be disabled. Please ask your server administrator to disable it in php.ini or in your webserver config." => "PHP Safe Mode je zastaralé a víceméně zbytečné nastavení, které je třeba vypnout. Požádejte prosím svého administrátora, ať toto provede v php.ini nebo v nastavení konfigurace webového serveru.", +"PHP Safe Mode is a deprecated and mostly useless setting that should be disabled. Please ask your server administrator to disable it in php.ini or in your webserver config." => "PHP Safe Mode je zastaralé a většinou zbytečné nastavení, které je třeba vypnout. Požádejte prosím svého administrátora o zakázání v php.ini nebo v konfiguraci webového serveru.", "Magic Quotes is enabled. ownCloud requires that it is disabled to work properly." => "Je povoleno nastavení Magic Quotes. Pro správnou funkčnost ownCloud je třeba toto vypnout.", -"Magic Quotes is a deprecated and mostly useless setting that should be disabled. Please ask your server administrator to disable it in php.ini or in your webserver config." => "Magic Quotes je zastaralé a víceméně zbytečné nastavení, které je třeba vypnout. Požádejte prosím svého administrátora, ať toto provede v php.ini nebo v nastavení konfigurace webového serveru.", -"PHP modules have been installed, but they are still listed as missing?" => "PHP moduly jsou nainstalovány, ale stále vykázány jako chybějící?", -"Please ask your server administrator to restart the web server." => "Požádejte svého administrátora, ať restartuje webový server.", -"PostgreSQL >= 9 required" => "Je třeba PostgreSQL >= 9", +"Magic Quotes is a deprecated and mostly useless setting that should be disabled. Please ask your server administrator to disable it in php.ini or in your webserver config." => "Magic Quotes je zastaralé a většinou zbytečné nastavení, které je třeba vypnout. Požádejte prosím svého administrátora o zakázání v php.ini nebo v konfiguraci webového serveru.", +"PHP modules have been installed, but they are still listed as missing?" => "PHP moduly jsou nainstalovány, ale stále se tváří jako chybějící?", +"Please ask your server administrator to restart the web server." => "Požádejte svého administrátora o restart webového serveru.", +"PostgreSQL >= 9 required" => "Je vyžadováno PostgreSQL >= 9", "Please upgrade your database version" => "Aktualizujte prosím verzi své databáze", "Error occurred while checking PostgreSQL version" => "Při zjišťování verze PostgreSQL došlo k chybě", -"Please make sure you have PostgreSQL >= 9 or check the logs for more information about the error" => "Zajistěte prosím PostgreSQL >=9 nebo zkontrolujte logy pro více informací o chybě.", -"Please change the permissions to 0770 so that the directory cannot be listed by other users." => "Změntě prosím práva na 0770, aby adresář nemohl být otevřen ostatními uživateli.", -"Data directory (%s) is readable by other users" => "Data adresář (%s) je čitelný i ostatními uživateli", -"Data directory (%s) is invalid" => "Data adresář (%s) je neplatný", +"Please make sure you have PostgreSQL >= 9 or check the logs for more information about the error" => "Ujistěte se, že máte PostgreSQL >= 9, a zkontrolujte logy pro více informací o chybě.", +"Please change the permissions to 0770 so that the directory cannot be listed by other users." => "Změňte prosím práva na 0770, aby adresář nemohl být otevřen ostatními uživateli.", +"Data directory (%s) is readable by other users" => "Datový adresář (%s) je čitelný i ostatními uživateli", +"Data directory (%s) is invalid" => "Datový adresář (%s) je neplatný", "Please check that the data directory contains a file \".ocdata\" in its root." => "Ověřte prosím, že kořenový adresář s daty obsahuje soubor \".ocdata\".", -"Could not obtain lock type %d on \"%s\"." => "Nelze zjistit typ zámku %d na \"%s\"." +"Could not obtain lock type %d on \"%s\"." => "Nelze získat zámek typu %d na \"%s\"." ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/settings/l10n/az.php b/settings/l10n/az.php index a926b6c69fe..c45e8db01fa 100644 --- a/settings/l10n/az.php +++ b/settings/l10n/az.php @@ -40,8 +40,69 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "İnzibatçı geriyə qayıdış şifrəsi yalnışdır. Xahiş olunur şifrəni yoxlayıb yenidən təkrar edəsiniz.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "İnzibatçı mərkəzi şifrə dəyişilməsini dəstəkləmir ancaq, istifadəçi şifrələnmə açarı uğurla yeniləndi.", "Unable to change password" => "Şifrəni dəyişmək olmur", +"Are you really sure you want add \"{domain}\" as trusted domain?" => "\"{domain}\" adını inamlı domainlər siyahısına əlavə etməyinizdən əminsinizmi?", +"Add trusted domain" => "İnamlı domainlərə əlavə et", +"Sending..." => "Göndərilir...", +"User Documentation" => "İstifadəçi sənədləri", +"Admin Documentation" => "İnzibatçı sənədləri", +"Update to {appversion}" => "{appversion} -a yenilə", +"Uninstall App" => "Proqram təminatını sil", +"Disable" => "Dayandır", +"Enable" => "İşə sal", +"Please wait...." => "Xahiş olunur gözləyəsiniz.", +"Error while disabling app" => "Proqram təminatını dayandırdıqda səhv baş verdi", +"Error while enabling app" => "Proqram təminatını işə saldıqda səhv baş verdi", +"Updating...." => "Yenilənir...", +"Error while updating app" => "Proqram təminatı yeniləndikdə səhv baş verdi", "Error" => "Səhv", +"Update" => "Yenilənmə", +"Updated" => "Yeniləndi", +"Uninstalling ...." => "Silinir...", +"Error while uninstalling app" => "Proqram təminatını sildikdə səhv baş verdi", +"Uninstall" => "Sil", +"Select a profile picture" => "Profil üçün şəkli seç", +"Very weak password" => "Çox asan şifrə", +"Weak password" => "Asan şifrə", +"So-so password" => "Elə-belə şifrə", +"Good password" => "Yaxşı şifrə", +"Strong password" => "Çətin şifrə", +"Decrypting files... Please wait, this can take some time." => "Fayllar deşifrə edilir... Xahiş olunur gözləyəsiniz, bu biraz vaxt alacaq.", +"Delete encryption keys permanently." => "Şifrələnmə açarlarını həmişəlik sil.", +"Restore encryption keys." => "Şifrələnmə açarlarını geri qaytar", +"Unable to delete {objName}" => "{objName} silmək olmur", +"Error creating group" => "Qrup yaranmasında səhv baş verdi", +"A valid group name must be provided" => "Düzgün qrup adı təyin edilməlidir", +"deleted {groupName}" => "{groupName} silindi", +"undo" => "geriyə", +"Groups" => "Qruplar", +"Group Admin" => "Qrup İnzibatçısı", "Delete" => "Sil", +"never" => "heç vaxt", +"deleted {userName}" => "{userName} silindi", +"add group" => "qrupu əlavə et", +"A valid username must be provided" => "Düzgün istifadəçi adı daxil edilməlidir", +"Error creating user" => "İstifadəçi yaratdıqda səhv baş verdi", +"A valid password must be provided" => "Düzgün şifrə daxil edilməlidir", +"Warning: Home directory for user \"{user}\" already exists" => "Xəbərdarlıq: \"{user}\" istfadəçisi üçün ev qovluğu artıq mövcuddur.", +"__language_name__" => "__AZ_Azerbaijan__", +"Everything (fatal issues, errors, warnings, info, debug)" => "Hər şey(ən pis hadisələr, səhvlər, xəbərdarlıqlar, məlmat, araşdırma səhvləri)", +"Info, warnings, errors and fatal issues" => "Məlmat, xəbərdarlıqlar, səhvlər və ən pis hadisələr", +"Warnings, errors and fatal issues" => "Xəbərdarlıqlar, səhvlər və ən pis hadisələr", +"Errors and fatal issues" => "Səhvlər və ən pis hadisələr", +"Fatal issues only" => "Yalnız ən pis hadisələr", +"None" => "Heç bir", +"Login" => "Giriş", +"Plain" => "Adi", +"NT LAN Manager" => "NT LAN Manager", +"SSL" => "SSL", +"TLS" => "TLS", +"Security Warning" => "Təhlükəsizlik xəbərdarlığı", +"Setup Warning" => "Quruluş xəbərdarlığı", +"Database Performance Info" => "Verilənlər bazasının davamiyyəti məlumatı", +"Module 'fileinfo' missing" => "'fileinfo' modulu çatışmır", +"Your PHP version is outdated" => "Sizin PHP versiyası köhnəlib", +"PHP charset is not set to UTF-8" => "PHP simvol tipi UTF-8 deyil", +"Internet connection not working" => "İnternet qoşulması işləmir", "More" => "Yenə", "Get the apps to sync your files" => "Fayllarınızın sinxronizasiyası üçün proqramları götürün", "Password" => "Şifrə", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 761b35008b5..540e37cad63 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -19,9 +19,9 @@ $TRANSLATIONS = array( "Files decrypted successfully" => "Soubory úspěšně dešifrovány", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Nebylo možno dešifrovat soubory, zkontroluje prosím owncloud.log nebo kontaktujte svého administrátora", "Couldn't decrypt your files, check your password and try again" => "Nebylo možno dešifrovat soubory, zkontrolujte své heslo a zkuste znovu", -"Encryption keys deleted permanently" => "Šifrovací klíče trvale smazány", +"Encryption keys deleted permanently" => "Šifrovací klíče trvale smazány", "Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "Nebylo možno trvale smazat vaše šifrovací klíče, zkontrolujte prosím owncloud.log nebo kontaktujte svého administrátora", -"Couldn't remove app." => "Nepodařilo se odstranit aplikaci.", +"Couldn't remove app." => "Nepodařilo se odebrat aplikaci.", "Email saved" => "E-mail uložen", "Invalid email" => "Neplatný e-mail", "Unable to delete group" => "Nelze smazat skupinu", @@ -67,8 +67,8 @@ $TRANSLATIONS = array( "Good password" => "Dobré heslo", "Strong password" => "Silné heslo", "Decrypting files... Please wait, this can take some time." => "Probíhá dešifrování souborů... Čekejte prosím, tato operace může trvat nějakou dobu.", -"Delete encryption keys permanently." => "Trvale smazat šifrovací klíče", -"Restore encryption keys." => "Obnovit šifrovací klíče", +"Delete encryption keys permanently." => "Trvale smazat šifrovací klíče.", +"Restore encryption keys." => "Obnovit šifrovací klíče.", "Unable to delete {objName}" => "Nelze smazat {objName}", "Error creating group" => "Chyba při vytváření skupiny", "A valid group name must be provided" => "Musíte zadat platný název skupiny", @@ -102,16 +102,16 @@ $TRANSLATIONS = array( "Setup Warning" => "Upozornění nastavení", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Váš webový server není správně nastaven pro umožnění synchronizace, protože rozhraní WebDAV se zdá nefunkční.", "Please double check the installation guides." => "Zkontrolujte prosím znovu instalační příručku.", -"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." => "PHP je patrně nastaveno tak, aby odstraňovalo vnitřní části dokumentů. Toto bude mít za následek množsví nedostupných hlavních aplikací.", +"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." => "PHP je patrně nastaveno tak, aby odstraňovalo bloky komentářů. Toto bude mít za následek nedostupnost množství hlavních aplikací.", "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." => "Toto je pravděpodobně způsobeno aplikacemi pro urychlení načítání jako jsou Zend OPcache nebo eAccelerator.", "Database Performance Info" => "Informace o výkonu databáze", -"SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" => "Je použita databáze SQLite. Pro větší instalace doporučujeme toto změnit. Pro migraci na jiný typ databáze lze použít příkaz: 'occ db:convert-type'", +"SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" => "Je použita databáze SQLite. Pro větší instalace doporučujeme toto změnit. Pro migraci na jiný typ databáze lze použít nástroj pro příkazový řádek: 'occ db:convert-type'", "Module 'fileinfo' missing" => "Schází modul 'fileinfo'", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Schází PHP modul 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME.", "Your PHP version is outdated" => "Vaše verze PHP je zastaralá", "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Vámi používaná verze PHP je zastaralá. Důrazně doporučujeme aktualizovat na verzi 5.3.8 nebo novější, protože starší verze obsahují chyby. Je možné, že tato instalace nebude fungovat správně.", "PHP charset is not set to UTF-8" => "Znaková sada PHP není nastavena na UTF-8", -"PHP charset is not set to UTF-8. This can cause major issues with non-ASCII characters in file names. We highly recommend to change the value of 'default_charset' php.ini to 'UTF-8'." => "Znaková sada PHP není nastavena na UTF-8. Toto může způsobit závažné problémy ve jménech souborů se znaky neobsaženými v ASCII. Doporučujeme změnit hodnotu 'default_charset' v php.ini na 'UTF-8'.", +"PHP charset is not set to UTF-8. This can cause major issues with non-ASCII characters in file names. We highly recommend to change the value of 'default_charset' php.ini to 'UTF-8'." => "Znaková sada PHP není nastavena na UTF-8. To může způsobit závažné problémy se jmény souborů se znaky neobsaženými v ASCII. Důrazně doporučujeme změnit hodnotu 'default_charset' v php.ini na 'UTF-8'.", "Locale not working" => "Lokalizace nefunguje", "System locale can not be set to a one which supports UTF-8." => "Není možné nastavit znakovou sadu, která podporuje UTF-8.", "This means that there might be problems with certain characters in file names." => "To znamená, že se mohou vyskytnout problémy s určitými znaky v názvech souborů.", @@ -119,14 +119,14 @@ $TRANSLATIONS = array( "Internet connection not working" => "Připojení k internetu nefunguje", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Server nemá funkční připojení k internetu. Některé moduly jako např. externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru.", "URL generation in notification emails" => "Generování adresy URL v oznamovacích e-mailech", -"If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" => "Instalace mimo kořenový adresář domény a používání systémového příkazu cron může způsobit problém s generováním správné URL. Pro zabránění chyb v rozpoznání specifikujte prosím správnou cestu ve svém config.php souboru pod hodnotu \"overwritewebroot\" (Doporučujeme: \"%s\")", +"If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" => "Instalace mimo kořenový adresář domény a používání systémového příkazu cron může způsobit problém s generováním správné URL. Pro zabránění těmto chybám nastavte prosím správnou cestu ve svém config.php souboru v hodnotě \"overwritewebroot\" (Doporučujeme: \"%s\")", "Cron" => "Cron", "Last cron was executed at %s." => "Poslední cron byl spuštěn v %s", "Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Poslední cron byl spuštěn v %s. To je více než před hodinou. Vypadá to, že není něco v pořádku.", "Cron was not executed yet!" => "Cron ještě nebyl spuštěn!", "Execute one task with each page loaded" => "Spustit jednu úlohu s každým načtením stránky", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php je registrován u služby webcron, aby volal cron.php jednou za 15 minut přes http.", -"Use system's cron service to call the cron.php file every 15 minutes." => "Použít systémovou službu cron pro spuštění souboru cron.php každých 15 minut.", +"Use system's cron service to call the cron.php file every 15 minutes." => "Použít systémovou službu cron pro volání cron.php každých 15 minut.", "Sharing" => "Sdílení", "Allow apps to use the Share API" => "Povolit aplikacím používat API sdílení", "Allow users to share via link" => "Povolit uživatelům sdílení pomocí odkazů", @@ -204,9 +204,11 @@ $TRANSLATIONS = array( "The encryption app is no longer enabled, please decrypt all your files" => "Šifrovací aplikace již není spuštěna, dešifrujte prosím všechny své soubory", "Log-in password" => "Přihlašovací heslo", "Decrypt all Files" => "Odšifrovat všechny soubory", -"Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Vaše šifrovací klíče byly zálohovány. Pokud se něco pokazilo, dají se znovu obnovit. Smažte je trvale pouze pokud jste jisti, že jsou všechny vaše soubory bezchybně dešifrovány.", +"Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Vaše šifrovací klíče byly zálohovány. Pokud se něco pokazí, můžete je obnovit. Smažte je trvale pouze pokud jste jisti, že jsou všechny vaše soubory bezchybně dešifrovány.", "Restore Encryption Keys" => "Obnovit šifrovací klíče", "Delete Encryption Keys" => "Smazat šifrovací klíče", +"Show storage location" => "Zobrazit umístění úložiště", +"Show last log in" => "Zobrazit poslední přihlášení", "Login Name" => "Přihlašovací jméno", "Create" => "Vytvořit", "Admin Recovery Password" => "Heslo obnovy správce", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 1f7309bca07..3edaf9f5bbd 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -207,6 +207,7 @@ $TRANSLATIONS = array( "Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Τα κλειδιά κρυπτογράφησής σας μεταφέρονται σε θέση αντιγράφου ασφαλείας. Αν κάτι πάει στραβά, μπορείτε να τα επαναφέρετε. Διαγράψτε τα οριστικά μόνο αν είστε βέβαιοι ότι όλα τα αρχεία αποκρυπτογραφήθηκαν σωστά.", "Restore Encryption Keys" => "Επαναφορά κλειδιών κρυπτογράφησης", "Delete Encryption Keys" => "Διαγραφή κλειδιών κρυπτογράφησης", +"Show last log in" => "Εμφάνιση τελευταίας εισόδου", "Login Name" => "Όνομα Σύνδεσης", "Create" => "Δημιουργία", "Admin Recovery Password" => "Κωδικός Επαναφοράς Διαχειριστή ", diff --git a/settings/l10n/en_GB.php b/settings/l10n/en_GB.php index 0fd5849bcd7..7ebfb6286ad 100644 --- a/settings/l10n/en_GB.php +++ b/settings/l10n/en_GB.php @@ -207,6 +207,8 @@ $TRANSLATIONS = array( "Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly.", "Restore Encryption Keys" => "Restore Encryption Keys", "Delete Encryption Keys" => "Delete Encryption Keys", +"Show storage location" => "Show storage location", +"Show last log in" => "Show last log in", "Login Name" => "Login Name", "Create" => "Create", "Admin Recovery Password" => "Admin Recovery Password", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 772ae12bf69..d581c934544 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -119,6 +119,7 @@ $TRANSLATIONS = array( "Internet connection not working" => "La conexión a Internet no está funcionando", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor no tiene conexión a Internet. Esto significa que algunas de las características no funcionarán, como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones, la instalación de aplicaciones de terceros, el acceso a los archivos de forma remota o el envío de correos electrónicos de notificación. Sugerimos habilitar una conexión a Internet en este servidor para disfrutar de todas las funciones.", "URL generation in notification emails" => "Generación de URL en mensajes de notificación", +"If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" => "Si su instalación no está ubicada en la raíz del dominio y usa el cron del sistema, puede haber problemas al generarse los URL. Para evitarlos, configure la opción \"overwritewebroot\" en su archivo config.php para que use la ruta de la raíz del sitio web de su instalación (sugerencia: \"%s\")", "Cron" => "Cron", "Last cron was executed at %s." => "Cron fue ejecutado por última vez a las %s.", "Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Cron fue ejecutado por última vez a las %s. Esto fue hace más de una hora, algo anda mal.", @@ -206,6 +207,8 @@ $TRANSLATIONS = array( "Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Sus claves de cifrado se archivarán en una localización segura. Así en caso de que algo fuese mal podrá recuperan sus claves. Borre sus claves de cifrado permanentemente solamente si esta seguro de que sus archivos han sido descifrados correctamente.", "Restore Encryption Keys" => "Restaurar claves de cifrado", "Delete Encryption Keys" => "Eliminar claves de cifrado", +"Show storage location" => "Mostrar la ubicación del almacenamiento", +"Show last log in" => "Mostrar el último inicio de sesión", "Login Name" => "Nombre de usuario", "Create" => "Crear", "Admin Recovery Password" => "Recuperación de la contraseña de administración", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index bd6a32d2702..4c35099fb8a 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -40,6 +40,8 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Väärä ylläpitäjän salasana. Tarkista salasana ja yritä uudelleen.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Taustaosa ei tue salasanan vaihtamista, mutta käyttäjän salausavain päivitettiin onnistuneesti.", "Unable to change password" => "Salasanan vaihto ei onnistunut", +"Are you really sure you want add \"{domain}\" as trusted domain?" => "Haluatko varmasti liittää kohteen \"{domain}\" luotetuksi toimialueeksi?", +"Add trusted domain" => "Lisää luotettu toimialue", "Sending..." => "Lähetetään...", "User Documentation" => "Käyttäjäohjeistus", "Admin Documentation" => "Ylläpitäjän ohjeistus", @@ -112,6 +114,7 @@ $TRANSLATIONS = array( "We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Suosittelemme vahvasti asentamaan vaaditut paketit järjestelmään, jotta jotain seuraavista maa-asetuksista on mahdollista tukea: %s.", "Internet connection not working" => "Internet-yhteys ei toimi", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Tällä palvelimella ei ole toimivaa internetyhteyttä. Sen seurauksena jotkin ominaisuudet, kuten erillisten tallennustilojen liittäminen, ilmoitukset päivityksistä tai kolmansien osapuolten sovellusten asentaminen eivät toimi. Tiedostojen käyttäminen etäältä ja ilmoitusten lähettäminen sähköpostitse eivät myöskään välttämättä toimi. Jos haluat käyttää kaikkia palvelimen ominaisuuksia, kytke palvelin internetiin.", +"URL generation in notification emails" => "Verkko-osoitteiden luominen sähköposti-ilmoituksissa", "Cron" => "Cron", "Last cron was executed at %s." => "Viimeisin cron suoritettiin %s.", "Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Viimeisin cron suoritettiin %s. Siitä on yli tunti aikaa, joten jokin näyttää olevan pielessä.", @@ -196,6 +199,8 @@ $TRANSLATIONS = array( "Decrypt all Files" => "Pura kaikkien tiedostojen salaus", "Restore Encryption Keys" => "Palauta salausavaimet", "Delete Encryption Keys" => "Poista salausavaimet", +"Show storage location" => "Näytä tallennustilan sijainti", +"Show last log in" => "Näytä viimeisin sisäänkirjautuminen", "Login Name" => "Kirjautumisnimi", "Create" => "Luo", "Admin Recovery Password" => "Ylläpitäjän palautussalasana", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 4298dbc3ae4..61080e17905 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -207,6 +207,8 @@ $TRANSLATIONS = array( "Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Le tue chiavi di cifratura sono state spostate in una posizione sicura. Se qualcosa non dovesse funzionare, potrai ripristinare le chiavi. Eliminale definitivamente solo se sei sicuro che tutti i file siano stati decifrati.", "Restore Encryption Keys" => "Ripristina chiavi di cifratura", "Delete Encryption Keys" => "Elimina chiavi di cifratura", +"Show storage location" => "Mostra posizione di archiviazione", +"Show last log in" => "Mostra ultimo accesso", "Login Name" => "Nome utente", "Create" => "Crea", "Admin Recovery Password" => "Password di ripristino amministrativa", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index f5cb2f60279..40fbc704f6d 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -207,6 +207,8 @@ $TRANSLATIONS = array( "Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Uw cryptosleutels zijn verplaatst naar een backup locatie. Als iets iets verkeerd ging, kunt u de sleutels herstellen. Verwijder ze alleen permanent als u zeker weet dat de bestanden goed zijn versleuteld.", "Restore Encryption Keys" => "Herstel cryptosleutels", "Delete Encryption Keys" => "Verwijder cryptosleutels", +"Show storage location" => "Toon opslaglocatie", +"Show last log in" => "Toon laatste inlog", "Login Name" => "Inlognaam", "Create" => "Aanmaken", "Admin Recovery Password" => "Beheer herstel wachtwoord", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 720f7c370a0..c45fcef2030 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -207,6 +207,8 @@ $TRANSLATIONS = array( "Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Şifreleme anahtarlarınız yedek bir konuma taşındı. Eğer bir şeyler yanlış gittiyse, anahtarlarınızı geri yükleyebilirsiniz. Bu anahtarları, sadece tüm dosyalarınızın şifrelemelerinin düzgün bir şekilde kaldırıldığından eminseniz kalıcı olarak silin.", "Restore Encryption Keys" => "Şifreleme Anahtarlarını Geri Yükle", "Delete Encryption Keys" => "Şifreleme Anahtarlarını Sil", +"Show storage location" => "Depolama konumunu göster", +"Show last log in" => "Son oturum açılma zamanını göster", "Login Name" => "Giriş Adı", "Create" => "Oluştur", "Admin Recovery Password" => "Yönetici Kurtarma Parolası", -- GitLab From 06e6f10ce461de5c9ac5cfe1748fd9707193dcae Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Sun, 31 Aug 2014 09:49:19 +0200 Subject: [PATCH 52/56] Add optional user ID parameter for getUseFolder --- lib/private/server.php | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/lib/private/server.php b/lib/private/server.php index 53aab7a586a..c502a968c74 100644 --- a/lib/private/server.php +++ b/lib/private/server.php @@ -263,14 +263,18 @@ class Server extends SimpleContainer implements IServerContainer { /** * Returns a view to ownCloud's files folder * + * @param string $userId user ID * @return \OCP\Files\Folder */ - function getUserFolder() { - $user = $this->getUserSession()->getUser(); - if (!$user) { - return null; + function getUserFolder($userId = null) { + if($userId === null) { + $user = $this->getUserSession()->getUser(); + if (!$user) { + return null; + } + $userId = $user->getUID(); } - $dir = '/' . $user->getUID(); + $dir = '/' . $userId; $root = $this->getRootFolder(); $folder = null; -- GitLab From d0266c0bf85e431a3b1b39cbfaced4e8df52a264 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 31 Aug 2014 10:05:59 +0200 Subject: [PATCH 53/56] Use public api for getting l10n --- apps/files/ajax/list.php | 2 +- apps/files/ajax/move.php | 2 +- apps/files/ajax/newfile.php | 2 +- apps/files/ajax/newfolder.php | 2 +- apps/files/ajax/rename.php | 2 +- apps/files/ajax/upload.php | 2 +- apps/files/appinfo/app.php | 2 +- apps/files_encryption/ajax/adminrecovery.php | 2 +- .../files_encryption/ajax/changeRecoveryPassword.php | 2 +- .../ajax/updatePrivateKeyPassword.php | 2 +- apps/files_encryption/files/error.php | 2 +- apps/files_external/ajax/dropbox.php | 2 +- apps/files_external/ajax/google.php | 2 +- apps/files_external/appinfo/app.php | 2 +- apps/files_sharing/ajax/external.php | 2 +- apps/files_sharing/appinfo/app.php | 2 +- apps/files_trashbin/ajax/delete.php | 2 +- apps/files_trashbin/ajax/undelete.php | 2 +- apps/files_trashbin/appinfo/app.php | 2 +- apps/files_trashbin/lib/trashbin.php | 2 +- apps/files_versions/ajax/rollbackVersion.php | 2 +- apps/user_ldap/ajax/clearMappings.php | 2 +- apps/user_ldap/ajax/deleteConfiguration.php | 2 +- apps/user_ldap/ajax/testConfiguration.php | 2 +- apps/user_ldap/ajax/wizard.php | 2 +- apps/user_ldap/lib/wizard.php | 2 +- apps/user_ldap/settings.php | 2 +- core/ajax/share.php | 6 +++--- core/ajax/translations.php | 2 +- core/js/config.php | 2 +- core/setup/controller.php | 2 +- core/strings.php | 2 +- lib/base.php | 5 ++--- lib/private/app.php | 4 ++-- lib/private/avatar.php | 4 ++-- lib/private/defaults.php | 2 +- lib/private/installer.php | 6 +++--- lib/private/json.php | 12 ++++++------ lib/private/l10n/factory.php | 7 +++++-- lib/private/server.php | 5 +++-- lib/private/setup.php | 2 +- lib/private/share/mailnotifications.php | 2 +- lib/private/share/share.php | 10 +++++----- lib/private/tags.php | 2 +- lib/private/template.php | 2 +- lib/private/template/functions.php | 2 +- lib/private/user/manager.php | 2 +- lib/private/util.php | 10 +++++----- lib/public/files/locknotacquiredexception.php | 4 ++-- lib/public/util.php | 2 +- settings/admin/controller.php | 4 ++-- settings/ajax/apps/ocs.php | 2 +- settings/ajax/changedisplayname.php | 2 +- settings/ajax/creategroup.php | 2 +- settings/ajax/decryptall.php | 2 +- settings/ajax/deletekeys.php | 2 +- settings/ajax/installapp.php | 2 +- settings/ajax/lostpassword.php | 2 +- settings/ajax/removeuser.php | 4 ++-- settings/ajax/restorekeys.php | 2 +- settings/ajax/setlanguage.php | 2 +- settings/ajax/setquota.php | 2 +- settings/ajax/togglegroups.php | 6 +++--- settings/ajax/uninstallapp.php | 2 +- settings/ajax/updateapp.php | 2 +- settings/personal.php | 2 +- 66 files changed, 97 insertions(+), 94 deletions(-) diff --git a/apps/files/ajax/list.php b/apps/files/ajax/list.php index 2f2f7054566..16e48a2c2af 100644 --- a/apps/files/ajax/list.php +++ b/apps/files/ajax/list.php @@ -2,7 +2,7 @@ OCP\JSON::checkLoggedIn(); \OC::$server->getSession()->close(); -$l = OC_L10N::get('files'); +$l = \OC::$server->getL10N('files'); // Load the files $dir = isset($_GET['dir']) ? $_GET['dir'] : ''; diff --git a/apps/files/ajax/move.php b/apps/files/ajax/move.php index e9a34a1b2f9..3a07554ad00 100644 --- a/apps/files/ajax/move.php +++ b/apps/files/ajax/move.php @@ -9,7 +9,7 @@ $dir = stripslashes($_POST["dir"]); $file = stripslashes($_POST["file"]); $target = stripslashes(rawurldecode($_POST["target"])); -$l = OC_L10N::get('files'); +$l = \OC::$server->getL10N('files'); if(\OC\Files\Filesystem::file_exists($target . '/' . $file)) { OCP\JSON::error(array("data" => array( "message" => $l->t("Could not move %s - File with this name already exists", array($file)) ))); diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php index 8173816af3a..606576760ec 100644 --- a/apps/files/ajax/newfile.php +++ b/apps/files/ajax/newfile.php @@ -46,7 +46,7 @@ function progress($notification_code, $severity, $message, $message_code, $bytes } } -$l10n = \OC_L10n::get('files'); +$l10n = \OC::$server->getL10N('files'); $result = array( 'success' => false, diff --git a/apps/files/ajax/newfolder.php b/apps/files/ajax/newfolder.php index 4ea2ee71de2..ea7a10c2ab9 100644 --- a/apps/files/ajax/newfolder.php +++ b/apps/files/ajax/newfolder.php @@ -11,7 +11,7 @@ OCP\JSON::callCheck(); $dir = isset( $_POST['dir'] ) ? stripslashes($_POST['dir']) : ''; $foldername = isset( $_POST['foldername'] ) ? stripslashes($_POST['foldername']) : ''; -$l10n = \OC_L10n::get('files'); +$l10n = \OC::$server->getL10N('files'); $result = array( 'success' => false, diff --git a/apps/files/ajax/rename.php b/apps/files/ajax/rename.php index e5fdf8af98c..00c8a1e44db 100644 --- a/apps/files/ajax/rename.php +++ b/apps/files/ajax/rename.php @@ -27,7 +27,7 @@ OCP\JSON::callCheck(); $files = new \OCA\Files\App( \OC\Files\Filesystem::getView(), - \OC_L10n::get('files') + \OC::$server->getL10N('files') ); $result = $files->rename( $_GET["dir"], diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 4eca13f1933..b960e02ced7 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -10,7 +10,7 @@ OCP\JSON::setContentTypeHeader('text/plain'); $allowedPermissions = OCP\PERMISSION_ALL; $errorCode = null; -$l = OC_L10N::get('files'); +$l = \OC::$server->getL10N('files'); if (empty($_POST['dirToken'])) { // The standard case, files are uploaded through logged in users :) OCP\JSON::checkLoggedIn(); diff --git a/apps/files/appinfo/app.php b/apps/files/appinfo/app.php index 9af36c682fd..3567bc26def 100644 --- a/apps/files/appinfo/app.php +++ b/apps/files/appinfo/app.php @@ -1,6 +1,6 @@ getL10N('files'); OCP\App::registerAdmin('files', 'admin'); diff --git a/apps/files_encryption/ajax/adminrecovery.php b/apps/files_encryption/ajax/adminrecovery.php index 303ba0e16e1..070ca6f667e 100644 --- a/apps/files_encryption/ajax/adminrecovery.php +++ b/apps/files_encryption/ajax/adminrecovery.php @@ -13,7 +13,7 @@ use OCA\Encryption; \OCP\JSON::checkAppEnabled('files_encryption'); \OCP\JSON::callCheck(); -$l = OC_L10N::get('files_encryption'); +$l = \OC::$server->getL10N('files_encryption'); $return = false; // Enable recoveryAdmin diff --git a/apps/files_encryption/ajax/changeRecoveryPassword.php b/apps/files_encryption/ajax/changeRecoveryPassword.php index 99cc7b3cdde..71fbe333fe0 100644 --- a/apps/files_encryption/ajax/changeRecoveryPassword.php +++ b/apps/files_encryption/ajax/changeRecoveryPassword.php @@ -15,7 +15,7 @@ use OCA\Encryption; \OCP\JSON::checkAppEnabled('files_encryption'); \OCP\JSON::callCheck(); -$l = OC_L10N::get('core'); +$l = \OC::$server->getL10N('core'); $return = false; diff --git a/apps/files_encryption/ajax/updatePrivateKeyPassword.php b/apps/files_encryption/ajax/updatePrivateKeyPassword.php index a14c9fe5076..f88e9c64dfd 100644 --- a/apps/files_encryption/ajax/updatePrivateKeyPassword.php +++ b/apps/files_encryption/ajax/updatePrivateKeyPassword.php @@ -15,7 +15,7 @@ use OCA\Encryption; \OCP\JSON::checkAppEnabled('files_encryption'); \OCP\JSON::callCheck(); -$l = OC_L10N::get('core'); +$l = \OC::$server->getL10N('core'); $return = false; diff --git a/apps/files_encryption/files/error.php b/apps/files_encryption/files/error.php index b436587dfaf..c33a5a531f5 100644 --- a/apps/files_encryption/files/error.php +++ b/apps/files_encryption/files/error.php @@ -4,7 +4,7 @@ if (!isset($_)) { //also provide standalone error page require_once __DIR__ . '/../../../lib/base.php'; require_once __DIR__ . '/../lib/crypt.php'; - $l = OC_L10N::get('files_encryption'); + $l = \OC::$server->getL10N('files_encryption'); if (isset($_GET['errorCode'])) { $errorCode = $_GET['errorCode']; diff --git a/apps/files_external/ajax/dropbox.php b/apps/files_external/ajax/dropbox.php index bbedf8e9cac..db417de4b2d 100644 --- a/apps/files_external/ajax/dropbox.php +++ b/apps/files_external/ajax/dropbox.php @@ -5,7 +5,7 @@ require_once __DIR__ . '/../3rdparty/Dropbox/autoload.php'; OCP\JSON::checkAppEnabled('files_external'); OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); -$l = OC_L10N::get('files_external'); +$l = \OC::$server->getL10N('files_external'); if (isset($_POST['app_key']) && isset($_POST['app_secret'])) { $oauth = new Dropbox_OAuth_Curl($_POST['app_key'], $_POST['app_secret']); diff --git a/apps/files_external/ajax/google.php b/apps/files_external/ajax/google.php index 13e74071846..40c10aa5d07 100644 --- a/apps/files_external/ajax/google.php +++ b/apps/files_external/ajax/google.php @@ -6,7 +6,7 @@ require_once 'Google_Client.php'; OCP\JSON::checkAppEnabled('files_external'); OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); -$l = OC_L10N::get('files_external'); +$l = \OC::$server->getL10N('files_external'); if (isset($_POST['client_id']) && isset($_POST['client_secret']) && isset($_POST['redirect'])) { $client = new Google_Client(); diff --git a/apps/files_external/appinfo/app.php b/apps/files_external/appinfo/app.php index 04c48187e37..50a73bd5f9a 100644 --- a/apps/files_external/appinfo/app.php +++ b/apps/files_external/appinfo/app.php @@ -6,7 +6,7 @@ * later. * See the COPYING-README file. */ -$l = \OC_L10N::get('files_external'); +$l = \OC::$server->getL10N('files_external'); OC::$CLASSPATH['OC\Files\Storage\StreamWrapper'] = 'files_external/lib/streamwrapper.php'; OC::$CLASSPATH['OC\Files\Storage\FTP'] = 'files_external/lib/ftp.php'; diff --git a/apps/files_sharing/ajax/external.php b/apps/files_sharing/ajax/external.php index 37d0607cd3f..544a97e80be 100644 --- a/apps/files_sharing/ajax/external.php +++ b/apps/files_sharing/ajax/external.php @@ -10,7 +10,7 @@ OCP\JSON::callCheck(); OCP\JSON::checkLoggedIn(); OCP\JSON::checkAppEnabled('files_sharing'); -$l = OC_L10N::get('files_sharing'); +$l = \OC::$server->getL10N('files_sharing'); // check if server admin allows to mount public links from other servers if (OCA\Files_Sharing\Helper::isIncomingServer2serverShareEnabled() === false) { diff --git a/apps/files_sharing/appinfo/app.php b/apps/files_sharing/appinfo/app.php index b22c553ec93..543cae7b0c1 100644 --- a/apps/files_sharing/appinfo/app.php +++ b/apps/files_sharing/appinfo/app.php @@ -1,5 +1,5 @@ getL10N('files_sharing'); OC::$CLASSPATH['OC_Share_Backend_File'] = 'files_sharing/lib/share/file.php'; OC::$CLASSPATH['OC_Share_Backend_Folder'] = 'files_sharing/lib/share/folder.php'; diff --git a/apps/files_trashbin/ajax/delete.php b/apps/files_trashbin/ajax/delete.php index 9d9c1dd100f..a2302802649 100644 --- a/apps/files_trashbin/ajax/delete.php +++ b/apps/files_trashbin/ajax/delete.php @@ -55,7 +55,7 @@ if ( $error ) { foreach ( $error as $e ) { $filelist .= $e.', '; } - $l = OC_L10N::get('files_trashbin'); + $l = \OC::$server->getL10N('files_trashbin'); $message = $l->t("Couldn't delete %s permanently", array(rtrim($filelist, ', '))); OCP\JSON::error(array("data" => array("message" => $message, "success" => $success, "error" => $error))); diff --git a/apps/files_trashbin/ajax/undelete.php b/apps/files_trashbin/ajax/undelete.php index afab79fcac6..02d651925ca 100644 --- a/apps/files_trashbin/ajax/undelete.php +++ b/apps/files_trashbin/ajax/undelete.php @@ -60,7 +60,7 @@ if ( $error ) { foreach ( $error as $e ) { $filelist .= $e.', '; } - $l = OC_L10N::get('files_trashbin'); + $l = OC::$server->getL10N('files_trashbin'); $message = $l->t("Couldn't restore %s", array(rtrim($filelist, ', '))); OCP\JSON::error(array("data" => array("message" => $message, "success" => $success, "error" => $error))); diff --git a/apps/files_trashbin/appinfo/app.php b/apps/files_trashbin/appinfo/app.php index 718c2f45a34..fe428121a25 100644 --- a/apps/files_trashbin/appinfo/app.php +++ b/apps/files_trashbin/appinfo/app.php @@ -1,5 +1,5 @@ getL10N('files_trashbin'); OC::$CLASSPATH['OCA\Files_Trashbin\Exceptions\CopyRecursiveException'] = 'files_trashbin/lib/exceptions.php'; diff --git a/apps/files_trashbin/lib/trashbin.php b/apps/files_trashbin/lib/trashbin.php index ee3969323cf..69eef09d1e9 100644 --- a/apps/files_trashbin/lib/trashbin.php +++ b/apps/files_trashbin/lib/trashbin.php @@ -891,7 +891,7 @@ class Trashbin { private static function getUniqueFilename($location, $filename, $view) { $ext = pathinfo($filename, PATHINFO_EXTENSION); $name = pathinfo($filename, PATHINFO_FILENAME); - $l = \OC_L10N::get('files_trashbin'); + $l = \OC::$server->getL10N('files_trashbin'); // if extension is not empty we set a dot in front of it if ($ext !== '') { diff --git a/apps/files_versions/ajax/rollbackVersion.php b/apps/files_versions/ajax/rollbackVersion.php index 900d8cd6e28..e6133507738 100644 --- a/apps/files_versions/ajax/rollbackVersion.php +++ b/apps/files_versions/ajax/rollbackVersion.php @@ -9,6 +9,6 @@ $revision=(int)$_GET['revision']; if(OCA\Files_Versions\Storage::rollback( $file, $revision )) { OCP\JSON::success(array("data" => array( "revision" => $revision, "file" => $file ))); }else{ - $l = OC_L10N::get('files_versions'); + $l = \OC::$server->getL10N('files_versions'); OCP\JSON::error(array("data" => array( "message" => $l->t("Could not revert: %s", array($file) )))); } diff --git a/apps/user_ldap/ajax/clearMappings.php b/apps/user_ldap/ajax/clearMappings.php index 9118d58c5cf..4e713c59f96 100644 --- a/apps/user_ldap/ajax/clearMappings.php +++ b/apps/user_ldap/ajax/clearMappings.php @@ -30,6 +30,6 @@ $subject = $_POST['ldap_clear_mapping']; if(\OCA\user_ldap\lib\Helper::clearMapping($subject)) { OCP\JSON::success(); } else { - $l=OC_L10N::get('user_ldap'); + $l = \OC::$server->getL10N('user_ldap'); OCP\JSON::error(array('message' => $l->t('Failed to clear the mappings.'))); } diff --git a/apps/user_ldap/ajax/deleteConfiguration.php b/apps/user_ldap/ajax/deleteConfiguration.php index ade57110d34..bca687c81ab 100644 --- a/apps/user_ldap/ajax/deleteConfiguration.php +++ b/apps/user_ldap/ajax/deleteConfiguration.php @@ -30,6 +30,6 @@ $prefix = $_POST['ldap_serverconfig_chooser']; if(\OCA\user_ldap\lib\Helper::deleteServerConfiguration($prefix)) { OCP\JSON::success(); } else { - $l=OC_L10N::get('user_ldap'); + $l = \OC::$server->getL10N('user_ldap'); OCP\JSON::error(array('message' => $l->t('Failed to delete the server configuration'))); } diff --git a/apps/user_ldap/ajax/testConfiguration.php b/apps/user_ldap/ajax/testConfiguration.php index a6375209611..c6372eb2ced 100644 --- a/apps/user_ldap/ajax/testConfiguration.php +++ b/apps/user_ldap/ajax/testConfiguration.php @@ -26,7 +26,7 @@ OCP\JSON::checkAdminUser(); OCP\JSON::checkAppEnabled('user_ldap'); OCP\JSON::callCheck(); -$l=OC_L10N::get('user_ldap'); +$l = \OC::$server->getL10N('user_ldap'); $ldapWrapper = new OCA\user_ldap\lib\LDAP(); $connection = new \OCA\user_ldap\lib\Connection($ldapWrapper, '', null); diff --git a/apps/user_ldap/ajax/wizard.php b/apps/user_ldap/ajax/wizard.php index adbcf6ff414..ef1241b9147 100644 --- a/apps/user_ldap/ajax/wizard.php +++ b/apps/user_ldap/ajax/wizard.php @@ -26,7 +26,7 @@ OCP\JSON::checkAdminUser(); OCP\JSON::checkAppEnabled('user_ldap'); OCP\JSON::callCheck(); -$l=OC_L10N::get('user_ldap'); +$l = \OC::$server->getL10N('user_ldap'); if(!isset($_POST['action'])) { \OCP\JSON::error(array('message' => $l->t('No action specified'))); diff --git a/apps/user_ldap/lib/wizard.php b/apps/user_ldap/lib/wizard.php index 4118b45bc35..dceb2206dbe 100644 --- a/apps/user_ldap/lib/wizard.php +++ b/apps/user_ldap/lib/wizard.php @@ -53,7 +53,7 @@ class Wizard extends LDAPUtility { parent::__construct($ldap); $this->configuration = $configuration; if(is_null(Wizard::$l)) { - Wizard::$l = \OC_L10N::get('user_ldap'); + Wizard::$l = \OC::$server->getL10N('user_ldap'); } $this->access = $access; $this->result = new WizardResult; diff --git a/apps/user_ldap/settings.php b/apps/user_ldap/settings.php index fcde5df3716..e7cdd0d926a 100644 --- a/apps/user_ldap/settings.php +++ b/apps/user_ldap/settings.php @@ -46,7 +46,7 @@ $wControls = $wControls->fetchPage(); $sControls = new OCP\Template('user_ldap', 'part.settingcontrols'); $sControls = $sControls->fetchPage(); -$l = \OC_L10N::get('user_ldap'); +$l = \OC::$server->getL10N('user_ldap'); $wizTabs = array(); $wizTabs[] = array('tpl' => 'part.wizard-server', 'cap' => $l->t('Server')); diff --git a/core/ajax/share.php b/core/ajax/share.php index 451c761c2cd..c6da79a8a42 100644 --- a/core/ajax/share.php +++ b/core/ajax/share.php @@ -90,7 +90,7 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo } break; case 'informRecipients': - $l = OC_L10N::get('core'); + $l = \OC::$server->getL10N('core'); $shareType = (int) $_POST['shareType']; $itemType = $_POST['itemType']; $itemSource = $_POST['itemSource']; @@ -153,7 +153,7 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo if(empty($result)) { \OCP\JSON::success(); } else { - $l = OC_L10N::get('core'); + $l = \OC::$server->getL10N('core'); OCP\JSON::error(array( 'data' => array( 'message' => $l->t("Couldn't send mail to following users: %s ", @@ -287,7 +287,7 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo $count = 0; // enable l10n support - $l = OC_L10N::get('core'); + $l = \OC::$server->getL10N('core'); foreach ($groups as $group) { if ($count < 15) { diff --git a/core/ajax/translations.php b/core/ajax/translations.php index e829453dbcc..c296cea572a 100644 --- a/core/ajax/translations.php +++ b/core/ajax/translations.php @@ -25,6 +25,6 @@ $app = isset($_POST["app"]) ? $_POST["app"] : ""; $app = OC_App::cleanAppId($app); -$l = OC_L10N::get( $app ); +$l = \OC::$server->getL10N($app); OC_JSON::success(array('data' => $l->getTranslations(), 'plural_form' => $l->getPluralFormString())); diff --git a/core/js/config.php b/core/js/config.php index b61694522db..6994f2ed8a2 100644 --- a/core/js/config.php +++ b/core/js/config.php @@ -14,7 +14,7 @@ header("Cache-Control: no-cache, must-revalidate"); header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Enable l10n support -$l = OC_L10N::get('core'); +$l = \OC::$server->getL10N('core'); // Enable OC_Defaults support $defaults = new OC_Defaults(); diff --git a/core/setup/controller.php b/core/setup/controller.php index e764b232e89..91b90e0adef 100644 --- a/core/setup/controller.php +++ b/core/setup/controller.php @@ -132,7 +132,7 @@ class Controller { } if (\OC_Util::runningOnMac()) { - $l10n = \OC_L10N::get('core'); + $l10n = \OC::$server->getL10N('core'); $themeName = \OC_Util::getTheme(); $theme = new \OC_Defaults(); $errors[] = array( diff --git a/core/strings.php b/core/strings.php index 01ab3866089..ebae63bf928 100644 --- a/core/strings.php +++ b/core/strings.php @@ -1,7 +1,7 @@ getL10N('core'); $l->t("Personal"); $l->t("Users"); $l->t("Apps"); diff --git a/lib/base.php b/lib/base.php index 0539814589e..176f799f94d 100644 --- a/lib/base.php +++ b/lib/base.php @@ -193,7 +193,7 @@ class OC { } public static function checkConfig() { - $l = OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); if (file_exists(self::$configDir . "/config.php") and !is_writable(self::$configDir . "/config.php") ) { @@ -574,7 +574,7 @@ class OC { // Check whether the sample configuration has been copied if(OC_Config::getValue('copied_sample_config', false)) { - $l = \OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); header('HTTP/1.1 503 Service Temporarily Unavailable'); header('Status: 503 Service Temporarily Unavailable'); OC_Template::printErrorPage( @@ -672,7 +672,6 @@ class OC { * Handle the request */ public static function handleRequest() { - $l = \OC_L10N::get('lib'); // load all the classpaths from the enabled apps so they are available // in the routing files of each app OC::loadAppClassPaths(); diff --git a/lib/private/app.php b/lib/private/app.php index 70f8980d2c1..d10d352b432 100644 --- a/lib/private/app.php +++ b/lib/private/app.php @@ -359,7 +359,7 @@ class OC_App { * entries are sorted by the key 'order' ascending. */ public static function getSettingsNavigation() { - $l = OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); $settings = array(); // by default, settings only contain the help menu @@ -1094,7 +1094,7 @@ class OC_App { * @throws Exception if no app-name was specified */ public static function installApp($app) { - $l = OC_L10N::get('core'); + $l = \OC::$server->getL10N('core'); $appData=OC_OCSClient::getApplication($app); // check if app is a shipped app or not. OCS apps have an integer as id, shipped apps use a string diff --git a/lib/private/avatar.php b/lib/private/avatar.php index 2286b896878..a9d9346d50a 100644 --- a/lib/private/avatar.php +++ b/lib/private/avatar.php @@ -62,12 +62,12 @@ class OC_Avatar implements \OCP\IAvatar { $type = 'jpg'; } if ($type !== 'jpg' && $type !== 'png') { - $l = \OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); throw new \Exception($l->t("Unknown filetype")); } if (!$img->valid()) { - $l = \OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); throw new \Exception($l->t("Invalid image")); } diff --git a/lib/private/defaults.php b/lib/private/defaults.php index dfd114cd2fe..3996cc081ed 100644 --- a/lib/private/defaults.php +++ b/lib/private/defaults.php @@ -27,7 +27,7 @@ class OC_Defaults { private $defaultMailHeaderColor; function __construct() { - $this->l = OC_L10N::get('lib'); + $this->l = \OC::$server->getL10N('lib'); $version = OC_Util::getVersion(); $this->defaultEntity = 'ownCloud'; /* e.g. company name, used for footers and copyright notices */ diff --git a/lib/private/installer.php b/lib/private/installer.php index dc9a3558b75..02e2190aaf2 100644 --- a/lib/private/installer.php +++ b/lib/private/installer.php @@ -62,7 +62,7 @@ class OC_Installer{ * @return integer */ public static function installApp( $data = array()) { - $l = \OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); list($extractDir, $path) = self::downloadApp($data); $info = self::checkAppsIntegrity($data, $extractDir, $path); @@ -229,7 +229,7 @@ class OC_Installer{ * @throws Exception */ public static function downloadApp($data = array()) { - $l = \OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); if(!isset($data['source'])) { throw new \Exception($l->t("No source specified when installing app")); @@ -285,7 +285,7 @@ class OC_Installer{ * @throws \Exception */ public static function checkAppsIntegrity($data = array(), $extractDir, $path, $isShipped=false) { - $l = \OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); //load the info.xml file of the app if(!is_file($extractDir.'/appinfo/info.xml')) { //try to find it in a subdir diff --git a/lib/private/json.php b/lib/private/json.php index da38654997f..f2719dd2bc7 100644 --- a/lib/private/json.php +++ b/lib/private/json.php @@ -25,7 +25,7 @@ class OC_JSON{ */ public static function checkAppEnabled($app) { if( !OC_App::isEnabled($app)) { - $l = OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); self::error(array( 'data' => array( 'message' => $l->t('Application is not enabled'), 'error' => 'application_not_enabled' ))); exit(); } @@ -36,7 +36,7 @@ class OC_JSON{ */ public static function checkLoggedIn() { if( !OC_User::isLoggedIn()) { - $l = OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); self::error(array( 'data' => array( 'message' => $l->t('Authentication error'), 'error' => 'authentication_error' ))); exit(); } @@ -47,7 +47,7 @@ class OC_JSON{ */ public static function callCheck() { if( !OC_Util::isCallRegistered()) { - $l = OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); self::error(array( 'data' => array( 'message' => $l->t('Token expired. Please reload page.'), 'error' => 'token_expired' ))); exit(); } @@ -58,7 +58,7 @@ class OC_JSON{ */ public static function checkAdminUser() { if( !OC_User::isAdminUser(OC_User::getUser())) { - $l = OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); self::error(array( 'data' => array( 'message' => $l->t('Authentication error'), 'error' => 'authentication_error' ))); exit(); } @@ -70,7 +70,7 @@ class OC_JSON{ */ public static function checkUserExists($user) { if (!OCP\User::userExists($user)) { - $l = OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); OCP\JSON::error(array('data' => array('message' => $l->t('Unknown user'), 'error' => 'unknown_user' ))); exit; } @@ -83,7 +83,7 @@ class OC_JSON{ */ public static function checkSubAdminUser() { if(!OC_SubAdmin::isSubAdmin(OC_User::getUser())) { - $l = OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); self::error(array( 'data' => array( 'message' => $l->t('Authentication error'), 'error' => 'authentication_error' ))); exit(); } diff --git a/lib/private/l10n/factory.php b/lib/private/l10n/factory.php index d0c3799b9c2..fcc3f3e3394 100644 --- a/lib/private/l10n/factory.php +++ b/lib/private/l10n/factory.php @@ -20,12 +20,15 @@ class Factory { /** * get an L10N instance + * * @param string $app * @param string|null $lang * @return \OC_L10N */ - public function get($app) { - if (!isset($this->instances[$app])) { + public function get($app, $lang = null) { + if (!is_null($lang)) { + return new \OC_L10N($app, $lang); + } else if (!isset($this->instances[$app])) { $this->instances[$app] = new \OC_L10N($app); } return $this->instances[$app]; diff --git a/lib/private/server.php b/lib/private/server.php index 53aab7a586a..bf1801a5ce8 100644 --- a/lib/private/server.php +++ b/lib/private/server.php @@ -369,10 +369,11 @@ class Server extends SimpleContainer implements IServerContainer { * get an L10N instance * * @param string $app appid + * @param string $lang * @return \OC_L10N */ - function getL10N($app) { - return $this->query('L10NFactory')->get($app); + function getL10N($app, $lang = null) { + return $this->query('L10NFactory')->get($app, $lang); } /** diff --git a/lib/private/setup.php b/lib/private/setup.php index fdf98ab0959..2e23aae8838 100644 --- a/lib/private/setup.php +++ b/lib/private/setup.php @@ -15,7 +15,7 @@ class OC_Setup { ); public static function getTrans(){ - return OC_L10N::get('lib'); + return \OC::$server->getL10N('lib'); } public static function install($options) { diff --git a/lib/private/share/mailnotifications.php b/lib/private/share/mailnotifications.php index 1f4645eed9f..4a92503bdd3 100644 --- a/lib/private/share/mailnotifications.php +++ b/lib/private/share/mailnotifications.php @@ -52,7 +52,7 @@ class MailNotifications { * @param string $sender user id (if nothing is set we use the currently logged-in user) */ public function __construct($sender = null) { - $this->l = \OC_L10N::get('core'); + $this->l = \OC::$server->getL10N('core'); $this->senderId = $sender; diff --git a/lib/private/share/share.php b/lib/private/share/share.php index c3593beac45..e2e9b94125e 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -479,7 +479,7 @@ class Share extends \OC\Share\Constants { public static function shareItem($itemType, $itemSource, $shareType, $shareWith, $permissions, $itemSourceName = null, \DateTime $expirationDate = null) { $uidOwner = \OC_User::getUser(); $shareWithinGroupOnly = self::shareWithGroupMembersOnly(); - $l = \OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); if (is_null($itemSourceName)) { $itemSourceName = $itemSource; @@ -849,7 +849,7 @@ class Share extends \OC\Share\Constants { * @return boolean true on success or false on failure */ public static function setPermissions($itemType, $itemSource, $shareType, $shareWith, $permissions) { - $l = \OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(), self::FORMAT_NONE, null, 1, false)) { // Check if this item is a reshare and verify that the permissions @@ -938,7 +938,7 @@ class Share extends \OC\Share\Constants { * @throws \Exception */ private static function validateExpireDate($expireDate, $shareTime, $itemType, $itemSource) { - $l = \OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); $date = new \DateTime($expireDate); $today = new \DateTime('now'); @@ -1083,7 +1083,7 @@ class Share extends \OC\Share\Constants { * @return \OCP\Share_Backend */ public static function getBackend($itemType) { - $l = \OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); if (isset(self::$backends[$itemType])) { return self::$backends[$itemType]; } else if (isset(self::$backendTypes[$itemType]['class'])) { @@ -1516,7 +1516,7 @@ class Share extends \OC\Share\Constants { private static function put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, $parentFolder = null, $token = null, $itemSourceName = null, \DateTime $expirationDate = null) { $backend = self::getBackend($itemType); - $l = \OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); // Check if this is a reshare if ($checkReshare = self::getItemSharedWithBySource($itemType, $itemSource, self::FORMAT_NONE, null, true)) { diff --git a/lib/private/tags.php b/lib/private/tags.php index 0b62caf2dd8..0e58789ecd5 100644 --- a/lib/private/tags.php +++ b/lib/private/tags.php @@ -178,7 +178,7 @@ class Tags implements \OCP\ITags { } if($tagId === false) { - $l10n = \OC_L10N::get('core'); + $l10n = \OC::$server->getL10N('core'); throw new \Exception( $l10n->t('Could not find category "%s"', $tag) ); diff --git a/lib/private/template.php b/lib/private/template.php index 73fa53a2fa3..d95943a714c 100644 --- a/lib/private/template.php +++ b/lib/private/template.php @@ -56,7 +56,7 @@ class OC_Template extends \OC\Template\Base { $requesttoken = (OC::$server->getSession() and $registerCall) ? OC_Util::callRegister() : ''; $parts = explode('/', $app); // fix translation when app is something like core/lostpassword - $l10n = OC_L10N::get($parts[0]); + $l10n = \OC::$server->getL10N($parts[0]); $themeDefaults = new OC_Defaults(); list($path, $template) = $this->findTemplate($theme, $app, $name, $fext); diff --git a/lib/private/template/functions.php b/lib/private/template/functions.php index 46e48274001..3cbf0d9748f 100644 --- a/lib/private/template/functions.php +++ b/lib/private/template/functions.php @@ -117,7 +117,7 @@ function strip_time($timestamp){ * @return OC_L10N_String timestamp */ function relative_modified_date($timestamp, $fromTime = null, $dateOnly = false) { - $l=OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); if (!isset($fromTime) || $fromTime === null){ $fromTime = time(); } diff --git a/lib/private/user/manager.php b/lib/private/user/manager.php index a54755e71c5..5c155c27aba 100644 --- a/lib/private/user/manager.php +++ b/lib/private/user/manager.php @@ -237,7 +237,7 @@ class Manager extends PublicEmitter implements IUserManager { * @return bool|\OC\User\User the created user of false */ public function createUser($uid, $password) { - $l = \OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); // Check the name for bad characters // Allowed are: "a-z", "A-Z", "0-9" and "_.@-" if (preg_match('/[^a-zA-Z0-9 _\.@\-]/', $uid)) { diff --git a/lib/private/util.php b/lib/private/util.php index ad078e8a44c..adb7fb83d28 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -392,7 +392,7 @@ class OC_Util { $offset = $clientTimeZone - $systemTimeZone; $timestamp = $timestamp + $offset * 60; } - $l = OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); return $l->l($dateOnly ? 'date' : 'datetime', $timestamp); } @@ -402,7 +402,7 @@ class OC_Util { * @return array arrays with error messages and hints */ public static function checkServer() { - $l = OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); $errors = array(); $CONFIG_DATADIRECTORY = OC_Config::getValue('datadirectory', OC::$SERVERROOT . '/data'); @@ -626,7 +626,7 @@ class OC_Util { * @return array errors array */ public static function checkDatabaseVersion() { - $l = OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); $errors = array(); $dbType = \OC_Config::getValue('dbtype', 'sqlite'); if ($dbType === 'pgsql') { @@ -707,7 +707,7 @@ class OC_Util { * @return array arrays with error messages and hints */ public static function checkDataDirectoryPermissions($dataDirectory) { - $l = OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); $errors = array(); if (self::runningOnWindows()) { //TODO: permissions checks for windows hosts @@ -738,7 +738,7 @@ class OC_Util { * @return bool true if the data directory is valid, false otherwise */ public static function checkDataDirectoryValidity($dataDirectory) { - $l = OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); $errors = array(); if (!file_exists($dataDirectory . '/.ocdata')) { $errors[] = array( diff --git a/lib/public/files/locknotacquiredexception.php b/lib/public/files/locknotacquiredexception.php index 9fb70e7cbe2..647b07bf878 100644 --- a/lib/public/files/locknotacquiredexception.php +++ b/lib/public/files/locknotacquiredexception.php @@ -36,7 +36,7 @@ class LockNotAcquiredException extends \Exception { public $lockType; public function __construct($path, $lockType, $code = 0, \Exception $previous = null) { - $message = \OC_L10N::get('core')->t('Could not obtain lock type %d on "%s".', array($lockType, $path)); + $message = \OC::$server->getL10N('core')->t('Could not obtain lock type %d on "%s".', array($lockType, $path)); parent::__construct($message, $code, $previous); } @@ -44,4 +44,4 @@ class LockNotAcquiredException extends \Exception { public function __toString() { return __CLASS__ . ": [{$this->code}]: {$this->message}\n"; } -} \ No newline at end of file +} diff --git a/lib/public/util.php b/lib/public/util.php index 87b7a4f19db..bc1b90a2c89 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -132,7 +132,7 @@ class Util { * @return \OC_L10N */ public static function getL10N($application, $language = null) { - return \OC_L10N::get($application, $language); + return \OC::$server->getL10N($application, $language); } /** diff --git a/settings/admin/controller.php b/settings/admin/controller.php index 7ced57791e9..395bc7c6e49 100644 --- a/settings/admin/controller.php +++ b/settings/admin/controller.php @@ -27,7 +27,7 @@ class Controller { \OC_Util::checkAdminUser(); \OCP\JSON::callCheck(); - $l = \OC_L10N::get('settings'); + $l = \OC::$server->getL10N('settings'); $smtp_settings = array( 'mail_domain' => null, @@ -80,7 +80,7 @@ class Controller { \OC_Util::checkAdminUser(); \OCP\JSON::callCheck(); - $l = \OC_L10N::get('settings'); + $l = \OC::$server->getL10N('settings'); $email = \OC_Preferences::getValue(\OC_User::getUser(), 'settings', 'email', ''); if (!empty($email)) { $defaults = new \OC_Defaults(); diff --git a/settings/ajax/apps/ocs.php b/settings/ajax/apps/ocs.php index b68083fca6b..aad0690e01c 100644 --- a/settings/ajax/apps/ocs.php +++ b/settings/ajax/apps/ocs.php @@ -8,7 +8,7 @@ OC_JSON::checkAdminUser(); -$l = OC_L10N::get('settings'); +$l = \OC::$server->getL10N('settings'); if(OC_Config::getValue('appstoreenabled', true)==false) { OCP\JSON::success(array('type' => 'external', 'data' => array())); diff --git a/settings/ajax/changedisplayname.php b/settings/ajax/changedisplayname.php index 54c8c05dd4b..1e52182ccf6 100644 --- a/settings/ajax/changedisplayname.php +++ b/settings/ajax/changedisplayname.php @@ -4,7 +4,7 @@ OCP\JSON::callCheck(); OC_JSON::checkLoggedIn(); -$l=OC_L10N::get('settings'); +$l = \OC::$server->getL10N('settings'); $username = isset($_POST["username"]) ? $_POST["username"] : OC_User::getUser(); $displayName = $_POST["displayName"]; diff --git a/settings/ajax/creategroup.php b/settings/ajax/creategroup.php index 854f2c37189..be376bea9dc 100644 --- a/settings/ajax/creategroup.php +++ b/settings/ajax/creategroup.php @@ -4,7 +4,7 @@ OCP\JSON::callCheck(); OC_JSON::checkAdminUser(); $groupname = $_POST["groupname"]; -$l = OC_L10N::get('settings'); +$l = \OC::$server->getL10N('settings'); // Does the group exist? if( in_array( $groupname, OC_Group::getGroups())) { diff --git a/settings/ajax/decryptall.php b/settings/ajax/decryptall.php index 55685f778d1..527e5b8fcee 100644 --- a/settings/ajax/decryptall.php +++ b/settings/ajax/decryptall.php @@ -12,7 +12,7 @@ $params = array('uid' => \OCP\User::getUser(), $view = new OC\Files\View('/'); $util = new \OCA\Encryption\Util($view, \OCP\User::getUser()); -$l = \OC_L10N::get('settings'); +$l = \OC::$server->getL10N('settings'); $result = $util->initEncryption($params); diff --git a/settings/ajax/deletekeys.php b/settings/ajax/deletekeys.php index 1f84452e117..86a45820af9 100644 --- a/settings/ajax/deletekeys.php +++ b/settings/ajax/deletekeys.php @@ -3,7 +3,7 @@ OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); -$l = \OC_L10N::get('settings'); +$l = \OC::$server->getL10N('settings'); $user = \OC_User::getUser(); $view = new \OC\Files\View('/' . $user . '/files_encryption'); diff --git a/settings/ajax/installapp.php b/settings/ajax/installapp.php index 47f40f2b0cd..80bc1819724 100644 --- a/settings/ajax/installapp.php +++ b/settings/ajax/installapp.php @@ -14,6 +14,6 @@ $result = OC_App::installApp($appId); if($result !== false) { OC_JSON::success(array('data' => array('appid' => $appId))); } else { - $l = OC_L10N::get('settings'); + $l = \OC::$server->getL10N('settings'); OC_JSON::error(array("data" => array( "message" => $l->t("Couldn't remove app.") ))); } diff --git a/settings/ajax/lostpassword.php b/settings/ajax/lostpassword.php index 15b6cbc0122..395ba31f92b 100644 --- a/settings/ajax/lostpassword.php +++ b/settings/ajax/lostpassword.php @@ -3,7 +3,7 @@ OC_JSON::checkLoggedIn(); OCP\JSON::callCheck(); -$l=OC_L10N::get('settings'); +$l = \OC::$server->getL10N('settings'); // Get data if( isset( $_POST['email'] ) && OC_Mail::validateAddress($_POST['email']) ) { diff --git a/settings/ajax/removeuser.php b/settings/ajax/removeuser.php index 8732c6518a8..eda85238780 100644 --- a/settings/ajax/removeuser.php +++ b/settings/ajax/removeuser.php @@ -11,7 +11,7 @@ if(OC_User::getUser() === $username) { } if(!OC_User::isAdminUser(OC_User::getUser()) && !OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username)) { - $l = OC_L10N::get('core'); + $l = \OC::$server->getL10N('core'); OC_JSON::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); exit(); } @@ -21,6 +21,6 @@ if( OC_User::deleteUser( $username )) { OC_JSON::success(array("data" => array( "username" => $username ))); } else{ - $l = OC_L10N::get('core'); + $l = \OC::$server->getL10N('core'); OC_JSON::error(array("data" => array( "message" => $l->t("Unable to delete user") ))); } diff --git a/settings/ajax/restorekeys.php b/settings/ajax/restorekeys.php index 68e19c90457..5c263fadab4 100644 --- a/settings/ajax/restorekeys.php +++ b/settings/ajax/restorekeys.php @@ -3,7 +3,7 @@ OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); -$l = \OC_L10N::get('settings'); +$l = \OC::$server->getL10N('settings'); $user = \OC_User::getUser(); $view = new \OC\Files\View('/' . $user . '/files_encryption'); diff --git a/settings/ajax/setlanguage.php b/settings/ajax/setlanguage.php index 94773f3dc70..a3988db85bb 100644 --- a/settings/ajax/setlanguage.php +++ b/settings/ajax/setlanguage.php @@ -1,6 +1,6 @@ getL10N('settings'); OC_JSON::checkLoggedIn(); OCP\JSON::callCheck(); diff --git a/settings/ajax/setquota.php b/settings/ajax/setquota.php index 2e6de2b759c..f19506a0456 100644 --- a/settings/ajax/setquota.php +++ b/settings/ajax/setquota.php @@ -13,7 +13,7 @@ $username = isset($_POST["username"])?$_POST["username"]:''; if(($username === '' && !OC_User::isAdminUser(OC_User::getUser())) || (!OC_User::isAdminUser(OC_User::getUser()) && !OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username))) { - $l = OC_L10N::get('core'); + $l = \OC::$server->getL10N('core'); OC_JSON::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); exit(); } diff --git a/settings/ajax/togglegroups.php b/settings/ajax/togglegroups.php index 6963f9eb43c..27cb2b446ec 100644 --- a/settings/ajax/togglegroups.php +++ b/settings/ajax/togglegroups.php @@ -8,7 +8,7 @@ $username = $_POST["username"]; $group = $_POST["group"]; if($username === OC_User::getUser() && $group === "admin" && OC_User::isAdminUser($username)) { - $l = OC_L10N::get('core'); + $l = \OC::$server->getL10N('core'); OC_JSON::error(array( 'data' => array( 'message' => $l->t('Admins can\'t remove themself from the admin group')))); exit(); } @@ -16,7 +16,7 @@ if($username === OC_User::getUser() && $group === "admin" && OC_User::isAdminUs if(!OC_User::isAdminUser(OC_User::getUser()) && (!OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username) || !OC_SubAdmin::isGroupAccessible(OC_User::getUser(), $group))) { - $l = OC_L10N::get('core'); + $l = \OC::$server->getL10N('core'); OC_JSON::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); exit(); } @@ -25,7 +25,7 @@ if(!OC_Group::groupExists($group)) { OC_Group::createGroup($group); } -$l = OC_L10N::get('settings'); +$l = \OC::$server->getL10N('settings'); $error = $l->t("Unable to add user to group %s", $group); $action = "add"; diff --git a/settings/ajax/uninstallapp.php b/settings/ajax/uninstallapp.php index 5c6371dc16f..cae7c33f292 100644 --- a/settings/ajax/uninstallapp.php +++ b/settings/ajax/uninstallapp.php @@ -14,6 +14,6 @@ $result = OC_App::removeApp($appId); if($result !== false) { OC_JSON::success(array('data' => array('appid' => $appId))); } else { - $l = OC_L10N::get('settings'); + $l = \OC::$server->getL10N('settings'); OC_JSON::error(array("data" => array( "message" => $l->t("Couldn't remove app.") ))); } diff --git a/settings/ajax/updateapp.php b/settings/ajax/updateapp.php index afaa9318fb2..6375a41024a 100644 --- a/settings/ajax/updateapp.php +++ b/settings/ajax/updateapp.php @@ -40,6 +40,6 @@ $result = OC_Installer::updateAppByOCSId($appId, $isShipped); if($result !== false) { OC_JSON::success(array('data' => array('appid' => $appId))); } else { - $l = OC_L10N::get('settings'); + $l = \OC::$server->getL10N('settings'); OC_JSON::error(array("data" => array( "message" => $l->t("Couldn't update app.") ))); } diff --git a/settings/personal.php b/settings/personal.php index a72b293413a..b290d6a959e 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -46,7 +46,7 @@ $languageNames=include 'languageCodes.php'; $languages=array(); $commonlanguages = array(); foreach($languageCodes as $lang) { - $l=OC_L10N::get('settings', $lang); + $l = \OC::$server->getL10N('settings', $lang); if(substr($l->t('__language_name__'), 0, 1) !== '_') {//first check if the language name is in the translation file $ln=array('code'=>$lang, 'name'=> (string)$l->t('__language_name__')); }elseif(isset($languageNames[$lang])) { -- GitLab From a58e670ae5517296e5fcbe256f04b1e7e13f86f2 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 31 Aug 2014 10:20:00 +0200 Subject: [PATCH 54/56] Also extend public server interface --- lib/public/iservercontainer.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/public/iservercontainer.php b/lib/public/iservercontainer.php index 9c39ac7ae73..f8fa929239c 100644 --- a/lib/public/iservercontainer.php +++ b/lib/public/iservercontainer.php @@ -145,9 +145,10 @@ interface IServerContainer { /** * get an L10N instance * @param string $app appid + * @param string $lang * @return \OCP\IL10N */ - function getL10N($app); + function getL10N($app, $lang = null); /** * Returns the URL generator -- GitLab From ac6324a5d0978597f65fd7dfc9914616f68b605b Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Sun, 31 Aug 2014 11:16:40 +0200 Subject: [PATCH 55/56] update public interface for getUserFolder --- lib/public/iservercontainer.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/public/iservercontainer.php b/lib/public/iservercontainer.php index 9c39ac7ae73..c0413c13249 100644 --- a/lib/public/iservercontainer.php +++ b/lib/public/iservercontainer.php @@ -81,9 +81,10 @@ interface IServerContainer { /** * Returns a view to ownCloud's files folder * + * @param string $userId user ID * @return \OCP\Files\Folder */ - function getUserFolder(); + function getUserFolder($userId = null); /** * Returns an app-specific view in ownClouds data directory -- GitLab From fe74b397a53b8a568c15d1ccf779bc8b0425b3c5 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Sun, 31 Aug 2014 15:27:15 +0200 Subject: [PATCH 56/56] Use correct 3rdparty --- 3rdparty | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3rdparty b/3rdparty index 428579e7a14..82d02dd48ad 160000 --- a/3rdparty +++ b/3rdparty @@ -1 +1 @@ -Subproject commit 428579e7a14ce465cb3596c91110ad7d13de2b06 +Subproject commit 82d02dd48ad11312bd740c57720dc84b4d66fa8a -- GitLab