diff --git a/.gitignore b/.gitignore index cc4d3bf03b0..68c48822e9d 100644 --- a/.gitignore +++ b/.gitignore @@ -40,3 +40,7 @@ nbproject # Mac OS .DS_Store + +# WebFinger +.well-known +/.buildpath diff --git a/.htaccess b/.htaccess index 116dacabf3f..86a2de6b946 100644 --- a/.htaccess +++ b/.htaccess @@ -1,10 +1,12 @@ -ErrorDocument 404 /owncloud/core/templates/404.php +ErrorDocument 404 /core/templates/404.php php_value upload_max_filesize 512M php_value post_max_size 512M -php_value memory_limit 128M +php_value memory_limit 512M SetEnv htaccessWorking true + RewriteEngine on RewriteRule .* - [env=HTTP_AUTHORIZATION:%{HTTP:Authorization},last] + Options -Indexes diff --git a/3rdparty/MDB2/Driver/Manager/pgsql.php b/3rdparty/MDB2/Driver/Manager/pgsql.php index 490f697aa5b..44a611d399d 100644 --- a/3rdparty/MDB2/Driver/Manager/pgsql.php +++ b/3rdparty/MDB2/Driver/Manager/pgsql.php @@ -68,7 +68,7 @@ class MDB2_Driver_Manager_pgsql extends MDB2_Driver_Manager_Common */ function createDatabase($name, $options = array()) { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -95,7 +95,7 @@ class MDB2_Driver_Manager_pgsql extends MDB2_Driver_Manager_Common */ function alterDatabase($name, $options = array()) { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -122,7 +122,7 @@ class MDB2_Driver_Manager_pgsql extends MDB2_Driver_Manager_Common */ function dropDatabase($name) { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -181,7 +181,7 @@ class MDB2_Driver_Manager_pgsql extends MDB2_Driver_Manager_Common */ function truncateTable($name) { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -209,7 +209,7 @@ class MDB2_Driver_Manager_pgsql extends MDB2_Driver_Manager_Common */ function vacuum($table = null, $options = array()) { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -326,7 +326,7 @@ class MDB2_Driver_Manager_pgsql extends MDB2_Driver_Manager_Common */ function alterTable($name, $changes, $check) { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -396,6 +396,9 @@ class MDB2_Driver_Manager_pgsql extends MDB2_Driver_Manager_Common } $db->loadModule('Datatype', null, true); $type = $db->datatype->getTypeDeclaration($field['definition']); + if($type=='SERIAL PRIMARY KEY'){//not correct when altering a table, since serials arent a real type + $type='INTEGER';//use integer instead + } $query = "ALTER $field_name TYPE $type USING CAST($field_name AS $type)"; $result = $db->exec("ALTER TABLE $name $query"); if (PEAR::isError($result)) { @@ -441,7 +444,7 @@ class MDB2_Driver_Manager_pgsql extends MDB2_Driver_Manager_Common */ function listDatabases() { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -474,7 +477,7 @@ class MDB2_Driver_Manager_pgsql extends MDB2_Driver_Manager_Common */ function listUsers() { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -499,9 +502,9 @@ class MDB2_Driver_Manager_pgsql extends MDB2_Driver_Manager_Common * @return mixed array of view names on success, a MDB2 error on failure * @access public */ - function listViews() + function listViews($database = null) { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -631,9 +634,9 @@ class MDB2_Driver_Manager_pgsql extends MDB2_Driver_Manager_Common * @return mixed array of table names on success, a MDB2 error on failure * @access public */ - function listTables() + function listTables($database = null) { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -680,7 +683,7 @@ class MDB2_Driver_Manager_pgsql extends MDB2_Driver_Manager_Common */ function listTableFields($table) { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -692,7 +695,7 @@ class MDB2_Driver_Manager_pgsql extends MDB2_Driver_Manager_Common $table = $db->quoteIdentifier($schema, true) . '.' .$table; } $db->setLimit(1); - $result2 = $db->query("SELECT * FROM $table"); + $result2 = $db->query("SELECT * FROM $table LIMIT 1"); if (PEAR::isError($result2)) { return $result2; } @@ -716,7 +719,7 @@ class MDB2_Driver_Manager_pgsql extends MDB2_Driver_Manager_Common */ function listTableIndexes($table) { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -769,7 +772,7 @@ class MDB2_Driver_Manager_pgsql extends MDB2_Driver_Manager_Common */ function dropConstraint($table, $name, $primary = false) { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -817,7 +820,7 @@ class MDB2_Driver_Manager_pgsql extends MDB2_Driver_Manager_Common */ function listTableConstraints($table) { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -882,7 +885,7 @@ class MDB2_Driver_Manager_pgsql extends MDB2_Driver_Manager_Common */ function createSequence($seq_name, $start = 1) { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -904,7 +907,7 @@ class MDB2_Driver_Manager_pgsql extends MDB2_Driver_Manager_Common */ function dropSequence($seq_name) { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -922,9 +925,9 @@ class MDB2_Driver_Manager_pgsql extends MDB2_Driver_Manager_Common * @return mixed array of sequence names on success, a MDB2 error on failure * @access public */ - function listSequences() + function listSequences($database = null) { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } diff --git a/3rdparty/MDB2/Driver/Manager/sqlite.php b/3rdparty/MDB2/Driver/Manager/sqlite.php index 650910174e7..1b7239876f1 100644 --- a/3rdparty/MDB2/Driver/Manager/sqlite.php +++ b/3rdparty/MDB2/Driver/Manager/sqlite.php @@ -600,7 +600,7 @@ class MDB2_Driver_Manager_sqlite extends MDB2_Driver_Manager_Common } $constraints = array_flip($constraints); foreach ($constraints as $constraint => $value) { - if (!empty($definition['primary'])) { + if (!empty($definition['primary'])) { if (!array_key_exists('primary', $options)) { $options['primary'] = $definition['fields']; //remove from the $constraint array, it's already handled by createTable() @@ -682,7 +682,9 @@ class MDB2_Driver_Manager_sqlite extends MDB2_Driver_Manager_Common } foreach ($constraints as $constraint => $definition) { - $this->createConstraint($name_new, $constraint, $definition); + if(empty($definition['primary']) and empty($definition['foreign'])){ + $this->createConstraint($name_new, $constraint, $definition); + } } if (!empty($select_fields) && !empty($data)) { diff --git a/3rdparty/MDB2/Driver/Reverse/pgsql.php b/3rdparty/MDB2/Driver/Reverse/pgsql.php index 649c1cad9ee..8669c2b919b 100644 --- a/3rdparty/MDB2/Driver/Reverse/pgsql.php +++ b/3rdparty/MDB2/Driver/Reverse/pgsql.php @@ -69,7 +69,7 @@ class MDB2_Driver_Reverse_pgsql extends MDB2_Driver_Reverse_Common */ function getTableFieldDefinition($table_name, $field_name) { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -198,7 +198,7 @@ class MDB2_Driver_Reverse_pgsql extends MDB2_Driver_Reverse_Common */ function getTableIndexDefinition($table_name, $index_name) { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -256,7 +256,7 @@ class MDB2_Driver_Reverse_pgsql extends MDB2_Driver_Reverse_Common */ function getTableConstraintDefinition($table_name, $constraint_name) { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -443,7 +443,7 @@ class MDB2_Driver_Reverse_pgsql extends MDB2_Driver_Reverse_Common */ function getTriggerDefinition($trigger) { - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -517,7 +517,7 @@ class MDB2_Driver_Reverse_pgsql extends MDB2_Driver_Reverse_Common return parent::tableInfo($result, $mode); } - $db =& $this->getDBInstance(); + $db =$this->getDBInstance(); if (PEAR::isError($db)) { return $db; } diff --git a/3rdparty/MDB2/Driver/pgsql.php b/3rdparty/MDB2/Driver/pgsql.php index 6108f18dec1..13fea690680 100644 --- a/3rdparty/MDB2/Driver/pgsql.php +++ b/3rdparty/MDB2/Driver/pgsql.php @@ -1193,7 +1193,7 @@ class MDB2_Result_pgsql extends MDB2_Result_Common if ($object_class == 'stdClass') { $row = (object) $row; } else { - $row = &new $object_class($row); + $row = new $object_class($row); } } ++$this->rownum; diff --git a/3rdparty/Sabre/VObject/Reader.php b/3rdparty/Sabre/VObject/Reader.php index 5ed7882ac91..7d1c282838e 100644 --- a/3rdparty/Sabre/VObject/Reader.php +++ b/3rdparty/Sabre/VObject/Reader.php @@ -117,7 +117,7 @@ class Sabre_VObject_Reader { //$result = preg_match('/(?P[A-Z0-9-]+)(?:;(?P^(?([^:^\"]|\"([^\"]*)\")*))?"; $regex = "/^(?P$token)$parameters:(?P.*)$/i"; diff --git a/3rdparty/css/chosen/chosen-sprite.png b/3rdparty/css/chosen/chosen-sprite.png index f20db4439ea..9edce05a6a8 100644 Binary files a/3rdparty/css/chosen/chosen-sprite.png and b/3rdparty/css/chosen/chosen-sprite.png differ diff --git a/3rdparty/css/chosen/chosen.css b/3rdparty/css/chosen/chosen.css index 247d07bf021..b9c6d88028f 100644 --- a/3rdparty/css/chosen/chosen.css +++ b/3rdparty/css/chosen/chosen.css @@ -1,9 +1,4 @@ /* @group Base */ -select.chzn-select { - visibility: hidden; - height: 28px !important; - min-height: 28px !important; -} .chzn-container { font-size: 13px; position: relative; @@ -60,9 +55,21 @@ select.chzn-select { white-space: nowrap; -o-text-overflow: ellipsis; -ms-text-overflow: ellipsis; - -moz-binding: url('/xml/ellipsis.xml#ellipsis'); text-overflow: ellipsis; } +.chzn-container-single .chzn-single abbr { + display: block; + position: absolute; + right: 26px; + top: 8px; + width: 12px; + height: 13px; + font-size: 1px; + background: url(chosen-sprite.png) right top no-repeat; +} +.chzn-container-single .chzn-single abbr:hover { + background-position: right -11px; +} .chzn-container-single .chzn-single div { -webkit-border-radius: 0 4px 4px 0; -moz-border-radius : 0 4px 4px 0; @@ -94,18 +101,19 @@ select.chzn-select { } .chzn-container-single .chzn-search { padding: 3px 4px; + position: relative; margin: 0; white-space: nowrap; } .chzn-container-single .chzn-search input { - background: #fff url('chosen-sprite.png') no-repeat 100% -20px; - background: url('chosen-sprite.png') no-repeat 100% -20px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee)); - background: url('chosen-sprite.png') no-repeat 100% -20px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%); - background: url('chosen-sprite.png') no-repeat 100% -20px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%); - background: url('chosen-sprite.png') no-repeat 100% -20px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%); - background: url('chosen-sprite.png') no-repeat 100% -20px, -ms-linear-gradient(top, #ffffff 85%,#eeeeee 99%); - background: url('chosen-sprite.png') no-repeat 100% -20px, -ms-linear-gradient(top, #ffffff 85%,#eeeeee 99%); - background: url('chosen-sprite.png') no-repeat 100% -20px, linear-gradient(top, #ffffff 85%,#eeeeee 99%); + background: #fff url('chosen-sprite.png') no-repeat 100% -22px; + background: url('chosen-sprite.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee)); + background: url('chosen-sprite.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%); + background: url('chosen-sprite.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%); + background: url('chosen-sprite.png') no-repeat 100% -22px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%); + background: url('chosen-sprite.png') no-repeat 100% -22px, -ms-linear-gradient(top, #ffffff 85%,#eeeeee 99%); + background: url('chosen-sprite.png') no-repeat 100% -22px, -ms-linear-gradient(top, #ffffff 85%,#eeeeee 99%); + background: url('chosen-sprite.png') no-repeat 100% -22px, linear-gradient(top, #ffffff 85%,#eeeeee 99%); margin: 1px 0; padding: 4px 20px 4px 5px; outline: 0; @@ -123,6 +131,11 @@ select.chzn-select { } /* @end */ +.chzn-container-single-nosearch .chzn-search input { + position: absolute; + left: -9000px; +} + /* @group Multi Chosen */ .chzn-container-multi .chzn-choices { background-color: #fff; @@ -197,18 +210,18 @@ select.chzn-select { .chzn-container-multi .chzn-choices .search-choice .search-choice-close { display: block; position: absolute; - right: 5px; - top: 6px; - width: 8px; - height: 9px; + right: 3px; + top: 4px; + width: 12px; + height: 13px; font-size: 1px; background: url(chosen-sprite.png) right top no-repeat; } .chzn-container-multi .chzn-choices .search-choice .search-choice-close:hover { - background-position: right -9px; + background-position: right -11px; } .chzn-container-multi .chzn-choices .search-choice-focus .search-choice-close { - background-position: right -9px; + background-position: right -11px; } /* @end */ @@ -226,6 +239,7 @@ select.chzn-select { padding: 0; } .chzn-container .chzn-results li { + display: none; line-height: 80%; padding: 7px 7px 8px; margin: 0; @@ -233,6 +247,7 @@ select.chzn-select { } .chzn-container .chzn-results .active-result { cursor: pointer; + display: list-item; } .chzn-container .chzn-results .highlighted { background: #3875d7; @@ -247,6 +262,7 @@ select.chzn-select { } .chzn-container .chzn-results .no-results { background: #f4f4f4; + display: list-item; } .chzn-container .chzn-results .group-result { cursor: default; @@ -309,6 +325,18 @@ select.chzn-select { } /* @end */ +/* @group Disabled Support */ +.chzn-disabled { + cursor: default; + opacity:0.5 !important; +} +.chzn-disabled .chzn-single { + cursor: default; +} +.chzn-disabled .chzn-choices .search-choice .search-choice-close { + cursor: default; +} + /* @group Right to Left */ .chzn-rtl { direction:rtl;text-align: right; } .chzn-rtl .chzn-single { padding-left: 0; padding-right: 8px; } @@ -327,14 +355,14 @@ select.chzn-select { .chzn-rtl .chzn-results .group-option { padding-left: 0; padding-right: 20px; } .chzn-rtl.chzn-container-active .chzn-single-with-drop div { border-right: none; } .chzn-rtl .chzn-search input { - background: url('chosen-sprite.png') no-repeat -38px -20px, #ffffff; - background: url('chosen-sprite.png') no-repeat -38px -20px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee)); - background: url('chosen-sprite.png') no-repeat -38px -20px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%); - background: url('chosen-sprite.png') no-repeat -38px -20px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%); - background: url('chosen-sprite.png') no-repeat -38px -20px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%); - background: url('chosen-sprite.png') no-repeat -38px -20px, -ms-linear-gradient(top, #ffffff 85%,#eeeeee 99%); - background: url('chosen-sprite.png') no-repeat -38px -20px, -ms-linear-gradient(top, #ffffff 85%,#eeeeee 99%); - background: url('chosen-sprite.png') no-repeat -38px -20px, linear-gradient(top, #ffffff 85%,#eeeeee 99%); + background: url('chosen-sprite.png') no-repeat -38px -22px, #ffffff; + background: url('chosen-sprite.png') no-repeat -38px -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee)); + background: url('chosen-sprite.png') no-repeat -38px -22px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%); + background: url('chosen-sprite.png') no-repeat -38px -22px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%); + background: url('chosen-sprite.png') no-repeat -38px -22px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%); + background: url('chosen-sprite.png') no-repeat -38px -22px, -ms-linear-gradient(top, #ffffff 85%,#eeeeee 99%); + background: url('chosen-sprite.png') no-repeat -38px -22px, -ms-linear-gradient(top, #ffffff 85%,#eeeeee 99%); + background: url('chosen-sprite.png') no-repeat -38px -22px, linear-gradient(top, #ffffff 85%,#eeeeee 99%); padding: 4px 5px 4px 20px; } /* @end */ \ No newline at end of file diff --git a/3rdparty/fullcalendar/GPL-LICENSE.txt b/3rdparty/fullcalendar/GPL-LICENSE.txt new file mode 100644 index 00000000000..11dddd00ef0 --- /dev/null +++ b/3rdparty/fullcalendar/GPL-LICENSE.txt @@ -0,0 +1,278 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. diff --git a/apps/files_textviewer/js/syntaxhighlighter/MIT-LICENSE b/3rdparty/fullcalendar/MIT-LICENSE.txt similarity index 96% rename from apps/files_textviewer/js/syntaxhighlighter/MIT-LICENSE rename to 3rdparty/fullcalendar/MIT-LICENSE.txt index e7c70ba14a4..46d47544964 100644 --- a/apps/files_textviewer/js/syntaxhighlighter/MIT-LICENSE +++ b/3rdparty/fullcalendar/MIT-LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) 2003, 2004 Jim Weirich +Copyright (c) 2009 Adam Shaw Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/3rdparty/fullcalendar/changelog.txt b/3rdparty/fullcalendar/changelog.txt new file mode 100644 index 00000000000..50d0880fd7a --- /dev/null +++ b/3rdparty/fullcalendar/changelog.txt @@ -0,0 +1,313 @@ + +version 1.5.2 (8/21/11) + - correctly process UTC "Z" ISO8601 date strings (issue 750) + +version 1.5.1 (4/9/11) + - more flexible ISO8601 date parsing (issue 814) + - more flexible parsing of UNIX timestamps (issue 826) + - FullCalendar now buildable from source on a Mac (issue 795) + - FullCalendar QA'd in FF4 (issue 883) + - upgraded to jQuery 1.5.2 (which supports IE9) and jQuery UI 1.8.11 + +version 1.5 (3/19/11) + - slicker default styling for buttons + - reworked a lot of the calendar's HTML and accompanying CSS + (solves issues 327 and 395) + - more printer-friendly (fullcalendar-print.css) + - fullcalendar now inherits styles from jquery-ui themes differently. + styles for buttons are distinct from styles for calendar cells. + (solves issue 299) + - can now color events through FullCalendar options and Event-Object properties (issue 117) + THIS IS NOW THE PREFERRED METHOD OF COLORING EVENTS (as opposed to using className and CSS) + - FullCalendar options: + - eventColor (changes both background and border) + - eventBackgroundColor + - eventBorderColor + - eventTextColor + - Event-Object options: + - color (changes both background and border) + - backgroundColor + - borderColor + - textColor + - can now specify an event source as an *object* with a `url` property (json feed) or + an `events` property (function or array) with additional properties that will + be applied to the entire event source: + - color (changes both background and border) + - backgroudColor + - borderColor + - textColor + - className + - editable + - allDayDefault + - ignoreTimezone + - startParam (for a feed) + - endParam (for a feed) + - ANY OF THE JQUERY $.ajax OPTIONS + allows for easily changing from GET to POST and sending additional parameters (issue 386) + allows for easily attaching ajax handlers such as `error` (issue 754) + allows for turning caching on (issue 355) + - Google Calendar feeds are now specified differently: + - specify a simple string of your feed's URL + - specify an *object* with a `url` property of your feed's URL. + you can include any of the new Event-Source options in this object. + - the old `$.fullCalendar.gcalFeed` method still works + - no more IE7 SSL popup (issue 504) + - remove `cacheParam` - use json event source `cache` option instead + - latest jquery/jquery-ui + +version 1.4.11 (2/22/11) + - fixed rerenderEvents bug (issue 790) + - fixed bug with faulty dragging of events from all-day slot in agenda views + - bundled with jquery 1.5 and jquery-ui 1.8.9 + +version 1.4.10 (1/2/11) + - fixed bug with resizing event to different week in 5-day month view (issue 740) + - fixed bug with events not sticking after a removeEvents call (issue 757) + - fixed bug with underlying parseTime method, and other uses of parseInt (issue 688) + +version 1.4.9 (11/16/10) + - new algorithm for vertically stacking events (issue 111) + - resizing an event to a different week (issue 306) + - bug: some events not rendered with consecutive calls to addEventSource (issue 679) + +version 1.4.8 (10/16/10) + - ignoreTimezone option (set to `false` to process UTC offsets in ISO8601 dates) + - bugfixes + - event refetching not being called under certain conditions (issues 417, 554) + - event refetching being called multiple times under certain conditions (issues 586, 616) + - selection cannot be triggered by right mouse button (issue 558) + - agenda view left axis sized incorrectly (issue 465) + - IE js error when calendar is too narrow (issue 517) + - agenda view looks strange when no scrollbars (issue 235) + - improved parsing of ISO8601 dates with UTC offsets + - $.fullCalendar.version + - an internal refactor of the code, for easier future development and modularity + +version 1.4.7 (7/5/10) + - "dropping" external objects onto the calendar + - droppable (boolean, to turn on/off) + - dropAccept (to filter which events the calendar will accept) + - drop (trigger) + - selectable options can now be specified with a View Option Hash + - bugfixes + - dragged & reverted events having wrong time text (issue 406) + - bug rendering events that have an endtime with seconds, but no hours/minutes (issue 477) + - gotoDate date overflow bug (issue 429) + - wrong date reported when clicking on edge of last column in agenda views (412) + - support newlines in event titles + - select/unselect callbacks now passes native js event + +version 1.4.6 (5/31/10) + - "selecting" days or timeslots + - options: selectable, selectHelper, unselectAuto, unselectCancel + - callbacks: select, unselect + - methods: select, unselect + - when dragging an event, the highlighting reflects the duration of the event + - code compressing by Google Closure Compiler + - bundled with jQuery 1.4.2 and jQuery UI 1.8.1 + +version 1.4.5 (2/21/10) + - lazyFetching option, which can force the calendar to fetch events on every view/date change + - scroll state of agenda views are preserved when switching back to view + - bugfixes + - calling methods on an uninitialized fullcalendar throws error + - IE6/7 bug where an entire view becomes invisible (issue 320) + - error when rendering a hidden calendar (in jquery ui tabs for example) in IE (issue 340) + - interconnected bugs related to calendar resizing and scrollbars + - when switching views or clicking prev/next, calendar would "blink" (issue 333) + - liquid-width calendar's events shifted (depending on initial height of browser) (issue 341) + - more robust underlying algorithm for calendar resizing + +version 1.4.4 (2/3/10) + - optimized event rendering in all views (events render in 1/10 the time) + - gotoDate() does not force the calendar to unnecessarily rerender + - render() method now correctly readjusts height + +version 1.4.3 (12/22/09) + - added destroy method + - Google Calendar event pages respect currentTimezone + - caching now handled by jQuery's ajax + - protection from setting aspectRatio to zero + - bugfixes + - parseISO8601 and DST caused certain events to display day before + - button positioning problem in IE6 + - ajax event source removed after recently being added, events still displayed + - event not displayed when end is an empty string + - dynamically setting calendar height when no events have been fetched, throws error + +version 1.4.2 (12/02/09) + - eventAfterRender trigger + - getDate & getView methods + - height & contentHeight options (explicitly sets the pixel height) + - minTime & maxTime options (restricts shown hours in agenda view) + - getters [for all options] and setters [for height, contentHeight, and aspectRatio ONLY! stay tuned..] + - render method now readjusts calendar's size + - bugfixes + - lightbox scripts that use iframes (like fancybox) + - day-of-week classNames were off when firstDay=1 + - guaranteed space on right side of agenda events (even when stacked) + - accepts ISO8601 dates with a space (instead of 'T') + +version 1.4.1 (10/31/09) + - can exclude weekends with new 'weekends' option + - gcal feed 'currentTimezone' option + - bugfixes + - year/month/date option sometimes wouldn't set correctly (depending on current date) + - daylight savings issue caused agenda views to start at 1am (for BST users) + - cleanup of gcal.js code + +version 1.4 (10/19/09) + - agendaWeek and agendaDay views + - added some options for agenda views: + - allDaySlot + - allDayText + - firstHour + - slotMinutes + - defaultEventMinutes + - axisFormat + - modified some existing options/triggers to work with agenda views: + - dragOpacity and timeFormat can now accept a "View Hash" (a new concept) + - dayClick now has an allDay parameter + - eventDrop now has an an allDay parameter + (this will affect those who use revertFunc, adjust parameter list) + - added 'prevYear' and 'nextYear' for buttons in header + - minor change for theme users, ui-state-hover not applied to active/inactive buttons + - added event-color-changing example in docs + - better defaults for right-to-left themed button icons + +version 1.3.2 (10/13/09) + - Bugfixes (please upgrade from 1.3.1!) + - squashed potential infinite loop when addMonths and addDays + is called with an invalid date + - $.fullCalendar.parseDate() now correctly parses IETF format + - when switching views, the 'today' button sticks inactive, fixed + - gotoDate now can accept a single Date argument + - documentation for changes in 1.3.1 and 1.3.2 now on website + +version 1.3.1 (9/30/09) + - Important Bugfixes (please upgrade from 1.3!) + - When current date was late in the month, for long months, and prev/next buttons + were clicked in month-view, some months would be skipped/repeated + - In certain time zones, daylight savings time would cause certain days + to be misnumbered in month-view + - Subtle change in way week interval is chosen when switching from month to basicWeek/basicDay view + - Added 'allDayDefault' option + - Added 'changeView' and 'render' methods + +version 1.3 (9/21/09) + - different 'views': month/basicWeek/basicDay + - more flexible 'header' system for buttons + - themable by jQuery UI themes + - resizable events (require jQuery UI resizable plugin) + - rescoped & rewritten CSS, enhanced default look + - cleaner css & rendering techniques for right-to-left + - reworked options & API to support multiple views / be consistent with jQuery UI + - refactoring of entire codebase + - broken into different JS & CSS files, assembled w/ build scripts + - new test suite for new features, uses firebug-lite + - refactored docs + - Options + + date + + defaultView + + aspectRatio + + disableResizing + + monthNames (use instead of $.fullCalendar.monthNames) + + monthNamesShort (use instead of $.fullCalendar.monthAbbrevs) + + dayNames (use instead of $.fullCalendar.dayNames) + + dayNamesShort (use instead of $.fullCalendar.dayAbbrevs) + + theme + + buttonText + + buttonIcons + x draggable -> editable/disableDragging + x fixedWeeks -> weekMode + x abbrevDayHeadings -> columnFormat + x buttons/title -> header + x eventDragOpacity -> dragOpacity + x eventRevertDuration -> dragRevertDuration + x weekStart -> firstDay + x rightToLeft -> isRTL + x showTime (use 'allDay' CalEvent property instead) + - Triggered Actions + + eventResizeStart + + eventResizeStop + + eventResize + x monthDisplay -> viewDisplay + x resize -> windowResize + 'eventDrop' params changed, can revert if ajax cuts out + - CalEvent Properties + x showTime -> allDay + x draggable -> editable + 'end' is now INCLUSIVE when allDay=true + 'url' now produces a real tag, more native clicking/tab behavior + - Methods: + + renderEvent + x prevMonth -> prev + x nextMonth -> next + x prevYear/nextYear -> moveDate + x refresh -> rerenderEvents/refetchEvents + x removeEvent -> removeEvents + x getEventsByID -> clientEvents + - Utilities: + 'formatDate' format string completely changed (inspired by jQuery UI datepicker + datejs) + 'formatDates' added to support date-ranges + - Google Calendar Options: + x draggable -> editable + - Bugfixes + - gcal extension fetched 25 results max, now fetches all + +version 1.2.1 (6/29/09) + - bugfixes + - allows and corrects invalid end dates for events + - doesn't throw an error in IE while rendering when display:none + - fixed 'loading' callback when used w/ multiple addEventSource calls + - gcal className can now be an array + +version 1.2 (5/31/09) + - expanded API + - 'className' CalEvent attribute + - 'source' CalEvent attribute + - dynamically get/add/remove/update events of current month + - locale improvements: change month/day name text + - better date formatting ($.fullCalendar.formatDate) + - multiple 'event sources' allowed + - dynamically add/remove event sources + - options for prevYear and nextYear buttons + - docs have been reworked (include addition of Google Calendar docs) + - changed behavior of parseDate for number strings + (now interpets as unix timestamp, not MS times) + - bugfixes + - rightToLeft month start bug + - off-by-one errors with month formatting commands + - events from previous months sticking when clicking prev/next quickly + - Google Calendar API changed to work w/ multiple event sources + - can also provide 'className' and 'draggable' options + - date utilties moved from $ to $.fullCalendar + - more documentation in source code + - minified version of fullcalendar.js + - test suit (available from svn) + - top buttons now use ').addClass(this._triggerClass).html(f==""?c:d("").attr({src:f,alt:c,title:c})));a[e?"before":"after"](b.trigger);b.trigger.click(function(){d.datepicker._datepickerShowing&&d.datepicker._lastInput==a[0]?d.datepicker._hideDatepicker(): +d.datepicker._showDatepicker(a[0]);return false})}},_autoSize:function(a){if(this._get(a,"autoSize")&&!a.inline){var b=new Date(2009,11,20),c=this._get(a,"dateFormat");if(c.match(/[DM]/)){var e=function(f){for(var h=0,i=0,g=0;gh){h=f[g].length;i=g}return i};b.setMonth(e(this._get(a,c.match(/MM/)?"monthNames":"monthNamesShort")));b.setDate(e(this._get(a,c.match(/DD/)?"dayNames":"dayNamesShort"))+20-b.getDay())}a.input.attr("size",this._formatDate(a,b).length)}},_inlineDatepicker:function(a, +b){var c=d(a);if(!c.hasClass(this.markerClassName)){c.addClass(this.markerClassName).append(b.dpDiv).bind("setData.datepicker",function(e,f,h){b.settings[f]=h}).bind("getData.datepicker",function(e,f){return this._get(b,f)});d.data(a,"datepicker",b);this._setDate(b,this._getDefaultDate(b),true);this._updateDatepicker(b);this._updateAlternate(b);b.settings.disabled&&this._disableDatepicker(a);b.dpDiv.css("display","block")}},_dialogDatepicker:function(a,b,c,e,f){a=this._dialogInst;if(!a){this.uuid+= +1;this._dialogInput=d('');this._dialogInput.keydown(this._doKeyDown);d("body").append(this._dialogInput);a=this._dialogInst=this._newInst(this._dialogInput,false);a.settings={};d.data(this._dialogInput[0],"datepicker",a)}H(a.settings,e||{});b=b&&b.constructor==Date?this._formatDate(a,b):b;this._dialogInput.val(b);this._pos=f?f.length?f:[f.pageX,f.pageY]:null;if(!this._pos)this._pos=[document.documentElement.clientWidth/ +2-100+(document.documentElement.scrollLeft||document.body.scrollLeft),document.documentElement.clientHeight/2-150+(document.documentElement.scrollTop||document.body.scrollTop)];this._dialogInput.css("left",this._pos[0]+20+"px").css("top",this._pos[1]+"px");a.settings.onSelect=c;this._inDialog=true;this.dpDiv.addClass(this._dialogClass);this._showDatepicker(this._dialogInput[0]);d.blockUI&&d.blockUI(this.dpDiv);d.data(this._dialogInput[0],"datepicker",a);return this},_destroyDatepicker:function(a){var b= +d(a),c=d.data(a,"datepicker");if(b.hasClass(this.markerClassName)){var e=a.nodeName.toLowerCase();d.removeData(a,"datepicker");if(e=="input"){c.append.remove();c.trigger.remove();b.removeClass(this.markerClassName).unbind("focus",this._showDatepicker).unbind("keydown",this._doKeyDown).unbind("keypress",this._doKeyPress).unbind("keyup",this._doKeyUp)}else if(e=="div"||e=="span")b.removeClass(this.markerClassName).empty()}},_enableDatepicker:function(a){var b=d(a),c=d.data(a,"datepicker");if(b.hasClass(this.markerClassName)){var e= +a.nodeName.toLowerCase();if(e=="input"){a.disabled=false;c.trigger.filter("button").each(function(){this.disabled=false}).end().filter("img").css({opacity:"1.0",cursor:""})}else if(e=="div"||e=="span"){b=b.children("."+this._inlineClass);b.children().removeClass("ui-state-disabled");b.find("select.ui-datepicker-month, select.ui-datepicker-year").removeAttr("disabled")}this._disabledInputs=d.map(this._disabledInputs,function(f){return f==a?null:f})}},_disableDatepicker:function(a){var b=d(a),c=d.data(a, +"datepicker");if(b.hasClass(this.markerClassName)){var e=a.nodeName.toLowerCase();if(e=="input"){a.disabled=true;c.trigger.filter("button").each(function(){this.disabled=true}).end().filter("img").css({opacity:"0.5",cursor:"default"})}else if(e=="div"||e=="span"){b=b.children("."+this._inlineClass);b.children().addClass("ui-state-disabled");b.find("select.ui-datepicker-month, select.ui-datepicker-year").attr("disabled","disabled")}this._disabledInputs=d.map(this._disabledInputs,function(f){return f== +a?null:f});this._disabledInputs[this._disabledInputs.length]=a}},_isDisabledDatepicker:function(a){if(!a)return false;for(var b=0;b-1}},_doKeyUp:function(a){a=d.datepicker._getInst(a.target);if(a.input.val()!=a.lastVal)try{if(d.datepicker.parseDate(d.datepicker._get(a,"dateFormat"),a.input?a.input.val():null,d.datepicker._getFormatConfig(a))){d.datepicker._setDateFromField(a);d.datepicker._updateAlternate(a);d.datepicker._updateDatepicker(a)}}catch(b){d.datepicker.log(b)}return true},_showDatepicker:function(a){a=a.target||a;if(a.nodeName.toLowerCase()!="input")a=d("input", +a.parentNode)[0];if(!(d.datepicker._isDisabledDatepicker(a)||d.datepicker._lastInput==a)){var b=d.datepicker._getInst(a);if(d.datepicker._curInst&&d.datepicker._curInst!=b){d.datepicker._datepickerShowing&&d.datepicker._triggerOnClose(d.datepicker._curInst);d.datepicker._curInst.dpDiv.stop(true,true)}var c=d.datepicker._get(b,"beforeShow");c=c?c.apply(a,[a,b]):{};if(c!==false){H(b.settings,c);b.lastVal=null;d.datepicker._lastInput=a;d.datepicker._setDateFromField(b);if(d.datepicker._inDialog)a.value= +"";if(!d.datepicker._pos){d.datepicker._pos=d.datepicker._findPos(a);d.datepicker._pos[1]+=a.offsetHeight}var e=false;d(a).parents().each(function(){e|=d(this).css("position")=="fixed";return!e});if(e&&d.browser.opera){d.datepicker._pos[0]-=document.documentElement.scrollLeft;d.datepicker._pos[1]-=document.documentElement.scrollTop}c={left:d.datepicker._pos[0],top:d.datepicker._pos[1]};d.datepicker._pos=null;b.dpDiv.empty();b.dpDiv.css({position:"absolute",display:"block",top:"-1000px"});d.datepicker._updateDatepicker(b); +c=d.datepicker._checkOffset(b,c,e);b.dpDiv.css({position:d.datepicker._inDialog&&d.blockUI?"static":e?"fixed":"absolute",display:"none",left:c.left+"px",top:c.top+"px"});if(!b.inline){c=d.datepicker._get(b,"showAnim");var f=d.datepicker._get(b,"duration"),h=function(){var i=b.dpDiv.find("iframe.ui-datepicker-cover");if(i.length){var g=d.datepicker._getBorders(b.dpDiv);i.css({left:-g[0],top:-g[1],width:b.dpDiv.outerWidth(),height:b.dpDiv.outerHeight()})}};b.dpDiv.zIndex(d(a).zIndex()+1);d.datepicker._datepickerShowing= +true;d.effects&&d.effects[c]?b.dpDiv.show(c,d.datepicker._get(b,"showOptions"),f,h):b.dpDiv[c||"show"](c?f:null,h);if(!c||!f)h();b.input.is(":visible")&&!b.input.is(":disabled")&&b.input.focus();d.datepicker._curInst=b}}}},_updateDatepicker:function(a){this.maxRows=4;var b=d.datepicker._getBorders(a.dpDiv);J=a;a.dpDiv.empty().append(this._generateHTML(a));var c=a.dpDiv.find("iframe.ui-datepicker-cover");c.length&&c.css({left:-b[0],top:-b[1],width:a.dpDiv.outerWidth(),height:a.dpDiv.outerHeight()}); +a.dpDiv.find("."+this._dayOverClass+" a").mouseover();b=this._getNumberOfMonths(a);c=b[1];a.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width("");c>1&&a.dpDiv.addClass("ui-datepicker-multi-"+c).css("width",17*c+"em");a.dpDiv[(b[0]!=1||b[1]!=1?"add":"remove")+"Class"]("ui-datepicker-multi");a.dpDiv[(this._get(a,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl");a==d.datepicker._curInst&&d.datepicker._datepickerShowing&&a.input&&a.input.is(":visible")&& +!a.input.is(":disabled")&&a.input[0]!=document.activeElement&&a.input.focus();if(a.yearshtml){var e=a.yearshtml;setTimeout(function(){e===a.yearshtml&&a.yearshtml&&a.dpDiv.find("select.ui-datepicker-year:first").replaceWith(a.yearshtml);e=a.yearshtml=null},0)}},_getBorders:function(a){var b=function(c){return{thin:1,medium:2,thick:3}[c]||c};return[parseFloat(b(a.css("border-left-width"))),parseFloat(b(a.css("border-top-width")))]},_checkOffset:function(a,b,c){var e=a.dpDiv.outerWidth(),f=a.dpDiv.outerHeight(), +h=a.input?a.input.outerWidth():0,i=a.input?a.input.outerHeight():0,g=document.documentElement.clientWidth+d(document).scrollLeft(),j=document.documentElement.clientHeight+d(document).scrollTop();b.left-=this._get(a,"isRTL")?e-h:0;b.left-=c&&b.left==a.input.offset().left?d(document).scrollLeft():0;b.top-=c&&b.top==a.input.offset().top+i?d(document).scrollTop():0;b.left-=Math.min(b.left,b.left+e>g&&g>e?Math.abs(b.left+e-g):0);b.top-=Math.min(b.top,b.top+f>j&&j>f?Math.abs(f+i):0);return b},_findPos:function(a){for(var b= +this._get(this._getInst(a),"isRTL");a&&(a.type=="hidden"||a.nodeType!=1||d.expr.filters.hidden(a));)a=a[b?"previousSibling":"nextSibling"];a=d(a).offset();return[a.left,a.top]},_triggerOnClose:function(a){var b=this._get(a,"onClose");if(b)b.apply(a.input?a.input[0]:null,[a.input?a.input.val():"",a])},_hideDatepicker:function(a){var b=this._curInst;if(!(!b||a&&b!=d.data(a,"datepicker")))if(this._datepickerShowing){a=this._get(b,"showAnim");var c=this._get(b,"duration"),e=function(){d.datepicker._tidyDialog(b); +this._curInst=null};d.effects&&d.effects[a]?b.dpDiv.hide(a,d.datepicker._get(b,"showOptions"),c,e):b.dpDiv[a=="slideDown"?"slideUp":a=="fadeIn"?"fadeOut":"hide"](a?c:null,e);a||e();d.datepicker._triggerOnClose(b);this._datepickerShowing=false;this._lastInput=null;if(this._inDialog){this._dialogInput.css({position:"absolute",left:"0",top:"-100px"});if(d.blockUI){d.unblockUI();d("body").append(this.dpDiv)}}this._inDialog=false}},_tidyDialog:function(a){a.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar")}, +_checkExternalClick:function(a){if(d.datepicker._curInst){a=d(a.target);a[0].id!=d.datepicker._mainDivId&&a.parents("#"+d.datepicker._mainDivId).length==0&&!a.hasClass(d.datepicker.markerClassName)&&!a.hasClass(d.datepicker._triggerClass)&&d.datepicker._datepickerShowing&&!(d.datepicker._inDialog&&d.blockUI)&&d.datepicker._hideDatepicker()}},_adjustDate:function(a,b,c){a=d(a);var e=this._getInst(a[0]);if(!this._isDisabledDatepicker(a[0])){this._adjustInstDate(e,b+(c=="M"?this._get(e,"showCurrentAtPos"): +0),c);this._updateDatepicker(e)}},_gotoToday:function(a){a=d(a);var b=this._getInst(a[0]);if(this._get(b,"gotoCurrent")&&b.currentDay){b.selectedDay=b.currentDay;b.drawMonth=b.selectedMonth=b.currentMonth;b.drawYear=b.selectedYear=b.currentYear}else{var c=new Date;b.selectedDay=c.getDate();b.drawMonth=b.selectedMonth=c.getMonth();b.drawYear=b.selectedYear=c.getFullYear()}this._notifyChange(b);this._adjustDate(a)},_selectMonthYear:function(a,b,c){a=d(a);var e=this._getInst(a[0]);e["selected"+(c=="M"? +"Month":"Year")]=e["draw"+(c=="M"?"Month":"Year")]=parseInt(b.options[b.selectedIndex].value,10);this._notifyChange(e);this._adjustDate(a)},_selectDay:function(a,b,c,e){var f=d(a);if(!(d(e).hasClass(this._unselectableClass)||this._isDisabledDatepicker(f[0]))){f=this._getInst(f[0]);f.selectedDay=f.currentDay=d("a",e).html();f.selectedMonth=f.currentMonth=b;f.selectedYear=f.currentYear=c;this._selectDate(a,this._formatDate(f,f.currentDay,f.currentMonth,f.currentYear))}},_clearDate:function(a){a=d(a); +this._getInst(a[0]);this._selectDate(a,"")},_selectDate:function(a,b){a=this._getInst(d(a)[0]);b=b!=null?b:this._formatDate(a);a.input&&a.input.val(b);this._updateAlternate(a);var c=this._get(a,"onSelect");if(c)c.apply(a.input?a.input[0]:null,[b,a]);else a.input&&a.input.trigger("change");if(a.inline)this._updateDatepicker(a);else{this._hideDatepicker();this._lastInput=a.input[0];typeof a.input[0]!="object"&&a.input.focus();this._lastInput=null}},_updateAlternate:function(a){var b=this._get(a,"altField"); +if(b){var c=this._get(a,"altFormat")||this._get(a,"dateFormat"),e=this._getDate(a),f=this.formatDate(c,e,this._getFormatConfig(a));d(b).each(function(){d(this).val(f)})}},noWeekends:function(a){a=a.getDay();return[a>0&&a<6,""]},iso8601Week:function(a){a=new Date(a.getTime());a.setDate(a.getDate()+4-(a.getDay()||7));var b=a.getTime();a.setMonth(0);a.setDate(1);return Math.floor(Math.round((b-a)/864E5)/7)+1},parseDate:function(a,b,c){if(a==null||b==null)throw"Invalid arguments";b=typeof b=="object"? +b.toString():b+"";if(b=="")return null;var e=(c?c.shortYearCutoff:null)||this._defaults.shortYearCutoff;e=typeof e!="string"?e:(new Date).getFullYear()%100+parseInt(e,10);for(var f=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,h=(c?c.dayNames:null)||this._defaults.dayNames,i=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort,g=(c?c.monthNames:null)||this._defaults.monthNames,j=c=-1,l=-1,u=-1,k=false,o=function(p){(p=A+1-1){j=1;l=u;do{e=this._getDaysInMonth(c,j-1);if(l<=e)break;j++;l-=e}while(1)}v=this._daylightSavingAdjust(new Date(c,j-1,l));if(v.getFullYear()!=c||v.getMonth()+1!=j||v.getDate()!=l)throw"Invalid date";return v},ATOM:"yy-mm-dd", +COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TICKS:"!",TIMESTAMP:"@",W3C:"yy-mm-dd",_ticksTo1970:(718685+Math.floor(492.5)-Math.floor(19.7)+Math.floor(4.925))*24*60*60*1E7,formatDate:function(a,b,c){if(!b)return"";var e=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,f=(c?c.dayNames:null)||this._defaults.dayNames,h=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort;c=(c?c.monthNames: +null)||this._defaults.monthNames;var i=function(o){(o=k+1 +12?a.getHours()+2:0);return a},_setDate:function(a,b,c){var e=!b,f=a.selectedMonth,h=a.selectedYear;b=this._restrictMinMax(a,this._determineDate(a,b,new Date));a.selectedDay=a.currentDay=b.getDate();a.drawMonth=a.selectedMonth=a.currentMonth=b.getMonth();a.drawYear=a.selectedYear=a.currentYear=b.getFullYear();if((f!=a.selectedMonth||h!=a.selectedYear)&&!c)this._notifyChange(a);this._adjustInstDate(a);if(a.input)a.input.val(e?"":this._formatDate(a))},_getDate:function(a){return!a.currentYear||a.input&& +a.input.val()==""?null:this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay))},_generateHTML:function(a){var b=new Date;b=this._daylightSavingAdjust(new Date(b.getFullYear(),b.getMonth(),b.getDate()));var c=this._get(a,"isRTL"),e=this._get(a,"showButtonPanel"),f=this._get(a,"hideIfNoPrevNext"),h=this._get(a,"navigationAsDateFormat"),i=this._getNumberOfMonths(a),g=this._get(a,"showCurrentAtPos"),j=this._get(a,"stepMonths"),l=i[0]!=1||i[1]!=1,u=this._daylightSavingAdjust(!a.currentDay? +new Date(9999,9,9):new Date(a.currentYear,a.currentMonth,a.currentDay)),k=this._getMinMaxDate(a,"min"),o=this._getMinMaxDate(a,"max");g=a.drawMonth-g;var m=a.drawYear;if(g<0){g+=12;m--}if(o){var n=this._daylightSavingAdjust(new Date(o.getFullYear(),o.getMonth()-i[0]*i[1]+1,o.getDate()));for(n=k&&nn;){g--;if(g<0){g=11;m--}}}a.drawMonth=g;a.drawYear=m;n=this._get(a,"prevText");n=!h?n:this.formatDate(n,this._daylightSavingAdjust(new Date(m,g-j,1)),this._getFormatConfig(a)); +n=this._canAdjustMonth(a,-1,m,g)?''+n+"":f?"":''+n+"";var s=this._get(a,"nextText");s=!h?s:this.formatDate(s,this._daylightSavingAdjust(new Date(m, +g+j,1)),this._getFormatConfig(a));f=this._canAdjustMonth(a,+1,m,g)?''+s+"":f?"":''+s+"";j=this._get(a,"currentText");s=this._get(a,"gotoCurrent")&& +a.currentDay?u:b;j=!h?j:this.formatDate(j,s,this._getFormatConfig(a));h=!a.inline?'":"";e=e?'
'+(c?h:"")+(this._isInRange(a,s)?'":"")+(c?"":h)+"
":"";h=parseInt(this._get(a,"firstDay"),10);h=isNaN(h)?0:h;j=this._get(a,"showWeek");s=this._get(a,"dayNames");this._get(a,"dayNamesShort");var q=this._get(a,"dayNamesMin"),A=this._get(a,"monthNames"),v=this._get(a,"monthNamesShort"),p=this._get(a,"beforeShowDay"),D=this._get(a,"showOtherMonths"),K=this._get(a,"selectOtherMonths");this._get(a,"calculateWeek");for(var E=this._getDefaultDate(a),w="",x=0;x1)switch(G){case 0:y+=" ui-datepicker-group-first";t=" ui-corner-"+(c?"right":"left");break;case i[1]-1:y+=" ui-datepicker-group-last";t=" ui-corner-"+(c?"left":"right");break;default:y+=" ui-datepicker-group-middle";t="";break}y+='">'}y+='
'+(/all|left/.test(t)&& +x==0?c?f:n:"")+(/all|right/.test(t)&&x==0?c?n:f:"")+this._generateMonthYearHeader(a,g,m,k,o,x>0||G>0,A,v)+'
';var z=j?'":"";for(t=0;t<7;t++){var r=(t+h)%7;z+="=5?' class="ui-datepicker-week-end"':"")+'>'+q[r]+""}y+=z+"";z=this._getDaysInMonth(m,g);if(m==a.selectedYear&&g==a.selectedMonth)a.selectedDay=Math.min(a.selectedDay, +z);t=(this._getFirstDayOfMonth(m,g)-h+7)%7;z=Math.ceil((t+z)/7);this.maxRows=z=l?this.maxRows>z?this.maxRows:z:z;r=this._daylightSavingAdjust(new Date(m,g,1-t));for(var Q=0;Q";var R=!j?"":'";for(t=0;t<7;t++){var I=p?p.apply(a.input?a.input[0]:null,[r]):[true,""],F=r.getMonth()!=g,L=F&&!K||!I[0]||k&&ro;R+='";r.setDate(r.getDate()+1);r=this._daylightSavingAdjust(r)}y+=R+""}g++;if(g>11){g=0;m++}y+="
'+this._get(a,"weekHeader")+"
'+this._get(a,"calculateWeek")(r)+""+(F&&!D?" ":L?''+ +r.getDate()+"":''+r.getDate()+"")+"
"+(l?""+(i[0]>0&&G==i[1]-1?'
':""):"");O+=y}w+=O}w+=e+(d.browser.msie&&parseInt(d.browser.version,10)<7&&!a.inline?'': +"");a._keyEvent=false;return w},_generateMonthYearHeader:function(a,b,c,e,f,h,i,g){var j=this._get(a,"changeMonth"),l=this._get(a,"changeYear"),u=this._get(a,"showMonthAfterYear"),k='
',o="";if(h||!j)o+=''+i[b]+"";else{i=e&&e.getFullYear()==c;var m=f&&f.getFullYear()==c;o+='"}u||(k+=o+(h||!(j&&l)?" ":""));if(!a.yearshtml){a.yearshtml="";if(h||!l)k+=''+c+"";else{g=this._get(a,"yearRange").split(":");var s=(new Date).getFullYear();i=function(q){q=q.match(/c[+-].*/)?c+parseInt(q.substring(1),10):q.match(/[+-].*/)?s+parseInt(q,10):parseInt(q,10);return isNaN(q)?s:q};b=i(g[0]);g=Math.max(b,i(g[1]||""));b=e?Math.max(b, +e.getFullYear()):b;g=f?Math.min(g,f.getFullYear()):g;for(a.yearshtml+='";k+=a.yearshtml;a.yearshtml=null}}k+=this._get(a,"yearSuffix");if(u)k+=(h||!(j&&l)?" ":"")+o;k+="
";return k},_adjustInstDate:function(a,b,c){var e=a.drawYear+(c=="Y"?b:0),f=a.drawMonth+ +(c=="M"?b:0);b=Math.min(a.selectedDay,this._getDaysInMonth(e,f))+(c=="D"?b:0);e=this._restrictMinMax(a,this._daylightSavingAdjust(new Date(e,f,b)));a.selectedDay=e.getDate();a.drawMonth=a.selectedMonth=e.getMonth();a.drawYear=a.selectedYear=e.getFullYear();if(c=="M"||c=="Y")this._notifyChange(a)},_restrictMinMax:function(a,b){var c=this._getMinMaxDate(a,"min");a=this._getMinMaxDate(a,"max");b=c&&ba?a:b},_notifyChange:function(a){var b=this._get(a,"onChangeMonthYear");if(b)b.apply(a.input? +a.input[0]:null,[a.selectedYear,a.selectedMonth+1,a])},_getNumberOfMonths:function(a){a=this._get(a,"numberOfMonths");return a==null?[1,1]:typeof a=="number"?[1,a]:a},_getMinMaxDate:function(a,b){return this._determineDate(a,this._get(a,b+"Date"),null)},_getDaysInMonth:function(a,b){return 32-this._daylightSavingAdjust(new Date(a,b,32)).getDate()},_getFirstDayOfMonth:function(a,b){return(new Date(a,b,1)).getDay()},_canAdjustMonth:function(a,b,c,e){var f=this._getNumberOfMonths(a);c=this._daylightSavingAdjust(new Date(c, +e+(b<0?b:f[0]*f[1]),1));b<0&&c.setDate(this._getDaysInMonth(c.getFullYear(),c.getMonth()));return this._isInRange(a,c)},_isInRange:function(a,b){var c=this._getMinMaxDate(a,"min");a=this._getMinMaxDate(a,"max");return(!c||b.getTime()>=c.getTime())&&(!a||b.getTime()<=a.getTime())},_getFormatConfig:function(a){var b=this._get(a,"shortYearCutoff");b=typeof b!="string"?b:(new Date).getFullYear()%100+parseInt(b,10);return{shortYearCutoff:b,dayNamesShort:this._get(a,"dayNamesShort"),dayNames:this._get(a, +"dayNames"),monthNamesShort:this._get(a,"monthNamesShort"),monthNames:this._get(a,"monthNames")}},_formatDate:function(a,b,c,e){if(!b){a.currentDay=a.selectedDay;a.currentMonth=a.selectedMonth;a.currentYear=a.selectedYear}b=b?typeof b=="object"?b:this._daylightSavingAdjust(new Date(e,c,b)):this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay));return this.formatDate(this._get(a,"dateFormat"),b,this._getFormatConfig(a))}});d.fn.datepicker=function(a){if(!this.length)return this; +if(!d.datepicker.initialized){d(document).mousedown(d.datepicker._checkExternalClick).find("body").append(d.datepicker.dpDiv);d.datepicker.initialized=true}var b=Array.prototype.slice.call(arguments,1);if(typeof a=="string"&&(a=="isDisabled"||a=="getDate"||a=="widget"))return d.datepicker["_"+a+"Datepicker"].apply(d.datepicker,[this[0]].concat(b));if(a=="option"&&arguments.length==2&&typeof arguments[1]=="string")return d.datepicker["_"+a+"Datepicker"].apply(d.datepicker,[this[0]].concat(b));return this.each(function(){typeof a== +"string"?d.datepicker["_"+a+"Datepicker"].apply(d.datepicker,[this].concat(b)):d.datepicker._attachDatepicker(this,a)})};d.datepicker=new M;d.datepicker.initialized=false;d.datepicker.uuid=(new Date).getTime();d.datepicker.version="1.8.16";window["DP_jQuery_"+B]=d})(jQuery); ;/* - * jQuery UI Progressbar 1.8.14 + * jQuery UI Progressbar 1.8.16 * * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) * Dual licensed under the MIT or GPL Version 2 licenses. @@ -566,9 +537,9 @@ function(a){if(!this.length)return this;if(!d.datepicker.initialized){d(document */ (function(b,d){b.widget("ui.progressbar",{options:{value:0,max:100},min:0,_create:function(){this.element.addClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").attr({role:"progressbar","aria-valuemin":this.min,"aria-valuemax":this.options.max,"aria-valuenow":this._value()});this.valueDiv=b("
").appendTo(this.element);this.oldValue=this._value();this._refreshValue()},destroy:function(){this.element.removeClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").removeAttr("role").removeAttr("aria-valuemin").removeAttr("aria-valuemax").removeAttr("aria-valuenow"); this.valueDiv.remove();b.Widget.prototype.destroy.apply(this,arguments)},value:function(a){if(a===d)return this._value();this._setOption("value",a);return this},_setOption:function(a,c){if(a==="value"){this.options.value=c;this._refreshValue();this._value()===this.options.max&&this._trigger("complete")}b.Widget.prototype._setOption.apply(this,arguments)},_value:function(){var a=this.options.value;if(typeof a!=="number")a=0;return Math.min(this.options.max,Math.max(this.min,a))},_percentage:function(){return 100* -this._value()/this.options.max},_refreshValue:function(){var a=this.value(),c=this._percentage();if(this.oldValue!==a){this.oldValue=a;this._trigger("change")}this.valueDiv.toggle(a>this.min).toggleClass("ui-corner-right",a===this.options.max).width(c.toFixed(0)+"%");this.element.attr("aria-valuenow",a)}});b.extend(b.ui.progressbar,{version:"1.8.14"})})(jQuery); +this._value()/this.options.max},_refreshValue:function(){var a=this.value(),c=this._percentage();if(this.oldValue!==a){this.oldValue=a;this._trigger("change")}this.valueDiv.toggle(a>this.min).toggleClass("ui-corner-right",a===this.options.max).width(c.toFixed(0)+"%");this.element.attr("aria-valuenow",a)}});b.extend(b.ui.progressbar,{version:"1.8.16"})})(jQuery); ;/* - * jQuery UI Effects 1.8.14 + * jQuery UI Effects 1.8.16 * * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) * Dual licensed under the MIT or GPL Version 2 licenses. @@ -585,20 +556,21 @@ a;b=null;a=c;c=a.effect}if(f.isFunction(a)){d=a;b=null;a={}}if(typeof a=="number 211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0],transparent:[255,255,255]},q=["add","remove","toggle"],t={border:1,borderBottom:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,margin:1,padding:1};f.effects.animateClass=function(c,a,b, d){if(f.isFunction(b)){d=b;b=null}return this.queue(function(){var e=f(this),g=e.attr("style")||" ",h=p(o.call(this)),r,v=e.attr("class");f.each(q,function(w,i){c[i]&&e[i+"Class"](c[i])});r=p(o.call(this));e.attr("class",v);e.animate(u(h,r),{queue:false,duration:a,easing:b,complete:function(){f.each(q,function(w,i){c[i]&&e[i+"Class"](c[i])});if(typeof e.attr("style")=="object"){e.attr("style").cssText="";e.attr("style").cssText=g}else e.attr("style",g);d&&d.apply(this,arguments);f.dequeue(this)}})})}; f.fn.extend({_addClass:f.fn.addClass,addClass:function(c,a,b,d){return a?f.effects.animateClass.apply(this,[{add:c},a,b,d]):this._addClass(c)},_removeClass:f.fn.removeClass,removeClass:function(c,a,b,d){return a?f.effects.animateClass.apply(this,[{remove:c},a,b,d]):this._removeClass(c)},_toggleClass:f.fn.toggleClass,toggleClass:function(c,a,b,d,e){return typeof a=="boolean"||a===j?b?f.effects.animateClass.apply(this,[a?{add:c}:{remove:c},b,d,e]):this._toggleClass(c,a):f.effects.animateClass.apply(this, -[{toggle:c},a,b,d])},switchClass:function(c,a,b,d,e){return f.effects.animateClass.apply(this,[{add:a,remove:c},b,d,e])}});f.extend(f.effects,{version:"1.8.14",save:function(c,a){for(var b=0;b").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0}); -c.wrap(b);b=c.parent();if(c.css("position")=="static"){b.css({position:"relative"});c.css({position:"relative"})}else{f.extend(a,{position:c.css("position"),zIndex:c.css("z-index")});f.each(["top","left","bottom","right"],function(d,e){a[e]=c.css(e);if(isNaN(parseInt(a[e],10)))a[e]="auto"});c.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})}return b.css(a).show()},removeWrapper:function(c){if(c.parent().is(".ui-effects-wrapper"))return c.parent().replaceWith(c);return c},setTransition:function(c, -a,b,d){d=d||{};f.each(a,function(e,g){unit=c.cssUnit(g);if(unit[0]>0)d[g]=unit[0]*b+unit[1]});return d}});f.fn.extend({effect:function(c){var a=k.apply(this,arguments),b={options:a[1],duration:a[2],callback:a[3]};a=b.options.mode;var d=f.effects[c];if(f.fx.off||!d)return a?this[a](b.duration,b.callback):this.each(function(){b.callback&&b.callback.call(this)});return d.call(this,b)},_show:f.fn.show,show:function(c){if(l(c))return this._show.apply(this,arguments);else{var a=k.apply(this,arguments); -a[1].mode="show";return this.effect.apply(this,a)}},_hide:f.fn.hide,hide:function(c){if(l(c))return this._hide.apply(this,arguments);else{var a=k.apply(this,arguments);a[1].mode="hide";return this.effect.apply(this,a)}},__toggle:f.fn.toggle,toggle:function(c){if(l(c)||typeof c==="boolean"||f.isFunction(c))return this.__toggle.apply(this,arguments);else{var a=k.apply(this,arguments);a[1].mode="toggle";return this.effect.apply(this,a)}},cssUnit:function(c){var a=this.css(c),b=[];f.each(["em","px","%", -"pt"],function(d,e){if(a.indexOf(e)>0)b=[parseFloat(a),e]});return b}});f.easing.jswing=f.easing.swing;f.extend(f.easing,{def:"easeOutQuad",swing:function(c,a,b,d,e){return f.easing[f.easing.def](c,a,b,d,e)},easeInQuad:function(c,a,b,d,e){return d*(a/=e)*a+b},easeOutQuad:function(c,a,b,d,e){return-d*(a/=e)*(a-2)+b},easeInOutQuad:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a+b;return-d/2*(--a*(a-2)-1)+b},easeInCubic:function(c,a,b,d,e){return d*(a/=e)*a*a+b},easeOutCubic:function(c,a,b,d,e){return d* -((a=a/e-1)*a*a+1)+b},easeInOutCubic:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a+b;return d/2*((a-=2)*a*a+2)+b},easeInQuart:function(c,a,b,d,e){return d*(a/=e)*a*a*a+b},easeOutQuart:function(c,a,b,d,e){return-d*((a=a/e-1)*a*a*a-1)+b},easeInOutQuart:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a*a+b;return-d/2*((a-=2)*a*a*a-2)+b},easeInQuint:function(c,a,b,d,e){return d*(a/=e)*a*a*a*a+b},easeOutQuint:function(c,a,b,d,e){return d*((a=a/e-1)*a*a*a*a+1)+b},easeInOutQuint:function(c,a,b,d,e){if((a/= -e/2)<1)return d/2*a*a*a*a*a+b;return d/2*((a-=2)*a*a*a*a+2)+b},easeInSine:function(c,a,b,d,e){return-d*Math.cos(a/e*(Math.PI/2))+d+b},easeOutSine:function(c,a,b,d,e){return d*Math.sin(a/e*(Math.PI/2))+b},easeInOutSine:function(c,a,b,d,e){return-d/2*(Math.cos(Math.PI*a/e)-1)+b},easeInExpo:function(c,a,b,d,e){return a==0?b:d*Math.pow(2,10*(a/e-1))+b},easeOutExpo:function(c,a,b,d,e){return a==e?b+d:d*(-Math.pow(2,-10*a/e)+1)+b},easeInOutExpo:function(c,a,b,d,e){if(a==0)return b;if(a==e)return b+d;if((a/= -e/2)<1)return d/2*Math.pow(2,10*(a-1))+b;return d/2*(-Math.pow(2,-10*--a)+2)+b},easeInCirc:function(c,a,b,d,e){return-d*(Math.sqrt(1-(a/=e)*a)-1)+b},easeOutCirc:function(c,a,b,d,e){return d*Math.sqrt(1-(a=a/e-1)*a)+b},easeInOutCirc:function(c,a,b,d,e){if((a/=e/2)<1)return-d/2*(Math.sqrt(1-a*a)-1)+b;return d/2*(Math.sqrt(1-(a-=2)*a)+1)+b},easeInElastic:function(c,a,b,d,e){c=1.70158;var g=0,h=d;if(a==0)return b;if((a/=e)==1)return b+d;g||(g=e*0.3);if(h").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0}), +d=document.activeElement;c.wrap(b);if(c[0]===d||f.contains(c[0],d))f(d).focus();b=c.parent();if(c.css("position")=="static"){b.css({position:"relative"});c.css({position:"relative"})}else{f.extend(a,{position:c.css("position"),zIndex:c.css("z-index")});f.each(["top","left","bottom","right"],function(e,g){a[g]=c.css(g);if(isNaN(parseInt(a[g],10)))a[g]="auto"});c.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})}return b.css(a).show()},removeWrapper:function(c){var a,b=document.activeElement; +if(c.parent().is(".ui-effects-wrapper")){a=c.parent().replaceWith(c);if(c[0]===b||f.contains(c[0],b))f(b).focus();return a}return c},setTransition:function(c,a,b,d){d=d||{};f.each(a,function(e,g){unit=c.cssUnit(g);if(unit[0]>0)d[g]=unit[0]*b+unit[1]});return d}});f.fn.extend({effect:function(c){var a=k.apply(this,arguments),b={options:a[1],duration:a[2],callback:a[3]};a=b.options.mode;var d=f.effects[c];if(f.fx.off||!d)return a?this[a](b.duration,b.callback):this.each(function(){b.callback&&b.callback.call(this)}); +return d.call(this,b)},_show:f.fn.show,show:function(c){if(l(c))return this._show.apply(this,arguments);else{var a=k.apply(this,arguments);a[1].mode="show";return this.effect.apply(this,a)}},_hide:f.fn.hide,hide:function(c){if(l(c))return this._hide.apply(this,arguments);else{var a=k.apply(this,arguments);a[1].mode="hide";return this.effect.apply(this,a)}},__toggle:f.fn.toggle,toggle:function(c){if(l(c)||typeof c==="boolean"||f.isFunction(c))return this.__toggle.apply(this,arguments);else{var a=k.apply(this, +arguments);a[1].mode="toggle";return this.effect.apply(this,a)}},cssUnit:function(c){var a=this.css(c),b=[];f.each(["em","px","%","pt"],function(d,e){if(a.indexOf(e)>0)b=[parseFloat(a),e]});return b}});f.easing.jswing=f.easing.swing;f.extend(f.easing,{def:"easeOutQuad",swing:function(c,a,b,d,e){return f.easing[f.easing.def](c,a,b,d,e)},easeInQuad:function(c,a,b,d,e){return d*(a/=e)*a+b},easeOutQuad:function(c,a,b,d,e){return-d*(a/=e)*(a-2)+b},easeInOutQuad:function(c,a,b,d,e){if((a/=e/2)<1)return d/ +2*a*a+b;return-d/2*(--a*(a-2)-1)+b},easeInCubic:function(c,a,b,d,e){return d*(a/=e)*a*a+b},easeOutCubic:function(c,a,b,d,e){return d*((a=a/e-1)*a*a+1)+b},easeInOutCubic:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a+b;return d/2*((a-=2)*a*a+2)+b},easeInQuart:function(c,a,b,d,e){return d*(a/=e)*a*a*a+b},easeOutQuart:function(c,a,b,d,e){return-d*((a=a/e-1)*a*a*a-1)+b},easeInOutQuart:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a*a+b;return-d/2*((a-=2)*a*a*a-2)+b},easeInQuint:function(c,a,b, +d,e){return d*(a/=e)*a*a*a*a+b},easeOutQuint:function(c,a,b,d,e){return d*((a=a/e-1)*a*a*a*a+1)+b},easeInOutQuint:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a*a*a+b;return d/2*((a-=2)*a*a*a*a+2)+b},easeInSine:function(c,a,b,d,e){return-d*Math.cos(a/e*(Math.PI/2))+d+b},easeOutSine:function(c,a,b,d,e){return d*Math.sin(a/e*(Math.PI/2))+b},easeInOutSine:function(c,a,b,d,e){return-d/2*(Math.cos(Math.PI*a/e)-1)+b},easeInExpo:function(c,a,b,d,e){return a==0?b:d*Math.pow(2,10*(a/e-1))+b},easeOutExpo:function(c, +a,b,d,e){return a==e?b+d:d*(-Math.pow(2,-10*a/e)+1)+b},easeInOutExpo:function(c,a,b,d,e){if(a==0)return b;if(a==e)return b+d;if((a/=e/2)<1)return d/2*Math.pow(2,10*(a-1))+b;return d/2*(-Math.pow(2,-10*--a)+2)+b},easeInCirc:function(c,a,b,d,e){return-d*(Math.sqrt(1-(a/=e)*a)-1)+b},easeOutCirc:function(c,a,b,d,e){return d*Math.sqrt(1-(a=a/e-1)*a)+b},easeInOutCirc:function(c,a,b,d,e){if((a/=e/2)<1)return-d/2*(Math.sqrt(1-a*a)-1)+b;return d/2*(Math.sqrt(1-(a-=2)*a)+1)+b},easeInElastic:function(c,a,b, +d,e){c=1.70158;var g=0,h=d;if(a==0)return b;if((a/=e)==1)return b+d;g||(g=e*0.3);if(h").css({position:"absolute",visibility:"visible",left:-f*(h/d),top:-e*(i/c)}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:h/d,height:i/c,left:g.left+f*(h/d)+(a.options.mode=="show"?(f-Math.floor(d/2))*(h/d):0),top:g.top+e*(i/c)+(a.options.mode=="show"?(e-Math.floor(c/2))*(i/c):0),opacity:a.options.mode=="show"?0:1}).animate({left:g.left+f*(h/d)+(a.options.mode=="show"?0:(f-Math.floor(d/2))*(h/d)),top:g.top+ e*(i/c)+(a.options.mode=="show"?0:(e-Math.floor(c/2))*(i/c)),opacity:a.options.mode=="show"?1:0},a.duration||500);setTimeout(function(){a.options.mode=="show"?b.css({visibility:"visible"}):b.css({visibility:"visible"}).hide();a.callback&&a.callback.apply(b[0]);b.dequeue();j("div.ui-effects-explode").remove()},a.duration||500)})}})(jQuery); ;/* - * jQuery UI Effects Fade 1.8.14 + * jQuery UI Effects Fade 1.8.16 * * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) * Dual licensed under the MIT or GPL Version 2 licenses. @@ -683,7 +655,7 @@ e*(i/c)+(a.options.mode=="show"?0:(e-Math.floor(c/2))*(i/c)),opacity:a.options.m */ (function(b){b.effects.fade=function(a){return this.queue(function(){var c=b(this),d=b.effects.setMode(c,a.options.mode||"hide");c.animate({opacity:d},{queue:false,duration:a.duration,easing:a.options.easing,complete:function(){a.callback&&a.callback.apply(this,arguments);c.dequeue()}})})}})(jQuery); ;/* - * jQuery UI Effects Fold 1.8.14 + * jQuery UI Effects Fold 1.8.16 * * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) * Dual licensed under the MIT or GPL Version 2 licenses. @@ -697,7 +669,7 @@ e*(i/c)+(a.options.mode=="show"?0:(e-Math.floor(c/2))*(i/c)),opacity:a.options.m (function(c){c.effects.fold=function(a){return this.queue(function(){var b=c(this),j=["position","top","bottom","left","right"],d=c.effects.setMode(b,a.options.mode||"hide"),g=a.options.size||15,h=!!a.options.horizFirst,k=a.duration?a.duration/2:c.fx.speeds._default/2;c.effects.save(b,j);b.show();var e=c.effects.createWrapper(b).css({overflow:"hidden"}),f=d=="show"!=h,l=f?["width","height"]:["height","width"];f=f?[e.width(),e.height()]:[e.height(),e.width()];var i=/([0-9]+)%/.exec(g);if(i)g=parseInt(i[1], 10)/100*f[d=="hide"?0:1];if(d=="show")e.css(h?{height:0,width:g}:{height:g,width:0});h={};i={};h[l[0]]=d=="show"?f[0]:g;i[l[1]]=d=="show"?f[1]:0;e.animate(h,k,a.options.easing).animate(i,k,a.options.easing,function(){d=="hide"&&b.hide();c.effects.restore(b,j);c.effects.removeWrapper(b);a.callback&&a.callback.apply(b[0],arguments);b.dequeue()})})}})(jQuery); ;/* - * jQuery UI Effects Highlight 1.8.14 + * jQuery UI Effects Highlight 1.8.16 * * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) * Dual licensed under the MIT or GPL Version 2 licenses. @@ -711,7 +683,7 @@ e*(i/c)+(a.options.mode=="show"?0:(e-Math.floor(c/2))*(i/c)),opacity:a.options.m (function(b){b.effects.highlight=function(c){return this.queue(function(){var a=b(this),e=["backgroundImage","backgroundColor","opacity"],d=b.effects.setMode(a,c.options.mode||"show"),f={backgroundColor:a.css("backgroundColor")};if(d=="hide")f.opacity=0;b.effects.save(a,e);a.show().css({backgroundImage:"none",backgroundColor:c.options.color||"#ffff99"}).animate(f,{queue:false,duration:c.duration,easing:c.options.easing,complete:function(){d=="hide"&&a.hide();b.effects.restore(a,e);d=="show"&&!b.support.opacity&& this.style.removeAttribute("filter");c.callback&&c.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery); ;/* - * jQuery UI Effects Pulsate 1.8.14 + * jQuery UI Effects Pulsate 1.8.16 * * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) * Dual licensed under the MIT or GPL Version 2 licenses. @@ -725,7 +697,7 @@ this.style.removeAttribute("filter");c.callback&&c.callback.apply(this,arguments (function(d){d.effects.pulsate=function(a){return this.queue(function(){var b=d(this),c=d.effects.setMode(b,a.options.mode||"show");times=(a.options.times||5)*2-1;duration=a.duration?a.duration/2:d.fx.speeds._default/2;isVisible=b.is(":visible");animateTo=0;if(!isVisible){b.css("opacity",0).show();animateTo=1}if(c=="hide"&&isVisible||c=="show"&&!isVisible)times--;for(c=0;c'+settings.title+''); - if(settings.checked.length>0){ - button.children('span').first().text(settings.checked.join(', ')); - } var span=$(''); span.append(button); button.data('id',multiSelectId); button.selectedItems=[]; this.hide(); this.before(span); - settings.minWidth=button.width(); + if(settings.minWidth=='default'){ + settings.minWidth=button.width(); + } button.css('min-width',settings.minWidth); settings.minOuterWidth=button.outerWidth()-2; button.data('settings',settings); - + if(settings.checked.length>0){ + button.children('span').first().text(settings.checked.join(', ')); + } + button.click(function(event){ var button=$(this); if(button.parent().children('ul').length>0){ @@ -58,22 +61,22 @@ input.change(function(){ var groupname=$(this).next().text(); if($(this).is(':checked')){ - settings.checked.push(groupname); if(settings.oncheck){ if(settings.oncheck(groupname)===false){ $(this).attr('checked', false); return; } } + settings.checked.push(groupname); }else{ var index=settings.checked.indexOf(groupname); - settings.checked.splice(index,1); if(settings.onuncheck){ if(settings.onuncheck(groupname)===false){ $(this).attr('checked',true); return; } } + settings.checked.splice(index,1); } var oldWidth=button.width(); if(settings.checked.length>0){ @@ -83,13 +86,14 @@ } var newOuterWidth=Math.max((button.outerWidth()-2),settings.minOuterWidth)+'px'; var newWidth=Math.max(button.width(),settings.minWidth); + var pos=button.position(); button.css('height',button.height()); button.css('white-space','nowrap'); button.css('width',oldWidth); button.animate({'width':newWidth},undefined,undefined,function(){ button.css('width',''); }); - list.animate({'width':newOuterWidth}); + list.animate({'width':newOuterWidth,'left':pos.left+3}); }); var li=$('
  • '); li.append(input).append(label); diff --git a/core/js/setup.js b/core/js/setup.js index b765d41ba35..6e056cc90d1 100644 --- a/core/js/setup.js +++ b/core/js/setup.js @@ -1,4 +1,11 @@ +var dbtypes $(document).ready(function() { + dbtypes={ + sqlite:!!$('#hasSQLite').val(), + mysql:!!$('#hasMySQL').val(), + postgresql:!!$('#hasPostgreSQL').val(), + } + $('#selectDbType').buttonset(); $('#datadirContent').hide(250); $('#databaseField').hide(250); @@ -7,7 +14,9 @@ $(document).ready(function() { $('#dbhost').hide(); $('#dbhostlabel').hide(); } - + $('#adminlogin').change(function(){ + $('#adminlogin').val($.trim($('#adminlogin').val())); + }); $('#sqlite').click(function() { $('#use_other_db').slideUp(250); $('#dbhost').hide(250); @@ -58,4 +67,9 @@ $(document).ready(function() { form.submit(); return false; }); + + if(!dbtypes.sqlite){ + $('#showAdvanced').click(); + $('input[type="radio"]').first().click(); + } }); diff --git a/core/l10n/ar.php b/core/l10n/ar.php new file mode 100644 index 00000000000..8a6ba6e9a78 --- /dev/null +++ b/core/l10n/ar.php @@ -0,0 +1,39 @@ + "استرجاع كلمة السر", +"Use the following link to reset your password: {link}" => "استخدم هذه الوصلة لاسترجاع كلمة السر: {link}", +"You will receive a link to reset your password via Email." => "سوف نرسل لك بريد يحتوي على وصلة لتجديد كلمة السر.", +"Requested" => "تم طلب", +"Login failed!" => "محاولة دخول فاشلة!", +"Username" => "إسم المستخدم", +"Request reset" => "طلب تعديل", +"Your password was reset" => "لقد تم تعديل كلمة السر", +"To login page" => "الى صفحة الدخول", +"New password" => "كلمة سر جديدة", +"Reset password" => "تعديل كلمة السر", +"Personal" => "خصوصيات", +"Users" => "المستخدم", +"Apps" => "التطبيقات", +"Admin" => "مستخدم رئيسي", +"Help" => "المساعدة", +"Cloud not found" => "لم يتم إيجاد", +"Create an admin account" => "أضف مستخدم رئيسي ", +"Password" => "كلمة السر", +"Advanced" => "خيارات متقدمة", +"Data folder" => "مجلد المعلومات", +"Configure the database" => "أسس قاعدة البيانات", +"will be used" => "سيتم استخدمه", +"Database user" => "مستخدم قاعدة البيانات", +"Database password" => "كلمة سر مستخدم قاعدة البيانات", +"Database name" => "إسم قاعدة البيانات", +"Database host" => "خادم قاعدة البيانات", +"Finish setup" => "انهاء التعديلات", +"web services under your control" => "خدمات الوب تحت تصرفك", +"Log out" => "الخروج", +"Settings" => "تعديلات", +"Lost your password?" => "هل نسيت كلمة السر؟", +"remember" => "تذكر", +"Log in" => "أدخل", +"You are logged out." => "تم الخروج بنجاح.", +"prev" => "السابق", +"next" => "التالي" +); diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php index 6bf25e5598b..46047a35350 100644 --- a/core/l10n/bg_BG.php +++ b/core/l10n/bg_BG.php @@ -1,4 +1,12 @@ "Ще получите връзка за нулиране на паролата Ви.", +"Requested" => "Заявено", +"Login failed!" => "Входа пропадна!", +"Username" => "Потребител", +"Request reset" => "Нулиране на заявка", +"Your password was reset" => "Вашата парола е нулирана", +"New password" => "Нова парола", +"Reset password" => "Нулиране на парола", "Personal" => "Лични", "Users" => "Потребители", "Apps" => "Програми", @@ -6,31 +14,21 @@ "Help" => "Помощ", "Cloud not found" => "облакът не намерен", "Create an admin account" => "Създаване на админ профил", -"Username" => "Потребител", "Password" => "Парола", +"Advanced" => "Разширено", +"Data folder" => "Директория за данни", "Configure the database" => "Конфигуриране на базата", "will be used" => "ще се ползва", "Database user" => "Потребител за базата", "Database password" => "Парола за базата", "Database name" => "Име на базата", -"Advanced" => "Разширено", "Database host" => "Хост за базата", -"Data folder" => "Директория за данни", "Finish setup" => "Завършване на настройките", -"gives you freedom and control over your own data" => "дава Ви свобода и контрол на Вашите лични данни", "Log out" => "Изход", "Settings" => "Настройки", "Lost your password?" => "Забравена парола?", "remember" => "запомни", "You are logged out." => "Вие излязохте.", -"You will receive a link to reset your password via Email." => "Ще получите връзка за да нулирате паролата си.", -"Requested" => "Заявено", -"Login failed!" => "Входа пропадна!", -"Username or Email" => "Потребителско име или Email", -"Request reset" => "Заявка за нулиране", "prev" => "пред.", -"next" => "следващо", -"Your password was reset" => "Вашата парола е нулирана", -"New password" => "Нова парола", -"Reset password" => "Нулиране на парола" +"next" => "следващо" ); diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 3ecd041ad01..5a28b80760c 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -1,36 +1,39 @@ "Restableix la contrasenya d'Owncloud", +"Use the following link to reset your password: {link}" => "Useu l'enllaç següent per restablir la contrasenya: {enllaç}", +"You will receive a link to reset your password via Email." => "Rebreu un enllaç al correu electrònic per reiniciar la contrasenya.", +"Requested" => "Sol·licitat", +"Login failed!" => "No s'ha pogut iniciar la sessió", +"Username" => "Nom d'usuari", +"Request reset" => "Sol·licita reinicialització", +"Your password was reset" => "La vostra contrasenya s'ha reinicialitzat", +"To login page" => "A la pàgina d'inici de sessió", +"New password" => "Contrasenya nova", +"Reset password" => "Reinicialitza la contrasenya", "Personal" => "Personal", "Users" => "Usuaris", "Apps" => "Aplicacions", "Admin" => "Administrador", "Help" => "Ajuda", -"Cloud not found" => "No s'ha trobat el núvol", +"Cloud not found" => "No s'ha trobat al núvol", "Create an admin account" => "Crea un compte d'administrador", -"Username" => "Nom d'usuari", "Password" => "Contrasenya", +"Advanced" => "Avançat", +"Data folder" => "Carpeta de dades", "Configure the database" => "Configura la base de dades", "will be used" => "s'usarà", "Database user" => "Usuari de la base de dades", "Database password" => "Contrasenya de la base de dades", "Database name" => "Nom de la base de dades", -"Advanced" => "Avançat", "Database host" => "Ordinador central de la base de dades", -"Data folder" => "Carpeta de dades", "Finish setup" => "Acaba la configuració", -"gives you freedom and control over your own data" => "us dóna llibertat i control sobre les seves dades", +"web services under your control" => "controleu els vostres serveis web", "Log out" => "Sortir", "Settings" => "Arranjament", "Lost your password?" => "Heu perdut la contrasenya?", "remember" => "recorda'm", +"Log in" => "Inici de sessió", "You are logged out." => "Heu tancat la sessió.", -"You will receive a link to reset your password via Email." => "Rebreu un enllaç per correu electrònic per restablir la contrasenya", -"Requested" => "Sol·licitat", -"Login failed!" => "L'inici de sessió ha fallat!", -"Username or Email" => "Nom d'usuari o correu electrònic", -"Request reset" => "Sol.licitud de restabliment", "prev" => "anterior", -"next" => "següent", -"Your password was reset" => "La vostra contrasenya s'ha restablert", -"New password" => "Nova contrasenya", -"Reset password" => "Restabliment de la contrasenya" +"next" => "següent" ); diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 08a90ba4a0f..b3e57981a6d 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -1,4 +1,15 @@ "Reset hesla Owncloud", +"Use the following link to reset your password: {link}" => "Heslo vyresetujete použitím následujícího odkazu: {link}", +"You will receive a link to reset your password via Email." => "Bude Vám zaslán odkaz pro obnovu hesla", +"Requested" => "Požadováno", +"Login failed!" => "Přihlášení selhalo", +"Username" => "Uživatelské jméno", +"Request reset" => "Vyžádat obnovu", +"Your password was reset" => "Vaše heslo bylo obnoveno", +"To login page" => "Na stránku přihlášení", +"New password" => "Nové heslo", +"Reset password" => "Obnovit heslo", "Personal" => "Osobní", "Users" => "Uživatelé", "Apps" => "Aplikace", @@ -6,21 +17,23 @@ "Help" => "Nápověda", "Cloud not found" => "Cloud nebyl nalezen", "Create an admin account" => "Vytvořit účet správce", -"Username" => "Uživatelské jméno", "Password" => "Heslo", +"Advanced" => "Rozšířené volby", +"Data folder" => "Datový adresář", "Configure the database" => "Konfigurace databáze", "will be used" => "bude použito", "Database user" => "Uživatel databáze", "Database password" => "Heslo k databázi", "Database name" => "Název databáze", -"Advanced" => "Rozšířené volby", -"Data folder" => "Datový adresář", +"Database host" => "Hostitel databáze", "Finish setup" => "Dokončit instalaci", +"web services under your control" => "webové služby pod Vaší kontrolou", "Log out" => "Odhlásit se", "Settings" => "Nastavení", +"Lost your password?" => "Zapomenuté heslo?", "remember" => "zapamatovat si", +"Log in" => "Login", "You are logged out." => "Jste odhlášeni.", -"Login failed!" => "Přihlášení se nezdařilo!", "prev" => "zpět", "next" => "vpřed" ); diff --git a/core/l10n/da.php b/core/l10n/da.php index 5c1ca0dc211..97ebb27baca 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -1,36 +1,39 @@ "Nulstil adgangskode til Owncloud", +"Use the following link to reset your password: {link}" => "Anvend følgende link til at nulstille din adgangskode: {link}", +"You will receive a link to reset your password via Email." => "Du vil modtage et link til at nulstille dit kodeord via email.", +"Requested" => "Forespugt", +"Login failed!" => "Login fejlede!", +"Username" => "Brugernavn", +"Request reset" => "Anmod om nulstilling", +"Your password was reset" => "Dit kodeord blev nulstillet", +"To login page" => "Til login-side", +"New password" => "Nyt kodeord", +"Reset password" => "Nulstil kodeord", "Personal" => "Personlig", "Users" => "Brugere", "Apps" => "Apps", "Admin" => "Admin", "Help" => "Hjælp", "Cloud not found" => "Sky ikke fundet", -"Create an admin account" => "Lav en administrator konto", -"Username" => "Brugernavn", +"Create an admin account" => "Opret en administratorkonto", "Password" => "Kodeord", +"Advanced" => "Avanceret", +"Data folder" => "Datamappe", "Configure the database" => "Konfigurer databasen", "will be used" => "vil blive brugt", -"Database user" => "Database-bruger", -"Database password" => "Database-kodeord", -"Database name" => "Database-navn", -"Advanced" => "Avanceret", -"Database host" => "Database host", -"Data folder" => "Data mappe", -"Finish setup" => "Afslut installation", -"gives you freedom and control over your own data" => "giver dig frihed og kontrol over dine egne data", +"Database user" => "Databasebruger", +"Database password" => "Databasekodeord", +"Database name" => "Navn på database", +"Database host" => "Databasehost", +"Finish setup" => "Afslut opsætning", +"web services under your control" => "Webtjenester under din kontrol", "Log out" => "Log ud", "Settings" => "Indstillinger", "Lost your password?" => "Mistet dit kodeord?", "remember" => "husk", -"You are logged out." => "Du er nu logget ud", -"You will receive a link to reset your password via Email." => "Du vil modtage et link til at nulstille din adgangskode via e-mail.", -"Requested" => "Anmodet", -"Login failed!" => "Login mislykkedes!", -"Username or Email" => "Brugernavn eller E-mail", -"Request reset" => "Anmod om nulstilling", +"Log in" => "Log ind", +"You are logged out." => "Du er nu logget ud.", "prev" => "forrige", -"next" => "næste", -"Your password was reset" => "Din adgangskode blev nulstillet", -"New password" => "Ny adgangskode", -"Reset password" => "Nulstil adgangskode" +"next" => "næste" ); diff --git a/core/l10n/de.php b/core/l10n/de.php index 0b5a0e13cea..5e526440758 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -1,4 +1,15 @@ "OwnCloud Passwort zurücksetzen", +"Use the following link to reset your password: {link}" => "Nutze folgenden Link, um dein Passwort zurückzusetzen: {link}", +"You will receive a link to reset your password via Email." => "Sie erhalten einen Link, um Ihr Passwort per E-Mail zurückzusetzen.", +"Requested" => "Angefragt", +"Login failed!" => "Login fehlgeschlagen!", +"Username" => "Nutzername", +"Request reset" => "Anfrage zurückgesetzt", +"Your password was reset" => "Ihr Passwort wurde zurückgesetzt.", +"To login page" => "Zur Login-Seite", +"New password" => "Neues Passwort", +"Reset password" => "Passwort zurücksetzen", "Personal" => "Persönlich", "Users" => "Nutzer", "Apps" => "Anwendungen", @@ -6,31 +17,23 @@ "Help" => "Hilfe", "Cloud not found" => "Cloud nicht verfügbar", "Create an admin account" => "Admin-Konto anlegen", -"Username" => "Nutzername", "Password" => "Passwort", +"Advanced" => "Erweitert", +"Data folder" => "Datenverzeichnis", "Configure the database" => "Datenbank einrichten", "will be used" => "wird genutzt", "Database user" => "Datenbanknutzer", "Database password" => "Datenbankpasswort", "Database name" => "Datenbankname", -"Advanced" => "Erweitert", "Database host" => "Datenbank-Host", -"Data folder" => "Datenverzeichnis", "Finish setup" => "Installation abschließen", -"gives you freedom and control over your own data" => "gibt dir Freiheit und Kontrolle über deine eigenen Daten", +"web services under your control" => "web services under your control", "Log out" => "Abmelden", "Settings" => "Einstellungen", "Lost your password?" => "Passwort vergessen?", "remember" => "merken", +"Log in" => "Einloggen", "You are logged out." => "Abgemeldet", -"You will receive a link to reset your password via Email." => "Du wirst per Email einen Link zum Zurücksetzen deines Passworts erhalten.", -"Requested" => "zurückgesetzt", -"Login failed!" => "Anmeldung fehlgeschlagen!", -"Username or Email" => "Nutzername oder Email", -"Request reset" => "Zurücksetzen", "prev" => "Zurück", -"next" => "Weiter", -"Your password was reset" => "Dein Passwort wurde zurückgesetzt.", -"New password" => "Neues Passwort", -"Reset password" => "Zurücksetzen" +"next" => "Weiter" ); diff --git a/core/l10n/el.php b/core/l10n/el.php index c75227f8aad..b1330684e5e 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -1,4 +1,15 @@ "Επανέκδοση κωδικού για το Qwncloud", +"Use the following link to reset your password: {link}" => "Χρησιμοποιήστε τον ακόλουθο σύνδεσμο για να επανεκδόσετε τον κωδικό: {link}", +"You will receive a link to reset your password via Email." => "Θα λάβετε ένα σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασής σας μέσω ηλεκτρονικού ταχυδρομείου.", +"Requested" => "Ζητήθησαν", +"Login failed!" => "Η σύνδεση απέτυχε!", +"Username" => "Όνομα Χρήστη", +"Request reset" => "Επαναφορά αίτησης", +"Your password was reset" => "Ο κωδικός πρόσβασής σας επαναφέρθηκε", +"To login page" => "Σελίδα εισόδου", +"New password" => "Νέος κωδικός", +"Reset password" => "Επαναφορά κωδικού πρόσβασης", "Personal" => "Προσωπικά", "Users" => "Χρήστες", "Apps" => "Εφαρμογές", @@ -6,31 +17,23 @@ "Help" => "Βοήθεια", "Cloud not found" => "Δεν βρέθηκε σύννεφο", "Create an admin account" => "Δημιουργήστε έναν λογαριασμό διαχειριστή", -"Username" => "Όνομα Χρήστη", "Password" => "Κωδικός", +"Advanced" => "Για προχωρημένους", +"Data folder" => "Φάκελος δεδομένων", "Configure the database" => "Διαμόρφωση της βάσης δεδομένων", "will be used" => "θα χρησιμοποιηθούν", "Database user" => "Χρήστης της βάσης δεδομένων", "Database password" => "Κωδικός πρόσβασης βάσης δεδομένων", "Database name" => "Όνομα βάσης δεδομένων", -"Advanced" => "Για προχωρημένους", "Database host" => "Διακομιστής βάσης δεδομένων", -"Data folder" => "Φάκελος δεδομένων", "Finish setup" => "Ολοκλήρωση εγκατάστασης", -"gives you freedom and control over your own data" => "σας δίνει την ελευθερία και τον έλεγχο επί των δικών σας δεδομένων", +"web services under your control" => "Υπηρεσίες web υπό τον έλεγχό σας", "Log out" => "Αποσύνδεση", "Settings" => "Ρυθμίσεις", "Lost your password?" => "Ξεχάσατε τον κωδικό σας;", "remember" => "να με θυμάσαι", +"Log in" => "Είσοδος", "You are logged out." => "Έχετε αποσυνδεθεί.", -"You will receive a link to reset your password via Email." => "Θα λάβετε ένα σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασής σας, μέσω ηλεκτρονικού ταχυδρομείου.", -"Requested" => "Αιτήθησαν", -"Login failed!" => "Η σύνδεση απέτυχε!", -"Username or Email" => "Όνομα Χρήστη ή Email", -"Request reset" => "Επαναφοράς αίτησης", "prev" => "προηγούμενο", -"next" => "επόμενο", -"Your password was reset" => "Έγινε επαναφορά του κωδικού πρόσβασής σας", -"New password" => "Νέος κωδικός", -"Reset password" => "Επαναφορά κωδικού πρόσβασης" +"next" => "επόμενο" ); diff --git a/core/l10n/eo.php b/core/l10n/eo.php new file mode 100644 index 00000000000..9719ab39c19 --- /dev/null +++ b/core/l10n/eo.php @@ -0,0 +1,34 @@ + "Vi ricevos ligilon retpoŝte por rekomencigi vian pasvorton.", +"Requested" => "Petita", +"Login failed!" => "Ensaluto malsukcesis!", +"Username" => "Uzantonomo", +"Request reset" => "Peti rekomencigon", +"Your password was reset" => "Via pasvorto rekomencis", +"New password" => "Nova pasvorto", +"Reset password" => "Rekomenci la pasvorton", +"Personal" => "Persona", +"Users" => "Uzantoj", +"Apps" => "Aplikaĵoj", +"Admin" => "Administranto", +"Help" => "Helpo", +"Cloud not found" => "La nubo ne estas trovita", +"Create an admin account" => "Krei administran konton", +"Password" => "Pasvorto", +"Advanced" => "Porsperta", +"Data folder" => "Datuma dosierujo", +"Configure the database" => "Agordi la datumbazon", +"will be used" => "estos uzata", +"Database user" => "Datumbaza uzanto", +"Database password" => "Datumbaza pasvorto", +"Database name" => "Datumbaza nomo", +"Database host" => "Datumbaza gastigo", +"Finish setup" => "Fini la instalon", +"Log out" => "Elsaluti", +"Settings" => "Agordo", +"Lost your password?" => "Ĉu vi perdis vian pasvorton?", +"remember" => "memori", +"You are logged out." => "Vi elsalutis.", +"prev" => "maljena", +"next" => "jena" +); diff --git a/core/l10n/es.php b/core/l10n/es.php index e997a17002f..4ce42a645e2 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -1,4 +1,15 @@ "Restablecer contraseña de ownCloud", +"Use the following link to reset your password: {link}" => "Utiliza el siguiente enlace para restablecer tu contraseña: {link}", +"You will receive a link to reset your password via Email." => "Recibirás un enlace por correo electrónico para restablecer tu contraseña", +"Requested" => "Pedido", +"Login failed!" => "¡Fallo al iniciar sesión!", +"Username" => "Nombre de usuario", +"Request reset" => "Solicitar restablecimiento", +"Your password was reset" => "Tu contraseña se ha restablecido", +"To login page" => "A la página de inicio de sesión", +"New password" => "Nueva contraseña", +"Reset password" => "Restablecer contraseña", "Personal" => "Personal", "Users" => "Usuarios", "Apps" => "Aplicaciones", @@ -6,31 +17,23 @@ "Help" => "Ayuda", "Cloud not found" => "No se encontró la nube", "Create an admin account" => "Crea una cuenta de administrador", -"Username" => "Nombre de usuario", "Password" => "Contraseña", +"Advanced" => "Avanzado", +"Data folder" => "Directorio de almacenamiento", "Configure the database" => "Configurar la base de datos", "will be used" => "serán utilizados", "Database user" => "Usuario de la base de datos", "Database password" => "Contraseña de la base de datos", "Database name" => "Nombre de la base de datos", -"Advanced" => "Avanzado", "Database host" => "Host de la base de datos", -"Data folder" => "Directorio de almacenamiento", "Finish setup" => "Completar la instalación", -"gives you freedom and control over your own data" => "te da la libertad y el control sobre tus propios datos", +"web services under your control" => "servicios web bajo tu control", "Log out" => "Salir", "Settings" => "Ajustes", "Lost your password?" => "¿Has perdido tu contraseña?", "remember" => "recuérdame", +"Log in" => "Entrar", "You are logged out." => "Has cerrado sesión.", -"You will receive a link to reset your password via Email." => "Recibirás un link para restablecer tu contraseña vía Email.", -"Requested" => "Solicitado", -"Login failed!" => "¡No se pudo iniciar sesión!", -"Username or Email" => "Nombre de usuario o Email", -"Request reset" => "Solicitar restablecimiento", "prev" => "anterior", -"next" => "siguiente", -"Your password was reset" => "Tu contraseña se ha restablecido", -"New password" => "Nueva contraseña", -"Reset password" => "Restablecer contraseña" +"next" => "siguiente" ); diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index 84d05d17ba7..82a2e1c1717 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -1,4 +1,15 @@ "Owncloud parooli taastamine", +"Use the following link to reset your password: {link}" => "Kasuta järgnevat linki oma parooli taastamiseks: {link}", +"You will receive a link to reset your password via Email." => "Sinu parooli taastamise link saadetakse sulle e-postile.", +"Requested" => "Kohustuslik", +"Login failed!" => "Sisselogimine ebaõnnestus!", +"Username" => "Kasutajanimi", +"Request reset" => "Päringu taastamine", +"Your password was reset" => "Sinu parool on taastatud", +"To login page" => "Sisselogimise lehele", +"New password" => "Uus parool", +"Reset password" => "Nulli parool", "Personal" => "isiklik", "Users" => "Kasutajad", "Apps" => "Programmid", @@ -6,31 +17,23 @@ "Help" => "Abiinfo", "Cloud not found" => "Pilve ei leitud", "Create an admin account" => "Loo admini konto", -"Username" => "Kasutajanimi", "Password" => "Parool", +"Advanced" => "Lisavalikud", +"Data folder" => "Andmete kaust", "Configure the database" => "Seadista andmebaasi", "will be used" => "kasutatakse", "Database user" => "Andmebaasi kasutaja", "Database password" => "Andmebaasi parool", "Database name" => "Andmebasi nimi", -"Advanced" => "Lisavalikud", "Database host" => "Andmebaasi host", -"Data folder" => "Andmete kaust", "Finish setup" => "Lõpeta seadistamine", -"gives you freedom and control over your own data" => "Annab sulle vabaduse ja kontrolli sinu enda andmete üle", +"web services under your control" => "veebiteenused sinu kontrolli all", "Log out" => "Logi välja", "Settings" => "Seaded", "Lost your password?" => "Kaotasid oma parooli?", "remember" => "pea meeles", +"Log in" => "Logi sisse", "You are logged out." => "Sa oled välja loginud", -"You will receive a link to reset your password via Email." => "Sulle saadetakse e-postile link, millelt sa saad oma parooli taastada.", -"Requested" => "Kohustuslik", -"Login failed!" => "Sisselogimine ebaõnnestus", -"Username or Email" => "Kasutajanimi või e-post", -"Request reset" => "Palu taastamist", "prev" => "eelm", -"next" => "järgm", -"Your password was reset" => "Sinu parool on taastatud", -"New password" => "Uus parool", -"Reset password" => "Nulli parool" +"next" => "järgm" ); diff --git a/core/l10n/eu.php b/core/l10n/eu.php new file mode 100644 index 00000000000..bc1993c024c --- /dev/null +++ b/core/l10n/eu.php @@ -0,0 +1,34 @@ + "Zure pashitza berrezartzeko lotura bat jasoko duzu Epostaren bidez.", +"Requested" => "Eskatuta", +"Login failed!" => "Saio hasierak huts egin du!", +"Username" => "Erabiltzaile izena", +"Request reset" => "Eskaera berrezarri da", +"Your password was reset" => "Zure pasahitza berrezarri da", +"New password" => "Pasahitz berria", +"Reset password" => "Berrezarri pasahitza", +"Personal" => "Pertsonala", +"Users" => "Erabiltzaileak", +"Apps" => "Aplikazioak", +"Admin" => "Kudeatzailea", +"Help" => "Laguntza", +"Cloud not found" => "Ez da hodeia aurkitu", +"Create an admin account" => "Sortu kudeatzaile kontu bat", +"Password" => "Pasahitza", +"Advanced" => "Aurreratua", +"Data folder" => "Datuen karpeta", +"Configure the database" => "Konfiguratu datu basea", +"will be used" => "erabiliko da", +"Database user" => "Datubasearen erabiltzailea", +"Database password" => "Datubasearen pasahitza", +"Database name" => "Datubasearen izena", +"Database host" => "Datubasearen hostalaria", +"Finish setup" => "Bukatu konfigurazioa", +"Log out" => "Saioa bukatu", +"Settings" => "Ezarpenak", +"Lost your password?" => "Galdu duzu pasahitza?", +"remember" => "gogoratu", +"You are logged out." => "Zure saioa bukatu da.", +"prev" => "aurrekoa", +"next" => "hurrengoa" +); diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 15e7846efbb..64215442d89 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -1,4 +1,15 @@ "Réinitialisation de votre mot de passe Owncloud", +"Use the following link to reset your password: {link}" => "Utilisez le lien suivant pour réinitialiser votre mot de passe : {link}", +"You will receive a link to reset your password via Email." => "Vous allez recevoir un e-mail contenant un lien pour réinitialiser votre mot de passe", +"Requested" => "Demande envoyée", +"Login failed!" => "Nom d'utilisateur ou e-mail invalide", +"Username" => "Nom d'utilisateur", +"Request reset" => "Demander la réinitialisation", +"Your password was reset" => "Votre mot de passe a été réinitialisé", +"To login page" => "Retour à la page d'authentification", +"New password" => "Nouveau mot de passe", +"Reset password" => "Réinitialiser le mot de passe", "Personal" => "Personnels", "Users" => "Utilisateurs", "Apps" => "Applications", @@ -6,31 +17,23 @@ "Help" => "Aide", "Cloud not found" => "Introuvable", "Create an admin account" => "Créer un compte administrateur", -"Username" => "Nom d'utilisateur", "Password" => "Mot de passe", +"Advanced" => "Avancé", +"Data folder" => "Répertoire des données", "Configure the database" => "Configurer la base de données", "will be used" => "sera utilisé", "Database user" => "Utilisateur de la base de données", "Database password" => "Mot de passe de la base de données", "Database name" => "Nom de la base de données", -"Advanced" => "Avancé", "Database host" => "Serveur de la base de données", -"Data folder" => "Répertoire des données", "Finish setup" => "Terminer l'installation", -"gives you freedom and control over your own data" => "vous donne la liberté et le contrôle de vos propres données", +"web services under your control" => "services web sous votre contrôle", "Log out" => "Se déconnecter", "Settings" => "Paramètres", "Lost your password?" => "Mot de passe perdu ?", "remember" => "se souvenir de moi", +"Log in" => "Connexion", "You are logged out." => "Vous êtes désormais déconnecté.", -"You will receive a link to reset your password via Email." => "Vous allez recevoir un lien par email qui vous permettra de réinitialiser votre mot de passe.", -"Requested" => "Nécessaire", -"Login failed!" => "Échec de la connexion !", -"Username or Email" => "Nom d'utilisateur ou Email", -"Request reset" => "Demande de réinitialisation", "prev" => "précédent", -"next" => "suivant", -"Your password was reset" => "Votre mot de passe a été réinitialisé", -"New password" => "Nouveau mot de passe", -"Reset password" => "Réinitialisation du mot de passe" +"next" => "suivant" ); diff --git a/core/l10n/gl.php b/core/l10n/gl.php new file mode 100644 index 00000000000..4ac995756ca --- /dev/null +++ b/core/l10n/gl.php @@ -0,0 +1,39 @@ + "Restablecemento do contrasinal de Owncloud", +"Use the following link to reset your password: {link}" => "Use a seguinte ligazón para restablecer o contrasinal: {link}", +"You will receive a link to reset your password via Email." => "Recibirás unha ligazón por correo electrónico para restablecer o contrasinal", +"Requested" => "Solicitado", +"Login failed!" => "Fallou a conexión!", +"Username" => "Nome de usuario", +"Request reset" => "Petición de restablecemento", +"Your password was reset" => "O contrasinal foi restablecido", +"To login page" => "A páxina de conexión", +"New password" => "Novo contrasinal", +"Reset password" => "Restablecer contrasinal", +"Personal" => "Personal", +"Users" => "Usuarios", +"Apps" => "Aplicativos", +"Admin" => "Admin", +"Help" => "Axuda", +"Cloud not found" => "Nube non atopada", +"Create an admin account" => "Crear unha contra de administrador", +"Password" => "Contrasinal", +"Advanced" => "Avanzado", +"Data folder" => "Cartafol de datos", +"Configure the database" => "Configurar a base de datos", +"will be used" => "será utilizado", +"Database user" => "Usuario da base de datos", +"Database password" => "Contrasinal da base de datos", +"Database name" => "Nome da base de datos", +"Database host" => "Servidor da base de datos", +"Finish setup" => "Rematar configuración", +"web services under your control" => "servizos web baixo o seu control", +"Log out" => "Desconectar", +"Settings" => "Preferencias", +"Lost your password?" => "Perdéchelo contrasinal?", +"remember" => "lembrar", +"Log in" => "Conectar", +"You are logged out." => "Está desconectado", +"prev" => "anterior", +"next" => "seguinte" +); diff --git a/core/l10n/he.php b/core/l10n/he.php new file mode 100644 index 00000000000..f91d283118e --- /dev/null +++ b/core/l10n/he.php @@ -0,0 +1,34 @@ + "יישלח לתיבת הדוא״ל שלך קישור לאיפוס הססמה.", +"Requested" => "נדרש", +"Login failed!" => "הכניסה נכשלה!", +"Username" => "שם משתמש", +"Request reset" => "בקשת איפוס", +"Your password was reset" => "הססמה שלך אופסה", +"New password" => "ססמה חדשה", +"Reset password" => "איפוס ססמה", +"Personal" => "אישי", +"Users" => "משתמשים", +"Apps" => "יישומים", +"Admin" => "מנהל", +"Help" => "עזרה", +"Cloud not found" => "ענן לא נמצא", +"Create an admin account" => "יצירת חשבון מנהל", +"Password" => "ססמה", +"Advanced" => "מתקדם", +"Data folder" => "תיקיית נתונים", +"Configure the database" => "הגדרת מסד הנתונים", +"will be used" => "ינוצלו", +"Database user" => "שם משתמש במסד הנתונים", +"Database password" => "ססמת מסד הנתונים", +"Database name" => "שם מסד הנתונים", +"Database host" => "שרת בסיס נתונים", +"Finish setup" => "סיום התקנה", +"Log out" => "התנתקות", +"Settings" => "הגדרות", +"Lost your password?" => "שכחת את ססמתך?", +"remember" => "שמירת הססמה", +"You are logged out." => "אינך מחובר.", +"prev" => "קודם", +"next" => "הבא" +); diff --git a/core/l10n/hr.php b/core/l10n/hr.php new file mode 100644 index 00000000000..f129ca70608 --- /dev/null +++ b/core/l10n/hr.php @@ -0,0 +1,34 @@ + "Primit ćete link kako biste poništili zaporku putem e-maila.", +"Requested" => "Zahtijevano", +"Login failed!" => "Prijava nije uspjela!", +"Username" => "Korisničko ime", +"Request reset" => "Zahtjev za resetiranjem", +"Your password was reset" => "Vaša lozinka je resetirana", +"New password" => "nova lozinka", +"Reset password" => "poništavanje lozinke", +"Personal" => "Osobno", +"Users" => "korisnici", +"Apps" => "aplikacije", +"Admin" => "administrator", +"Help" => "pomoć", +"Cloud not found" => "Cloud nije pronađen", +"Create an admin account" => "stvoriti Administratorski račun", +"Password" => "Lozinka", +"Advanced" => "Dodatno", +"Data folder" => "Mapa baze podataka", +"Configure the database" => "konfigurirati baze podataka", +"will be used" => "će se koristiti", +"Database user" => "korisnik baze podataka", +"Database password" => "lozinka baze podataka", +"Database name" => "ime baze podataka", +"Database host" => "Poslužitelj baze podataka", +"Finish setup" => "završiti postavljanje", +"Log out" => "odjaviti", +"Settings" => "postavke", +"Lost your password?" => "Izgubili ste lozinku?", +"remember" => "zapamtiti", +"You are logged out." => "Vi ste odjavljeni.", +"prev" => "prethodan", +"next" => "sljedeći" +); diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php new file mode 100644 index 00000000000..9a3637de61e --- /dev/null +++ b/core/l10n/hu_HU.php @@ -0,0 +1,34 @@ + "Egy e-mailben kap értesítést a jelszóváltoztatás módjáról.", +"Requested" => "Kért", +"Login failed!" => "Belépés sikertelen!", +"Username" => "Felhasználói név", +"Your password was reset" => "Jelszó megváltoztatásra került", +"New password" => "Új jelszó", +"Reset password" => "Jelszó beállítás", +"Personal" => "Személyes", +"Users" => "Felhasználók", +"Apps" => "Alkalmazások", +"Admin" => "Adminisztráció", +"Help" => "Súgó", +"Cloud not found" => "Nem talált felhő", +"Create an admin account" => "Adminisztrációs fiók létrehozása", +"Password" => "Jelszó", +"Advanced" => "Fejlett", +"Data folder" => "Adat könyvtár", +"Configure the database" => "Adatbázis konfigurálása", +"will be used" => "használva lesz", +"Database user" => "Adatbázis felhasználó", +"Database password" => "Adatbázis jelszó", +"Database name" => "Adatbázis név", +"Database host" => "Adatbázis szerver", +"Finish setup" => "Beállítások befejezése", +"Log out" => "Kilépés", +"Settings" => "Beállítások", +"Lost your password?" => "Elfelejtett jelszó?", +"remember" => "emlékezni", +"Log in" => "Bejelentkezés", +"You are logged out." => "Kilépés sikerült.", +"prev" => "Előző", +"next" => "Következő" +); diff --git a/core/l10n/ia.php b/core/l10n/ia.php new file mode 100644 index 00000000000..2d41601d69a --- /dev/null +++ b/core/l10n/ia.php @@ -0,0 +1,27 @@ + "Requestate", +"Login failed!" => "Initio de session fallate!", +"Username" => "Nomine de usator", +"Request reset" => "Requestar reinitialisation", +"Your password was reset" => "Tu contrasigno esseva reinitialisate", +"New password" => "Nove contrasigno", +"Reset password" => "Reinitialisar contrasigno", +"Users" => "Usatores", +"Apps" => "Applicationes", +"Help" => "Adjuta", +"Cloud not found" => "Nube non trovate", +"Create an admin account" => "Crear un conto de administration", +"Password" => "Contrasigno", +"Advanced" => "Avantiate", +"Data folder" => "Dossier de datos", +"Configure the database" => "Configurar le base de datos", +"will be used" => "essera usate", +"Database user" => "Usator de base de datos", +"Database password" => "Contrasigno de base de datos", +"Database name" => "Nomine de base de datos", +"Log out" => "Clauder le session", +"Settings" => "Configurationes", +"remember" => "memora", +"prev" => "prev", +"next" => "prox" +); diff --git a/core/l10n/id.php b/core/l10n/id.php index 56221fafb96..eb20a4209c5 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -1,4 +1,5 @@ "Username", "Personal" => "Pribadi", "Users" => "Pengguna", "Apps" => "Aplikasi", @@ -6,31 +7,21 @@ "Help" => "Bantuan", "Cloud not found" => "Cloud tidak ditemukan", "Create an admin account" => "Buat sebuah akun admin", -"Username" => "Username", "Password" => "Password", +"Advanced" => "Tingkat Lanjut", +"Data folder" => "Folder data", "Configure the database" => "Konfigurasi database", "will be used" => "akan digunakan", "Database user" => "Pengguna database", "Database password" => "Password database", "Database name" => "Nama database", -"Advanced" => "Tingkat Lanjut", "Database host" => "Host database", -"Data folder" => "Folder data", "Finish setup" => "Selesaikan instalasi", -"gives you freedom and control over your own data" => "memberikan anda kebebasan dan kendali atas data anda sendiri", "Log out" => "Keluar", "Settings" => "Setelan", "Lost your password?" => "Lupa password anda?", "remember" => "selalu login", "You are logged out." => "Anda telah keluar.", -"You will receive a link to reset your password via Email." => "Anda akan menerima tautan untuk menset ulang password anda via Email.", -"Requested" => "Telah diminta", -"Login failed!" => "Gagal masuk!", -"Username or Email" => "Nama Pengguna atau Email", -"Request reset" => "Meminta set ulang", "prev" => "sebelum", -"next" => "selanjutnya", -"Your password was reset" => "Password anda telah diset ulang", -"New password" => "Password Baru", -"Reset password" => "Set Ulang Password" +"next" => "selanjutnya" ); diff --git a/core/l10n/it.php b/core/l10n/it.php index 1d743fa87ed..02b7cb81078 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -1,36 +1,39 @@ "Azzera la password di Owncloud", +"Use the following link to reset your password: {link}" => "Usa il link seguente per azzerare la password: {link}", +"You will receive a link to reset your password via Email." => "Riceverai un link per resettare la tua password via Email", +"Requested" => "Richiesto", +"Login failed!" => "Login fallito!", +"Username" => "Nome utente", +"Request reset" => "Richiesta di ripristino", +"Your password was reset" => "La password è stata reimpostata", +"To login page" => "Alla pagina di login", +"New password" => "Nuova password", +"Reset password" => "Reimposta password", "Personal" => "Personale", "Users" => "Utenti", "Apps" => "Applicazioni", "Admin" => "Admin", "Help" => "Aiuto", "Cloud not found" => "Cloud non trovata", -"Create an admin account" => "Crea un <strong>account amministratore</strong>", -"Username" => "Nome utente", +"Create an admin account" => "Crea un account amministratore", "Password" => "Password", +"Advanced" => "Opzioni avanzate", +"Data folder" => "Cartella dati", "Configure the database" => "Configura il database", "will be used" => "sarà usato", "Database user" => "Utente database", "Database password" => "Password database", "Database name" => "Nome database", -"Advanced" => "Opzioni avanzate", "Database host" => "Host del database", -"Data folder" => "Cartella dati", -"Finish setup" => "Termina", -"gives you freedom and control over your own data" => "Libertà e controllo dei propri dati", -"Log out" => "Log out", +"Finish setup" => "Termina Configurazione", +"web services under your control" => "servizi web nelle tue mani", +"Log out" => "Esci", "Settings" => "Impostazioni", -"Lost your password?" => "Password persa?", +"Lost your password?" => "Hai perso la password?", "remember" => "ricorda", +"Log in" => "Entra", "You are logged out." => "Sei uscito.", -"You will receive a link to reset your password via Email." => "Riceverai via email un link per il reset della tua password", -"Requested" => "Richiesto", -"Login failed!" => "Login fallito!", -"Username or Email" => "Username o email", -"Request reset" => "Reset richiesta", "prev" => "precedente", -"next" => "successivo", -"Your password was reset" => "tua password è stata resettata", -"New password" => "Nuova password", -"Reset password" => "Reset password" +"next" => "successivo" ); diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php new file mode 100644 index 00000000000..3584bf6732b --- /dev/null +++ b/core/l10n/ja_JP.php @@ -0,0 +1,39 @@ + "Owncloud のパスワードをリセット", +"Use the following link to reset your password: {link}" => "パスワードをリセットするには次のリンクをクリックして下さい: {link}", +"You will receive a link to reset your password via Email." => "パスワードをリセットするリンクがメールで届きます。", +"Requested" => "送信されました", +"Login failed!" => "ログインに失敗しました。", +"Username" => "ユーザ名", +"Request reset" => "リセットを要求する。", +"Your password was reset" => "あなたのパスワードはリセットされました。", +"To login page" => "ログインページへ戻る", +"New password" => "新しいパスワードを入力", +"Reset password" => "パスワードをリセット", +"Personal" => "個人設定", +"Users" => "ユーザ", +"Apps" => "アプリ", +"Admin" => "管理者", +"Help" => "ヘルプ", +"Cloud not found" => "見つけられません", +"Create an admin account" => "管理者アカウントを作成してください", +"Password" => "パスワード", +"Advanced" => "詳細設定", +"Data folder" => "データフォルダ", +"Configure the database" => "データベースを設定してください", +"will be used" => "が使用されます", +"Database user" => "データベースのユーザ名", +"Database password" => "データベースのパスワード", +"Database name" => "データベース名", +"Database host" => "データベースのホスト名", +"Finish setup" => "セットアップを完了します", +"web services under your control" => "管理下にあるウェブサービス", +"Log out" => "ログアウト", +"Settings" => "設定", +"Lost your password?" => "パスワードがわからなくなりましたか?", +"remember" => "パスワードを記憶する", +"Log in" => "ログイン", +"You are logged out." => "ログアウトしました。", +"prev" => "前", +"next" => "次" +); diff --git a/core/l10n/lb.php b/core/l10n/lb.php index 40bd86d6a3a..d663b6dc424 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -1,4 +1,12 @@ "Du kriss en Link fir däin Passwuert nei ze setzen via Email geschéckt.", +"Requested" => "Gefrot", +"Login failed!" => "Falschen Login!", +"Username" => "Benotzernumm", +"Request reset" => "Reset ufroen", +"Your password was reset" => "Dän Passwuert ass zeréck gesat gin", +"New password" => "Neit Passwuert", +"Reset password" => "Passwuert zeréck setzen", "Personal" => "Perséinlech", "Users" => "Benotzer", "Apps" => "Applicatiounen", @@ -6,31 +14,21 @@ "Help" => "Hëllef", "Cloud not found" => "Cloud net fonnt", "Create an admin account" => "En Admin Account uleeën", -"Username" => "Benotzernumm", "Password" => "Passwuert", +"Advanced" => "Erweidert", +"Data folder" => "Daten Dossier", "Configure the database" => "Datebank konfiguréieren", "will be used" => "wärt benotzt ginn", "Database user" => "Datebank Benotzer", "Database password" => "Datebank Passwuert", "Database name" => "Datebank Numm", -"Advanced" => "Erweidert", "Database host" => "Datebank Server", -"Data folder" => "Daten Dossier", "Finish setup" => "Installatioun ofschléissen", -"gives you freedom and control over your own data" => "gëtt dir Fräiheet an Kontroll iwwert deng eegen Daten", "Log out" => "Ausloggen", "Settings" => "Astellungen", "Lost your password?" => "Passwuert vergiess?", "remember" => "verhalen", "You are logged out." => "Du bass ausgeloggt.", -"You will receive a link to reset your password via Email." => "Du kriss per E-mail en Link geschéckt fir däin Passwuert nei ze setzen.", -"Requested" => "Verlaangt", -"Login failed!" => "Aloggen feelgeschloen!", -"Username or Email" => "Benotzernumm oder E-Mail", -"Request reset" => "Reset ufroen", "prev" => "zeréck", -"next" => "weider", -"Your password was reset" => "Dän Passwuert ass nei gesat ginn", -"New password" => "Neit Passwuert", -"Reset password" => "Passwuert nei setzen" +"next" => "weider" ); diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php new file mode 100644 index 00000000000..0d5306321c2 --- /dev/null +++ b/core/l10n/lt_LT.php @@ -0,0 +1,33 @@ + "Elektroniniu paštu gausite nuorodą, su kuria galėsite iš naujo nustatyti slaptažodį.", +"Requested" => "Užklausta", +"Login failed!" => "Prisijungti nepavyko!", +"Username" => "Prisijungimo vardas", +"Request reset" => "Prašyti nustatymo iš najo", +"Your password was reset" => "Jūsų slaptažodis buvo nustatytas iš naujo", +"New password" => "Naujas slaptažodis", +"Reset password" => "Atkurti slaptažodį", +"Personal" => "Asmeniniai", +"Users" => "Vartotojai", +"Apps" => "Programos", +"Admin" => "Administravimas", +"Help" => "Pagalba", +"Cloud not found" => "Negalima rasti", +"Create an admin account" => "Sukurti administratoriaus paskyrą", +"Password" => "Slaptažodis", +"Data folder" => "Duomenų katalogas", +"Configure the database" => "Nustatyti duomenų bazę", +"will be used" => "bus naudojama", +"Database user" => "Duomenų bazės vartotojas", +"Database password" => "Duomenų bazės slaptažodis", +"Database name" => "Duomenų bazės pavadinimas", +"Database host" => "Duomenų bazės serveris", +"Finish setup" => "Baigti diegimą", +"Log out" => "Atsijungti", +"Settings" => "Nustatymai", +"Lost your password?" => "Pamiršote slaptažodį?", +"remember" => "prisiminti", +"You are logged out." => "Jūs atsijungėte.", +"prev" => "atgal", +"next" => "kitas" +); diff --git a/core/l10n/ms_MY.php b/core/l10n/ms_MY.php index e7551a30bb8..b2e68c53658 100644 --- a/core/l10n/ms_MY.php +++ b/core/l10n/ms_MY.php @@ -1,4 +1,5 @@ "Nama pengguna", "Personal" => "Peribadi", "Users" => "Pengguna", "Apps" => "Aplikasi", @@ -6,31 +7,21 @@ "Help" => "Bantuan", "Cloud not found" => "Awan tidak dijumpai", "Create an admin account" => "buat akaun admin", -"Username" => "Nama pengguna", "Password" => "Kata laluan", +"Advanced" => "Maju", +"Data folder" => "Fail data", "Configure the database" => "Konfigurasi pangkalan data", "will be used" => "akan digunakan", "Database user" => "Nama pengguna pangkalan data", "Database password" => "Kata laluan pangkalan data", "Database name" => "Nama pangkalan data", -"Advanced" => "Maju", "Database host" => "Hos pangkalan data", -"Data folder" => "Fail data", "Finish setup" => "Setup selesai", -"gives you freedom and control over your own data" => "memberikan anda kebebasan dan kendalian keatas data anda", "Log out" => "Log keluar", "Settings" => "Tetapan", "Lost your password?" => "Hilang kata laluan?", "remember" => "ingat", "You are logged out." => "Anda telah log keluar.", -"You will receive a link to reset your password via Email." => "Anda akan menerima link untuk menetapkan semula kata laluan anda melalui emel", -"Requested" => "diminta", -"Login failed!" => "Log in gagal!", -"Username or Email" => "Nama pengguna atau Emel", -"Request reset" => "Minta set semula", "prev" => "sebelum", -"next" => "seterus", -"Your password was reset" => "Kata laluan anda diset semula", -"New password" => "Kata laluan baru", -"Reset password" => "Set semula kata laluan" +"next" => "seterus" ); diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index 07b176e4985..e276d570f69 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -1,4 +1,5 @@ "Brukernavn", "Personal" => "Personlig", "Users" => "Brukere", "Apps" => "Apper", @@ -6,21 +7,19 @@ "Help" => "Hjelp", "Cloud not found" => "Sky ikke funnet", "Create an admin account" => "opprett en administrator-konto", -"Username" => "Brukernavn", "Password" => "Passord", +"Advanced" => "Avansert", +"Data folder" => "Datamappe", "Configure the database" => "Konfigurer databasen", "will be used" => "vil bli brukt", "Database user" => "Databasebruker", "Database password" => "Databasepassord", "Database name" => "Databasenavn", -"Advanced" => "Avansert", -"Data folder" => "Datamappe", "Finish setup" => "Fullfør oppsetting", "Log out" => "Logg ut", "Settings" => "Innstillinger", "remember" => "husk", "You are logged out." => "Du er logget ut", -"Login failed!" => "Klarte ikke å logge inn!", "prev" => "forrige", "next" => "neste" ); diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 98ad267ff51..3d444c92604 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -1,4 +1,15 @@ "reset je Owncloud wachtwoord", +"Use the following link to reset your password: {link}" => "Gebruik de volgende link om je wachtwoord te resetten: {link}", +"You will receive a link to reset your password via Email." => "U ontvangt een link om je wachtwoord opnieuw in te stellen via e-mail.", +"Requested" => "Gevraagd", +"Login failed!" => "Login mislukt!", +"Username" => "Gebruikersnaam", +"Request reset" => "Resetaanvraag", +"Your password was reset" => "Je wachtwoord is geweizigd", +"To login page" => "Naar de login-pagina", +"New password" => "Nieuw wachtwoord", +"Reset password" => "Reset wachtwoord", "Personal" => "Persoonlijk", "Users" => "Gebruikers", "Apps" => "Apps", @@ -6,31 +17,23 @@ "Help" => "Help", "Cloud not found" => "Cloud niet gevonden", "Create an admin account" => "Maak een beheerdersaccount aan", -"Username" => "Gebruikersnaam", "Password" => "Wachtwoord", +"Advanced" => "Geavanceerd", +"Data folder" => "Gegevensmap", "Configure the database" => "Configureer de databank", "will be used" => "zal gebruikt worden", "Database user" => "Gebruiker databank", "Database password" => "Wachtwoord databank", "Database name" => "Naam databank", -"Advanced" => "Geavanceerd", "Database host" => "Database server", -"Data folder" => "Gegevensmap", "Finish setup" => "Installatie afronden", -"gives you freedom and control over your own data" => "geeft u vrijheid en controle over uw eigen data", +"web services under your control" => "webdiensten die je beheerst", "Log out" => "Afmelden", "Settings" => "Instellingen", "Lost your password?" => "Uw wachtwoord vergeten?", "remember" => "onthoud gegevens", +"Log in" => "Meld je aan", "You are logged out." => "U bent afgemeld.", -"You will receive a link to reset your password via Email." => "U ontvangt een link om uw wachtwoord te wijzigen via Email", -"Requested" => "Aangevraagd", -"Login failed!" => "Aanmelden mislukt!", -"Username or Email" => "Gebruikersnaam of Email", -"Request reset" => "Wachtwoordreset aanvragen", "prev" => "vorige", -"next" => "volgende", -"Your password was reset" => "Uw wachtwoord is opnieuw ingesteld", -"New password" => "Nieuw wachtwoord", -"Reset password" => "Reset wachtwoord" +"next" => "volgende" ); diff --git a/core/l10n/nn_NO.php b/core/l10n/nn_NO.php new file mode 100644 index 00000000000..c62302b3bc4 --- /dev/null +++ b/core/l10n/nn_NO.php @@ -0,0 +1,34 @@ + "Du vil få ei lenkje for å nullstilla passordet via epost.", +"Requested" => "Førespurt", +"Login failed!" => "Feil ved innlogging!", +"Username" => "Brukarnamn", +"Request reset" => "Be om nullstilling", +"Your password was reset" => "Passordet ditt er nullstilt", +"New password" => "Nytt passord", +"Reset password" => "Nullstill passord", +"Personal" => "Personleg", +"Users" => "Brukarar", +"Apps" => "Applikasjonar", +"Admin" => "Administrer", +"Help" => "Hjelp", +"Cloud not found" => "Fann ikkje skyen", +"Create an admin account" => "Lag ein admin-konto", +"Password" => "Passord", +"Advanced" => "Avansert", +"Data folder" => "Datamappe", +"Configure the database" => "Konfigurer databasen", +"will be used" => "vil bli nytta", +"Database user" => "Databasebrukar", +"Database password" => "Databasepassord", +"Database name" => "Databasenamn", +"Database host" => "Databasetenar", +"Finish setup" => "Fullfør oppsettet", +"Log out" => "Logg ut", +"Settings" => "Innstillingar", +"Lost your password?" => "Gløymt passordet?", +"remember" => "hugs", +"You are logged out." => "Du er logga ut.", +"prev" => "førre", +"next" => "neste" +); diff --git a/core/l10n/pl.php b/core/l10n/pl.php index b4d9fbe9248..d06bbf22154 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -1,4 +1,15 @@ "Resetowani hasła", +"Use the following link to reset your password: {link}" => "Użyj tego linku do zresetowania hasła: {link}", +"You will receive a link to reset your password via Email." => "Otrzymasz link do resetowania hasła poprzez e-mail.", +"Requested" => "Żądane", +"Login failed!" => "Logowanie nie powiodło się!", +"Username" => "Użytkownik", +"Request reset" => "Żądanie resetowania", +"Your password was reset" => "Twoje hasło zostało zresetowane", +"To login page" => "Do strony logowania", +"New password" => "Nowe hasło", +"Reset password" => "Zresetuj hasło", "Personal" => "Ustawienia osobiste", "Users" => "Użytkownicy", "Apps" => "Aplikacje", @@ -6,31 +17,23 @@ "Help" => "Pomoc", "Cloud not found" => "Konta nie znaleziono ", "Create an admin account" => "Stwórz jako konto administratora", -"Username" => "Użytkownik", "Password" => "Hasło", +"Advanced" => "Zaawansowane", +"Data folder" => "Katalog danych", "Configure the database" => "Konfiguracja bazy danych", "will be used" => "zostanie użyte", "Database user" => "Użytkownik bazy danych", "Database password" => "Hasło do bazy danych", "Database name" => "Nazwa bazy danych", -"Advanced" => "Zaawansowane", "Database host" => "Host bazy danych", -"Data folder" => "Katalog danych", "Finish setup" => "Zakończ instalację", -"gives you freedom and control over your own data" => "zapewnia Ci wolność i kontrolę nad własnymi danymi", +"web services under your control" => "usługi internetowe twoją pod kontrolą", "Log out" => "Wyloguj się", "Settings" => "Ustawienia", "Lost your password?" => "Nie pamiętasz hasła?", "remember" => "zapamiętaj", +"Log in" => "Zaloguj się", "You are logged out." => "Zostałeś wylogowany.", -"You will receive a link to reset your password via Email." => "Otrzymasz link do resetowania hasła poprzez e-mail.", -"Requested" => "Żądane", -"Login failed!" => "Nie udało się zalogować!", -"Username or Email" => "Użytkownik lub email", -"Request reset" => "Zresetuj hasło", "prev" => "wstecz", -"next" => "dalej", -"Your password was reset" => "Twoje hasło zostało zresetowane", -"New password" => "Nowe hasło", -"Reset password" => "Zresetuj hasło" +"next" => "dalej" ); diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 229d60f65c4..4f1a31ae3e7 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -1,4 +1,12 @@ "Você receberá um link para redefinir sua senha via e-mail.", +"Requested" => "Solicitado", +"Login failed!" => "Falha ao fazer o login!", +"Username" => "Nome de Usuário", +"Request reset" => "Pedido de reposição", +"Your password was reset" => "Sua senha foi mudada", +"New password" => "Nova senha", +"Reset password" => "Mudar senha", "Personal" => "Pessoal", "Users" => "Usuários", "Apps" => "Apps", @@ -6,31 +14,21 @@ "Help" => "Ajuda", "Cloud not found" => "Cloud não encontrado", "Create an admin account" => "Criar uma conta de administrador", -"Username" => "Nome de Usuário", "Password" => "Senha", +"Advanced" => "Avançado", +"Data folder" => "Pasta de dados", "Configure the database" => "Configurar o banco de dados", "will be used" => "será usado", "Database user" => "Usuário de banco de dados", "Database password" => "Senha do banco de dados", "Database name" => "Nome do banco de dados", -"Advanced" => "Avançado", "Database host" => "Banco de dados do host", -"Data folder" => "Pasta de dados", "Finish setup" => "Concluir configuração", -"gives you freedom and control over your own data" => "proporciona liberdade e controle sobre seus próprios dados", "Log out" => "Sair", "Settings" => "Configurações", "Lost your password?" => "Esqueçeu sua senha?", "remember" => "lembrete", "You are logged out." => "Você está desconectado.", -"You will receive a link to reset your password via Email." => "Você receberá um link para redefinir sua senha via e-mail.", -"Requested" => "Solicitado", -"Login failed!" => "Login sem sucesso", -"Username or Email" => "Nome de usuário ou e-mail", -"Request reset" => "Pedido de troca", "prev" => "anterior", -"next" => "próximo", -"Your password was reset" => "Sua senha foi trocada", -"New password" => "Nova senha", -"Reset password" => "Toca de senha" +"next" => "próximo" ); diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php new file mode 100644 index 00000000000..e41152bcbbc --- /dev/null +++ b/core/l10n/pt_PT.php @@ -0,0 +1,3 @@ + "Avançado" +); diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 8440c44d1d8..7a8b289de5a 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -1,4 +1,15 @@ "Resetare parolă Owncloud", +"Use the following link to reset your password: {link}" => "Folosiți următorul link pentru a reseta parola: {link}", +"You will receive a link to reset your password via Email." => "Veți primi la adresa de email un link prin care veți putea reseta parola", +"Requested" => "Cerută", +"Login failed!" => "Autentificare eșuată", +"Username" => "Utilizator", +"Request reset" => "Cerere trimisă", +"Your password was reset" => "Parola a fost resetată", +"To login page" => "Spre pagina de login", +"New password" => "Noua parolă", +"Reset password" => "Resetează parola", "Personal" => "Personal", "Users" => "Utilizatori", "Apps" => "Aplicații", @@ -6,31 +17,23 @@ "Help" => "Ajutor", "Cloud not found" => "Nu s-a găsit", "Create an admin account" => "Crează un cont de administrator", -"Username" => "Utilizator", "Password" => "Parola", +"Advanced" => "Avansat", +"Data folder" => "Directorul cu date", "Configure the database" => "Configurează baza de date", "will be used" => "vor fi folosite", "Database user" => "Utilizatorul bazei de date", "Database password" => "Parola bazei de date", "Database name" => "Numele bazei de date", -"Advanced" => "Avansat", "Database host" => "Baza de date", -"Data folder" => "Directorul cu date", "Finish setup" => "Finalizează instalarea", -"gives you freedom and control over your own data" => "îți oferă libertatea de a-ți controla datele", +"web services under your control" => "Servicii web sub controlul tău", "Log out" => "Ieșire", "Settings" => "Setări", "Lost your password?" => "Ai uitat parola?", "remember" => "ține minte", +"Log in" => "Autentificare", "You are logged out." => "Ai ieșit", -"You will receive a link to reset your password via Email." => "Vei primi prin email un link pentru resetarea parolei", -"Requested" => "Cerută", -"Login failed!" => "Autentificare eșuată!", -"Username or Email" => "Utilizator sau email", -"Request reset" => "Cere schimbarea parolei", "prev" => "precedentul", -"next" => "următorul", -"Your password was reset" => "Parola a fost schimbată", -"New password" => "Parola nouă", -"Reset password" => "Schimbă parola" +"next" => "următorul" ); diff --git a/core/l10n/ru.php b/core/l10n/ru.php index 45f0f4aef9d..0fe8c079f27 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -1,4 +1,15 @@ "Сброс пароля OwnCloud", +"Use the following link to reset your password: {link}" => "Используйте следующую ссылку чтобы сбросить пароль: {link}", +"You will receive a link to reset your password via Email." => "На ваш адрес Email выслана ссылка для сброса пароля.", +"Requested" => "Запрошено", +"Login failed!" => "Не удалось войти!", +"Username" => "Имя пользователя", +"Request reset" => "Запросить сброс", +"Your password was reset" => "Ваш пароль был сброшен", +"To login page" => "На страницу авторизации", +"New password" => "Новый пароль", +"Reset password" => "Сбросить пароль", "Personal" => "Личное", "Users" => "Пользователи", "Apps" => "Приложения", @@ -6,31 +17,23 @@ "Help" => "Помощь", "Cloud not found" => "Облако не найдено", "Create an admin account" => "Создать учётную запись администратора", -"Username" => "Имя пользователя", "Password" => "Пароль", +"Advanced" => "Дополнительно", +"Data folder" => "Директория с данными", "Configure the database" => "Настройка базы данных", "will be used" => "будет использовано", "Database user" => "Имя пользователя для базы данных", "Database password" => "Пароль для базы данных", "Database name" => "Название базы данных", -"Advanced" => "Дополнительно", "Database host" => "Хост базы данных", -"Data folder" => "Директория с данными", "Finish setup" => "Завершить установку", -"gives you freedom and control over your own data" => "даёт Вам свободу и контроль над Вашими данными", +"web services under your control" => "Сетевые службы под твоим контролем", "Log out" => "Выйти", "Settings" => "Настройки", "Lost your password?" => "Забыли пароль?", "remember" => "запомнить", +"Log in" => "Войти", "You are logged out." => "Вы вышли.", -"You will receive a link to reset your password via Email." => "Вы получите ссылку для сброса пароля на Ваш e-mail.", -"Requested" => "Запрошено", -"Login failed!" => "Войти не удалось!", -"Username or Email" => "Имя пользователя или e-mail", -"Request reset" => "Запросить сброс", "prev" => "пред", -"next" => "след", -"Your password was reset" => "Пароль был сброшен", -"New password" => "Новый пароль", -"Reset password" => "Сбросить пароль" +"next" => "след" ); diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php new file mode 100644 index 00000000000..11ad408b8e5 --- /dev/null +++ b/core/l10n/sk_SK.php @@ -0,0 +1,39 @@ + "Obnova Owncloud hesla", +"Use the following link to reset your password: {link}" => "Použite nasledujúci odkaz pre obnovenie vášho hesla: {link}", +"You will receive a link to reset your password via Email." => "Odkaz pre obnovenie hesla obdržíte E-mailom.", +"Requested" => "Požiadané", +"Login failed!" => "Prihlásenie zlyhalo!", +"Username" => "Prihlasovacie meno", +"Request reset" => "Požiadať o obnovenie", +"Your password was reset" => "Vaše heslo bolo obnovené", +"To login page" => "Na prihlasovaciu stránku", +"New password" => "Nové heslo", +"Reset password" => "Obnova hesla", +"Personal" => "Osobné", +"Users" => "Používatelia", +"Apps" => "Aplikácie", +"Admin" => "Administrácia", +"Help" => "Pomoc", +"Cloud not found" => "Nedokážem nájsť", +"Create an admin account" => "Vytvoriť administrátorský účet", +"Password" => "Heslo", +"Advanced" => "Pokročilé", +"Data folder" => "Priečinok dát", +"Configure the database" => "Nastaviť databázu", +"will be used" => "bude použité", +"Database user" => "Hostiteľ databázy", +"Database password" => "Heslo databázy", +"Database name" => "Meno databázy", +"Database host" => "Server databázy", +"Finish setup" => "Dokončiť inštaláciu", +"web services under your control" => "webové služby pod vašou kontrolou", +"Log out" => "Odhlásiť", +"Settings" => "Nastavenia", +"Lost your password?" => "Zabudli ste heslo?", +"remember" => "zapamätať", +"Log in" => "Prihlásiť sa", +"You are logged out." => "Ste odhlásený.", +"prev" => "späť", +"next" => "ďalej" +); diff --git a/core/l10n/sl.php b/core/l10n/sl.php new file mode 100644 index 00000000000..62d5412a22a --- /dev/null +++ b/core/l10n/sl.php @@ -0,0 +1,34 @@ + "Preko email sporočila boste prejeli povezavo s katero lahko ponovno nastavite geslo", +"Requested" => "Zahtevano", +"Login failed!" => "Prijava ni Uspela!", +"Username" => "Uporabniško Ime", +"Request reset" => "Zahtevaj ponastavitev", +"Your password was reset" => "Vaše geslo je bilo ponastavljeno", +"New password" => "novo geslo", +"Reset password" => "Ponastavi Geslo", +"Personal" => "Osebno", +"Users" => "Uporabniki", +"Apps" => "Apps", +"Admin" => "Admin", +"Help" => "Pomoč", +"Cloud not found" => "Ni najdeno", +"Create an admin account" => "Ustvari admin račun", +"Password" => "Geslo", +"Advanced" => "Napredno", +"Data folder" => "Data Mapa", +"Configure the database" => "Nastavi Podatkovno Bazo", +"will be used" => "Bo uporabljeno", +"Database user" => "Podatkovna Baza Uporabnik", +"Database password" => "Podatkovna Baza Geslo", +"Database name" => "Ime Podatkovne Baze", +"Database host" => "Database host", +"Finish setup" => "Končaj instalacijo", +"Log out" => "Odjava", +"Settings" => "Nastavitve", +"Lost your password?" => "Ste pozabili vaše geslo?", +"remember" => "zapomni", +"You are logged out." => "Odjavljeni ste", +"prev" => "nazaj", +"next" => "naprej" +); diff --git a/core/l10n/sr.php b/core/l10n/sr.php index 0fd43c7b0a4..6bd6275df4b 100644 --- a/core/l10n/sr.php +++ b/core/l10n/sr.php @@ -1,4 +1,15 @@ "Ресетовање лозинке за Оунклауд", +"Use the following link to reset your password: {link}" => "Овом везом ресетујте своју лозинку: {link}", +"You will receive a link to reset your password via Email." => "Добићете везу за ресетовање лозинке путем е-поште.", +"Requested" => "Захтевано", +"Login failed!" => "Несупела пријава!", +"Username" => "Корисничко име", +"Request reset" => "Захтевај ресетовање", +"Your password was reset" => "Ваша лозинка је ресетована", +"To login page" => "На страницу за пријаву", +"New password" => "Нова лозинка", +"Reset password" => "Ресетуј лозинку", "Personal" => "Лична", "Users" => "Корисници", "Apps" => "Програми", @@ -6,31 +17,23 @@ "Help" => "Помоћ", "Cloud not found" => "Облак није нађен", "Create an admin account" => "Направи административни налог", -"Username" => "Корисничко име", "Password" => "Лозинка", +"Advanced" => "Напредно", +"Data folder" => "Фацикла података", "Configure the database" => "Подешавање базе", "will be used" => "ће бити коришћен", "Database user" => "Корисник базе", "Database password" => "Лозинка базе", "Database name" => "Име базе", -"Advanced" => "Напредно", "Database host" => "Домаћин базе", -"Data folder" => "Фацикла података", "Finish setup" => "Заврши подешавање", -"gives you freedom and control over your own data" => "вам даје слободу и контролу над вашим подацима", +"web services under your control" => "веб сервиси под контролом", "Log out" => "Одјава", "Settings" => "Подешавања", "Lost your password?" => "Изгубили сте лозинку?", "remember" => "упамти", +"Log in" => "Пријава", "You are logged out." => "Одјављени сте.", -"You will receive a link to reset your password via Email." => "Добићете везу за ресетовање лозинке путем е-поште.", -"Requested" => "Захтев послат", -"Login failed!" => "Неуспешно пријављивање!", -"Username or Email" => "Корисничко име или адреса е-поште", -"Request reset" => "Захтев за ресетовање", "prev" => "претходно", -"next" => "следеће", -"Your password was reset" => "Ваша лозинка је ресетована", -"New password" => "Нова лозинка", -"Reset password" => "Ресетуј лозинку" +"next" => "следеће" ); diff --git a/core/l10n/sr@latin.php b/core/l10n/sr@latin.php index f8565f6ee4e..e240de011ee 100644 --- a/core/l10n/sr@latin.php +++ b/core/l10n/sr@latin.php @@ -1,4 +1,12 @@ "Dobićete vezu za resetovanje lozinke putem e-pošte.", +"Requested" => "Zahtevano", +"Login failed!" => "Nesupela prijava!", +"Username" => "Korisničko ime", +"Request reset" => "Zahtevaj resetovanje", +"Your password was reset" => "Vaša lozinka je resetovana", +"New password" => "Nova lozinka", +"Reset password" => "Resetuj lozinku", "Personal" => "Lična", "Users" => "Korisnici", "Apps" => "Programi", @@ -6,31 +14,21 @@ "Help" => "Pomoć", "Cloud not found" => "Oblak nije nađen", "Create an admin account" => "Napravi administrativni nalog", -"Username" => "Korisničko ime", "Password" => "Lozinka", +"Advanced" => "Napredno", +"Data folder" => "Facikla podataka", "Configure the database" => "Podešavanje baze", "will be used" => "će biti korišćen", "Database user" => "Korisnik baze", "Database password" => "Lozinka baze", "Database name" => "Ime baze", -"Advanced" => "Napredno", "Database host" => "Domaćin baze", -"Data folder" => "Facikla podataka", "Finish setup" => "Završi podešavanje", -"gives you freedom and control over your own data" => "vam daje slobodu i kontrolu nad vašim podacima", "Log out" => "Odjava", "Settings" => "Podešavanja", "Lost your password?" => "Izgubili ste lozinku?", "remember" => "upamti", "You are logged out." => "Odjavljeni ste.", -"You will receive a link to reset your password via Email." => "Dobićete vezu za resetovanje lozinke putem e-pošte.", -"Requested" => "Zahtev poslat", -"Login failed!" => "Neuspešno prijavljivanje!", -"Username or Email" => "Korisničko ime ili adresa e-pošte", -"Request reset" => "Zahtev za resetovanje", "prev" => "prethodno", -"next" => "sledeće", -"Your password was reset" => "Vaša lozinka je resetovana", -"New password" => "Nova lozinka", -"Reset password" => "Resetuj lozinku" +"next" => "sledeće" ); diff --git a/core/l10n/sv.php b/core/l10n/sv.php index d7e1c240378..2b4bb2b9511 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -1,4 +1,12 @@ "Du får en länk att återställa ditt lösenord via e-post.", +"Requested" => "Begärd", +"Login failed!" => "Inloggning misslyckades!", +"Username" => "Användarnamn", +"Request reset" => "Begär återställning", +"Your password was reset" => "Ditt lösenord har återställts", +"New password" => "Nytt lösenord", +"Reset password" => "Återställ lösenordet", "Personal" => "Personlig", "Users" => "Användare", "Apps" => "Program", @@ -6,31 +14,21 @@ "Help" => "Hjälp", "Cloud not found" => "Hittade inget moln", "Create an admin account" => "Skapa ett administratörskonto", -"Username" => "Användarnamn", "Password" => "Lösenord", +"Advanced" => "Avancerat", +"Data folder" => "Datamapp", "Configure the database" => "Konfigurera databasen", "will be used" => "kommer att användas", "Database user" => "Databas-användare", "Database password" => "Lösenord för databasen", "Database name" => "Databasens namn", -"Advanced" => "Avancerat", "Database host" => "Databasserver", -"Data folder" => "Datamapp", "Finish setup" => "Avsluta installation", -"gives you freedom and control over your own data" => "ger dig frihet och kontroll över din egen data", "Log out" => "Logga ut", "Settings" => "Inställningar", -"Lost your password?" => "Tappat bort ditt lösenord?", +"Lost your password?" => "Glömt ditt lösenord?", "remember" => "kom ihåg", "You are logged out." => "Du är utloggad", -"You will receive a link to reset your password via Email." => "Du kommer få en länk, via e-post, där du kan återställ ditt lösenord", -"Requested" => "Begärd", -"Login failed!" => "Inloggning misslyckades!", -"Username or Email" => "Användarnamn eller e-post", -"Request reset" => "Begär återställning", "prev" => "föregående", -"next" => "nästa", -"Your password was reset" => "Ditt lösenord har återställts", -"New password" => "Nytt lösenord", -"Reset password" => "Återställ lösenord" +"next" => "nästa" ); diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php new file mode 100644 index 00000000000..1774d840040 --- /dev/null +++ b/core/l10n/th_TH.php @@ -0,0 +1,39 @@ + "เปลี่ยนรหัสผ่านใน Owncloud", +"Use the following link to reset your password: {link}" => "ใช้ลิงค์ต่อไปนี้เพื่อเปลี่ยนรหัสผ่านของคุณใหม่: {link}", +"You will receive a link to reset your password via Email." => "คุณจะได้รับลิงค์เพื่อกำหนดรหัสผ่านใหม่ทางอีเมล์", +"Requested" => "ส่งคำร้องเรียบร้อยแล้ว", +"Login failed!" => "ไม่สามารถเข้าสู่ระบบได้!", +"Username" => "ชื่อผู้ใช้งาน", +"Request reset" => "ขอเปลี่ยนรหัสใหม่", +"Your password was reset" => "รหัสผ่านของคุณถูกเปลี่ยนเรียบร้อยแล้ว", +"To login page" => "ไปที่หน้าเข้าสู่ระบบ", +"New password" => "รหัสผ่านใหม่", +"Reset password" => "เปลี่ยนรหัสผ่าน", +"Personal" => "ส่วนตัว", +"Users" => "ผู้ใช้งาน", +"Apps" => "Apps", +"Admin" => "ผู้ดูแลระบบ", +"Help" => "ช่วยเหลือ", +"Cloud not found" => "ไม่พบ Cloud", +"Create an admin account" => "สร้าง บัญชีผู้ดูแลระบบ", +"Password" => "รหัสผ่าน", +"Advanced" => "ขั้นสูง", +"Data folder" => "โฟลเดอร์เก็บข้อมูล", +"Configure the database" => "กำหนดค่าฐานข้อมูล", +"will be used" => "จะถูกใช้", +"Database user" => "ชื่อผู้ใช้งานฐานข้อมูล", +"Database password" => "รหัสผ่านฐานข้อมูล", +"Database name" => "ชื่อฐานข้อมูล", +"Database host" => "Database host", +"Finish setup" => "ติดตั้งเรียบร้อยแล้ว", +"web services under your control" => "web services under your control", +"Log out" => "ออกจากระบบ", +"Settings" => "ตั้งค่า", +"Lost your password?" => "ลืมรหัสผ่าน?", +"remember" => "จำรหัสผ่าน", +"Log in" => "เข้าสู่ระบบ", +"You are logged out." => "คุณออกจากระบบเรียบร้อยแล้ว", +"prev" => "ก่อนหน้า", +"next" => "ถัดไป" +); diff --git a/core/l10n/tr.php b/core/l10n/tr.php new file mode 100644 index 00000000000..100fa9960cb --- /dev/null +++ b/core/l10n/tr.php @@ -0,0 +1,34 @@ + "Parolanızı sıfırlamak için bir bağlantı Eposta olarak gönderilecek.", +"Requested" => "İstendi", +"Login failed!" => "Giriş başarısız!", +"Username" => "Kullanıcı adı", +"Request reset" => "Sıfırlama iste", +"Your password was reset" => "Parolanız sıfırlandı", +"New password" => "Yeni parola", +"Reset password" => "Parolayı sıfırla", +"Personal" => "Kişisel", +"Users" => "Kullanıcılar", +"Apps" => "Uygulamalar", +"Admin" => "Yönetici", +"Help" => "Yardı", +"Cloud not found" => "Bulut bulunamadı", +"Create an admin account" => "Bir yönetici hesabı oluşturun", +"Password" => "Parola", +"Advanced" => "Gelişmiş", +"Data folder" => "Veri klasörü", +"Configure the database" => "Veritabanını ayarla", +"will be used" => "kullanılacak", +"Database user" => "Veritabanı kullanıcı adı", +"Database password" => "Veritabanı parolası", +"Database name" => "Veritabanı adı", +"Database host" => "Veritabanı sunucusu", +"Finish setup" => "Kurulumu tamamla", +"Log out" => "Çıkış yap", +"Settings" => "Ayarlar", +"Lost your password?" => "Parolanızı mı unuttunuz?", +"remember" => "hatırla", +"You are logged out." => "Çıkış yaptınız.", +"prev" => "önceki", +"next" => "sonraki" +); diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 4c9f197346c..8a3daa097f3 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -1,4 +1,15 @@ "重置 Owncloud 密码", +"Use the following link to reset your password: {link}" => "使用以下链接重置您的密码:{link}", +"You will receive a link to reset your password via Email." => "您将会收到包含可以重置密码链接的邮件。", +"Requested" => "已请求", +"Login failed!" => "登录失败!", +"Username" => "用户名", +"Request reset" => "请求重置", +"Your password was reset" => "您的密码已重置", +"To login page" => "到登录页面", +"New password" => "新密码", +"Reset password" => "重置密码", "Personal" => "个人", "Users" => "用户", "Apps" => "应用", @@ -6,31 +17,23 @@ "Help" => "帮助", "Cloud not found" => "未找到云", "Create an admin account" => "创建管理员账号", -"Username" => "用户名", "Password" => "密码", +"Advanced" => "高级", +"Data folder" => "数据目录", "Configure the database" => "配置数据库", "will be used" => "将被使用", "Database user" => "数据库用户", "Database password" => "数据库密码", "Database name" => "数据库名", -"Advanced" => "高级", "Database host" => "数据库主机", -"Data folder" => "数据目录", "Finish setup" => "安装完成", -"gives you freedom and control over your own data" => "自由掌控您的数据", +"web services under your control" => "由您掌控的网络服务", "Log out" => "注销", "Settings" => "设置", "Lost your password?" => "忘记密码?", "remember" => "记住", +"Log in" => "登录", "You are logged out." => "您已注销。", -"You will receive a link to reset your password via Email." => "您将通过邮件收到一个用于重置密码的链接", -"Requested" => "请求已发送", -"Login failed!" => "登陆失败!", -"Username or Email" => "用户名或电子邮件", -"Request reset" => "请求重置", "prev" => "上一页", -"next" => "下一页", -"Your password was reset" => "您的密码已重置", -"New password" => "新密码", -"Reset password" => "重置密码" +"next" => "下一页" ); diff --git a/core/lostpassword/index.php b/core/lostpassword/index.php index de0d393ec78..ede94dab2d7 100644 --- a/core/lostpassword/index.php +++ b/core/lostpassword/index.php @@ -14,7 +14,7 @@ if (isset($_POST['user'])) { if (OC_User::userExists($_POST['user'])) { $token = sha1($_POST['user']+uniqId()); OC_Preferences::setValue($_POST['user'], 'owncloud', 'lostpassword', $token); - $email = OC_Preferences::getValue($_POST['user'], 'lostpassword', 'email', ''); + $email = OC_Preferences::getValue($_POST['user'], 'settings', 'email', ''); if (!empty($email)) { $link = OC_Helper::linkTo('core/lostpassword', 'resetpassword.php', null, true).'?user='.$_POST['user'].'&token='.$token; $tmpl = new OC_Template('core/lostpassword', 'email'); diff --git a/core/templates/installation.php b/core/templates/installation.php index f1cde6b3904..4558f97bc08 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -1,3 +1,6 @@ +'> +'> +'>
    diff --git a/files/ajax/delete.php b/files/ajax/delete.php index 48df5862db2..1725201fdd9 100644 --- a/files/ajax/delete.php +++ b/files/ajax/delete.php @@ -6,8 +6,8 @@ require_once('../../lib/base.php'); OC_JSON::checkLoggedIn(); // Get data -$dir = $_GET["dir"]; -$files = isset($_GET["file"]) ? $_GET["file"] : $_GET["files"]; +$dir = stripslashes($_GET["dir"]); +$files = isset($_GET["file"]) ? stripslashes($_GET["file"]) : stripslashes($_GET["files"]); $files = explode(';', $files); $filesWithError = ''; diff --git a/files/ajax/mimeicon.php b/files/ajax/mimeicon.php new file mode 100644 index 00000000000..8724016b3a1 --- /dev/null +++ b/files/ajax/mimeicon.php @@ -0,0 +1,8 @@ + diff --git a/files/ajax/move.php b/files/ajax/move.php index 8a56a015486..9af3f80208f 100644 --- a/files/ajax/move.php +++ b/files/ajax/move.php @@ -6,15 +6,15 @@ require_once('../../lib/base.php'); OC_JSON::checkLoggedIn(); // Get data -$dir = $_GET["dir"]; -$file = $_GET["file"]; -$target = $_GET["target"]; +$dir = stripslashes($_GET["dir"]); +$file = stripslashes($_GET["file"]); +$target = stripslashes($_GET["target"]); if(OC_Files::move($dir,$file,$target,$file)){ OC_JSON::success(array("data" => array( "dir" => $dir, "files" => $file ))); }else{ - OC_JSON::error(array("data" => array( "message" => "Could move $file" ))); + OC_JSON::error(array("data" => array( "message" => "Could not move $file" ))); } ?> diff --git a/files/ajax/newfile.php b/files/ajax/newfile.php new file mode 100644 index 00000000000..afc444bc0ac --- /dev/null +++ b/files/ajax/newfile.php @@ -0,0 +1,27 @@ + array( "message" => "Empty Filename" ))); + exit(); +} + +if(OC_Files::newFile($dir, $filename, 'file')) { + if($content){ + OC_Filesystem::file_put_contents($dir.'/'.$filename,$content); + } + OC_JSON::success(array("data" => array('content'=>$content))); + exit(); +} + + +OC_JSON::error(array("data" => array( "message" => "Error when creating the file" ))); diff --git a/files/ajax/newfolder.php b/files/ajax/newfolder.php index 43d87461fc7..6db045c4e17 100644 --- a/files/ajax/newfolder.php +++ b/files/ajax/newfolder.php @@ -6,15 +6,15 @@ require_once('../../lib/base.php'); OC_JSON::checkLoggedIn(); // Get the params -$dir = isset( $_GET['dir'] ) ? $_GET['dir'] : ''; -$foldername = isset( $_GET['foldername'] ) ? $_GET['foldername'] : ''; +$dir = isset( $_GET['dir'] ) ? stripslashes($_GET['dir']) : ''; +$foldername = isset( $_GET['foldername'] ) ? stripslashes($_GET['foldername']) : ''; -if($foldername == '') { +if(trim($foldername) == '') { OC_JSON::error(array("data" => array( "message" => "Empty Foldername" ))); exit(); } -if(defined("DEBUG") && DEBUG) {error_log('try to create ' . $foldername . ' in ' . $dir);} -if(OC_Files::newFile($dir, $foldername, 'dir')) { + +if(OC_Files::newFile($dir, stripslashes($foldername), 'dir')) { OC_JSON::success(array("data" => array())); exit(); } diff --git a/files/ajax/rename.php b/files/ajax/rename.php index 87ffbc3ada0..a51b36635b3 100644 --- a/files/ajax/rename.php +++ b/files/ajax/rename.php @@ -6,9 +6,9 @@ require_once('../../lib/base.php'); OC_JSON::checkLoggedIn(); // Get data -$dir = $_GET["dir"]; -$file = $_GET["file"]; -$newname = $_GET["newname"]; +$dir = stripslashes($_GET["dir"]); +$file = stripslashes($_GET["file"]); +$newname = stripslashes($_GET["newname"]); // Delete if( OC_Files::move( $dir, $file, $dir, $newname )) { diff --git a/files/ajax/upload.php b/files/ajax/upload.php index 041ec0c92e3..5f0f68d9531 100644 --- a/files/ajax/upload.php +++ b/files/ajax/upload.php @@ -14,9 +14,10 @@ if (!isset($_FILES['files'])) { } foreach ($_FILES['files']['error'] as $error) { if ($error != 0) { + $l=new OC_L10N('files'); $errors = array( 0=>$l->t("There is no error, the file uploaded with success"), - 1=>$l->t("The uploaded file exceeds the upload_max_filesize directive in php.ini"), + 1=>$l->t("The uploaded file exceeds the upload_max_filesize directive in php.ini").ini_get('upload_max_filesize'), 2=>$l->t("The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form"), 3=>$l->t("The uploaded file was only partially uploaded"), 4=>$l->t("No file was uploaded"), diff --git a/files/appinfo/app.php b/files/appinfo/app.php index e8b2f0c3169..e434296b250 100644 --- a/files/appinfo/app.php +++ b/files/appinfo/app.php @@ -1,5 +1,6 @@ 2, "id" => "files", "name" => "Files" )); diff --git a/files/css/files.css b/files/css/files.css index 1007554cdd6..6c4d603b4a6 100644 --- a/files/css/files.css +++ b/files/css/files.css @@ -3,15 +3,22 @@ See the COPYING-README file. */ /* FILE MENU */ -.actions { padding:.3em; float:left; } -.actions input { margin:0; } +.actions { padding:.3em; float:left; height:2em; } +.actions input, .actions button, .actions .button { margin:0; } #file_menu { right:0; position:absolute; top:0; } #file_menu a { display:block; float:left; background-image:none; text-decoration:none; } -.file_upload_form, #file_newfolder_form { display:inline; float: left; margin-left:.5em; } +.file_upload_form, #file_newfolder_form { display:inline; float: left; margin-left:0; } #fileSelector, #file_upload_submit, #file_newfolder_submit { display:none; } .file_upload_wrapper, #file_newfolder_name { background-repeat:no-repeat; background-position:.5em .5em; padding-left:2em; } -.file_upload_wrapper { font-weight:bold; display:-moz-inline-box; /* fallback for older firefox versions*/ display:inline-block; padding-left:0; overflow:hidden; position:relative; margin:.1em .1em .1em 0em;} +.file_upload_wrapper { font-weight:bold; display:-moz-inline-box; /* fallback for older firefox versions*/ display:inline-block; padding-left:0; overflow:hidden; position:relative; margin:0;} .file_upload_wrapper .file_upload_button_wrapper { position:absolute; top:0; left:0; width:100%; height:100%; cursor:pointer; z-index:1000; } +#new { float:left; border-top-right-radius:0; border-bottom-right-radius:0; margin:0 0 0 1em; border-right:none; z-index:1010; height:1.3em; } +#new.active { border-bottom-left-radius:0; border-bottom:none; background:#f8f8f8 } +#new>a{ padding-left:1em; padding-right:1em; } +#new>ul { display:none; position:fixed; text-align:left; padding:.5em; background:#f8f8f8; margin-top:0.075em; border:1px solid #ddd; min-width:7em; margin-left:-.5em; z-index:-1; } +#new>ul>li { margin:.3em; padding-left:2em; background-repeat:no-repeat; cursor:pointer; padding-bottom:0.1em } +#new>ul>li>p { cursor:pointer; } +#new>ul>li>input { padding:0.3em; margin:-0.3em; } #file_newfolder_name { background-image:url('../../core/img/places/folder.svg'); font-weight:normal; width:7em; } .file_upload_start, .file_upload_filename { font-size:1em; } @@ -19,7 +26,9 @@ .file_upload_target { display:none; } .file_upload_start { opacity:0; filter:alpha(opacity=0); z-index:1; position:absolute; left:0; top:0; width:100%; cursor:pointer;} -.file_upload_filename { z-index:100; cursor:pointer;} +.file_upload_filename.active { border-bottom-right-radius:0 } +.file_upload_filename { z-index:100; cursor:pointer; border-top-left-radius:0; border-bottom-left-radius:0; padding:.3em; } + .file_upload_form, .file_upload_wrapper, .file_upload_start, .file_upload_filename, #file_upload_submit { cursor:pointer; } @@ -27,6 +36,7 @@ #emptyfolder { position:absolute; margin:10em 0 0 10em; font-size:1.5em; font-weight:bold; color:#888; text-shadow:#fff 0 1px 0; } table { position:relative; top:37px; width:100%; } tbody tr:hover, tbody tr:active, tbody tr.selected { background-color:#f8f8f8; height:1em; } +tbody tr { background-color:#fff; } tbody tr.selected { background-color:#eee; } tbody a { color:#000; } span.extention, td.date { color:#999; } @@ -34,7 +44,7 @@ span.extention { opacity:0; -webkit-transition:opacity 500ms; -moz-transition:op tr:hover span.extention { opacity:1; } div.crumb { float:left; display:block; background:no-repeat right 0; padding:.75em 1.5em 0 1em; height:2.9em; } div.crumb:first-child { padding-left:1em; } -div.crumb:last-child { font-weight:bold; } +div.crumb.last { font-weight:bold; } table tr.mouseOver td { background-color:#eee; } table th { height:2em; padding:0 .5em; color:#999; } table th .name { float:left; margin-left:.5em; } @@ -54,12 +64,13 @@ table td.filename form { float:left; font-size:.85em; } table thead.fixed tr{ position:fixed; top:6.5em; z-index:49; -moz-box-shadow:0 -3px 7px #ddd; -webkit-box-shadow:0 -3px 7px #ddd; box-shadow:0 -3px 7px #ddd; } table thead.fixed { height:2em; } #fileList tr td.filename>input[type=checkbox]:first-child { opacity:0; float:left; margin:.7em 0 0 1em; /* bigger clickable area doesn’t work in FF width:2.8em; height:2.4em;*/ -webkit-transition:opacity 500ms; -moz-transition:opacity 500ms; -o-transition:opacity 500ms; transition:opacity 500ms; } -#fileList tr:hover td.filename>input[type="checkbox"]:first-child { opacity:.8; } +#fileList tr td.filename>input[type="checkbox"]:hover:first-child { opacity:.8; } #fileList tr td.filename>input[type="checkbox"]:checked:first-child { opacity:1; } #fileList tr td.filename { -webkit-transition:background-image 500ms; -moz-transition:background-image 500ms; -o-transition:background-image 500ms; transition:background-image 500ms; } #select_all { float:left; margin:.3em 0.6em 0 .5em; } #uploadsize-message,#delete-confirm { display:none; } .selectedActions a,#fileList a.action { float:right; display:inline; margin:0 .5em; padding:.3em .3em 0 .3em !important; } +a.action>img{ max-height:16px; max-width:16px; } .selectedActions { display:none; } /* add breadcrumb divider to the File item in navigation panel */ diff --git a/files/index.php b/files/index.php index 13e76d4506b..fbf7a4901a1 100644 --- a/files/index.php +++ b/files/index.php @@ -38,7 +38,7 @@ if(!isset($_SESSION['timezone'])){ } OC_App::setActiveNavigationEntry( "files_index" ); // Load the files -$dir = isset( $_GET['dir'] ) ? $_GET['dir'] : ''; +$dir = isset( $_GET['dir'] ) ? stripslashes($_GET['dir']) : ''; // Redirect if directory does not exist if(!OC_Filesystem::is_dir($dir)) { header("Location: ".$_SERVER['PHP_SELF'].""); @@ -68,7 +68,7 @@ $breadcrumb = array(); $pathtohere = ""; foreach( explode( "/", $dir ) as $i ){ if( $i != "" ){ - $pathtohere .= "/$i"; + $pathtohere .= "/".str_replace('+','%20', urlencode($i)); $breadcrumb[] = array( "dir" => $pathtohere, "name" => $i ); } } @@ -86,10 +86,15 @@ $upload_max_filesize = OC_Helper::computerFileSize(ini_get('upload_max_filesize' $post_max_size = OC_Helper::computerFileSize(ini_get('post_max_size')); $maxUploadFilesize = min($upload_max_filesize, $post_max_size); +$freeSpace=OC_Filesystem::free_space('/'); +$freeSpace=max($freeSpace,0); +$maxUploadFilesize = min($maxUploadFilesize ,$freeSpace); + $tmpl = new OC_Template( "files", "index", "user" ); $tmpl->assign( "fileList", $list->fetchPage() ); $tmpl->assign( "breadcrumb", $breadcrumbNav->fetchPage() ); $tmpl->assign( 'dir', $dir); +$tmpl->assign( 'readonly', !OC_Filesystem::is_writeable($dir)); $tmpl->assign( "files", $files ); $tmpl->assign( 'uploadMaxFilesize', $maxUploadFilesize); $tmpl->assign( 'uploadMaxHumanFilesize', OC_Helper::humanFileSize($maxUploadFilesize)); diff --git a/files/js/fileactions.js b/files/js/fileactions.js index 0089c235ebf..b5dd3982803 100644 --- a/files/js/fileactions.js +++ b/files/js/fileactions.js @@ -56,7 +56,7 @@ FileActions={ $('#fileList .action').remove(); var actions=FileActions.get(FileActions.getCurrentMimeType(),FileActions.getCurrentType()); var file=FileActions.getCurrentFile(); - if($('tr[data-file="'+file+'"]').data('renaming')){ + if($('tr').filterAttr('data-file',file).data('renaming')){ return; } var defaultAction=FileActions.getDefault(FileActions.getCurrentMimeType(),FileActions.getCurrentType()); @@ -66,7 +66,7 @@ FileActions={ if(img.call){ img=img(file); } - var html=''; + var html=''; + var html=''+name+''; + html = $('').attr({ "data-type": "dir", "data-size": size, "data-file": name}); + td = $('').attr({"class": "filename", "style": 'background-image:url('+OC.imagePath('core', 'filetypes/folder.png')+')' }); + td.append(''); + var link_elem = $('').attr({ "class": "name", "href": "index.php?dir="+ encodeURIComponent($('#dir').val()+'/'+name).replace(/%2F/g, '/') }); + link_elem.append($('').addClass('nametext').text(name)); + td.append(link_elem); + html.append(td); if(size!='Pending'){ simpleSize=simpleFileSize(size); }else{ @@ -47,13 +52,15 @@ FileList={ sizeColor = Math.round(200-Math.pow((size/(1024*1024)),2)); lastModifiedTime=Math.round(lastModified.getTime() / 1000); modifiedColor=Math.round((Math.round((new Date()).getTime() / 1000)-lastModifiedTime)/60/60/24*5); - html+=''+simpleSize+''; - html+=''+relative_modified_date(lastModified.getTime() / 1000)+''; - html+=''; + td = $('').attr({ "class": "filesize", "title": humanFileSize(size), "style": 'color:rgb('+sizeColor+','+sizeColor+','+sizeColor+')'}).text(simpleSize); + html.append(td); - FileList.insertElement(name,'dir',$(html)); - $('tr[data-file="'+name+'"] td.filename').draggable(dragOptions); - $('tr[data-file="'+name+'"] td.filename').droppable(folderDropOptions); + td = $('').attr({ "class": "date" }); + td.append($('').attr({ "class": "modified", "title": formatDate(lastModified), "style": 'color:rgb('+modifiedColor+','+modifiedColor+','+modifiedColor+')' }).text( relative_modified_date(lastModified.getTime() / 1000) )); + html.append(td); + FileList.insertElement(name,'dir',html); + $('tr').filterAttr('data-file',name).find('td.filename').draggable(dragOptions); + $('tr').filterAttr('data-file',name).find('td.filename').droppable(folderDropOptions); }, refresh:function(data) { result = jQuery.parseJSON(data.responseText); @@ -64,8 +71,8 @@ FileList={ resetFileActionPanel(); }, remove:function(name){ - $('tr[data-file="'+name+'"] td.filename').draggable('destroy'); - $('tr[data-file="'+name+'"]').remove(); + $('tr').filterAttr('data-file',name).find('td.filename').draggable('destroy'); + $('tr').filterAttr('data-file',name).remove(); if($('tr[data-file]').length==0){ $('#emptyfolder').show(); $('.file_upload_filename').addClass('highlight'); @@ -101,20 +108,24 @@ FileList={ $('.file_upload_filename').removeClass('highlight'); }, loadingDone:function(name){ - $('tr[data-file="'+name+'"]').data('loading',false); - var mime=$('tr[data-file="'+name+'"]').data('mime'); - $('tr[data-file="'+name+'"] td.filename').attr('style','background-image:url('+getMimeIcon(mime)+')'); - $('tr[data-file="'+name+'"] td.filename').draggable(dragOptions); + var tr=$('tr').filterAttr('data-file',name); + tr.data('loading',false); + var mime=tr.data('mime'); + tr.attr('data-mime',mime); + getMimeIcon(mime,function(path){ + tr.find('td.filename').attr('style','background-image:url('+path+')'); + }); + tr.find('td.filename').draggable(dragOptions); }, isLoading:function(name){ - return $('tr[data-file="'+name+'"]').data('loading'); + return $('tr').filterAttr('data-file',name).data('loading'); }, rename:function(name){ - var tr=$('tr[data-file="'+name+'"]'); + var tr=$('tr').filterAttr('data-file',name); tr.data('renaming',true); var td=tr.children('td.filename'); - var input=$(''); - var form=$('
    ') + var input=$('').val(name); + var form=$('
    ') form.append(input); td.children('a.name').text(''); td.children('a.name').append(form) @@ -123,9 +134,10 @@ FileList={ event.stopPropagation(); event.preventDefault(); var newname=input.val(); - tr.data('renaming',false); tr.attr('data-file',newname); td.children('a.name').empty(); + var path = td.children('a.name').attr('href'); + td.children('a.name').attr('href', path.replace(encodeURIComponent(name), encodeURIComponent(newname))); if(newname.indexOf('.')>0){ basename=newname.substr(0,newname.lastIndexOf('.')); }else{ @@ -137,12 +149,12 @@ FileList={ if(newname.indexOf('.')>0){ span.append($(''+newname.substr(newname.lastIndexOf('.'))+'')); } - $.ajax({ - url: 'ajax/rename.php', - data: "dir="+$('#dir').val()+"&newname="+encodeURIComponent(newname)+"&file="+encodeURIComponent(name) + $.get(OC.filePath('files','ajax','rename.php'), { dir : $('#dir').val(), newname: newname, file: name },function(){ + tr.data('renaming',false); }); + return false; }); - form.click(function(event){ + input.click(function(event){ event.stopPropagation(); event.preventDefault(); }); @@ -161,14 +173,16 @@ FileList={ files=[files]; } $.each(files,function(index,file){ - $('tr[data-file="'+file+'"]').hide(); - $('tr[data-file="'+file+'"]').find('input[type="checkbox"]').removeAttr('checked'); - $('tr[data-file="'+file+'"]').removeClass('selected'); + var files = $('tr').filterAttr('data-file',file); + files.hide(); + files.find('input[type="checkbox"]').removeAttr('checked'); + files.removeClass('selected'); }); procesSelection(); FileList.deleteCanceled=false; FileList.deleteFiles=files; $('#notification').text(t('files','undo deletion')); + $('#notification').data('deletefile',true); $('#notification').fadeIn(); }, finishDelete:function(ready,sync){ @@ -200,14 +214,18 @@ FileList={ $(document).ready(function(){ $('#notification').hide(); $('#notification').click(function(){ - FileList.deleteCanceled=true; - $('#notification').fadeOut(); - $.each(FileList.deleteFiles,function(index,file){ - $('tr[data-file="'+file+'"]').show(); + if($('#notification').data('deletefile')) + { + $.each(FileList.deleteFiles,function(index,file){ + $('tr').filterAttr('data-file',file).show(); // alert(file); - }); - FileList.deleteFiles=null; + }); + FileList.deleteCanceled=true; + FileList.deleteFiles=null; + } + $('#notification').fadeOut(); }); + $(window).bind('beforeunload', function (){ FileList.finishDelete(null,true); }); diff --git a/files/js/files.js b/files/js/files.js index 9342642b4ff..7c04245c223 100644 --- a/files/js/files.js +++ b/files/js/files.js @@ -1,4 +1,9 @@ $(document).ready(function() { + $('#fileList tr').each(function(){ + //little hack to set unescape filenames in attribute + $(this).attr('data-file',decodeURIComponent($(this).attr('data-file'))); + }); + if($('tr[data-file]').length==0){ $('.file_upload_filename').addClass('highlight'); } @@ -7,10 +12,10 @@ $(document).ready(function() { //drag/drop of files $('#fileList tr td.filename').draggable(dragOptions); - $('#fileList tr[data-type="dir"] td.filename').droppable(folderDropOptions); + $('#fileList tr[data-type="dir"][data-write="true"] td.filename').droppable(folderDropOptions); $('div.crumb').droppable(crumbDropOptions); - $('#plugins>ul>li:first-child').data('dir',''); - $('#plugins>ul>li:first-child').droppable(crumbDropOptions); + $('ul#apps>li:first-child').data('dir',''); + $('ul#apps>li:first-child').droppable(crumbDropOptions); // Triggers invisible file input $('.file_upload_button_wrapper').live('click', function() { @@ -64,8 +69,10 @@ $(document).ready(function() { } procesSelection(); } else { - var filename=$(this).parent().parent().data('file'); - if(!FileList.isLoading(filename)){ + var filename=$(this).parent().parent().attr('data-file'); + var tr=$('tr').filterAttr('data-file',filename); + var renaming=tr.data('renaming'); + if(!renaming && !FileList.isLoading(filename)){ var mime=$(this).parent().parent().data('mime'); var type=$(this).parent().parent().data('type'); var action=FileActions.getDefault(mime,type); @@ -158,7 +165,7 @@ $(document).ready(function() { }); $('.file_upload_start').live('change',function(){ - var form=$(this).parent().parent(); + var form=$(this).closest('form'); var uploadId=form.attr('data-upload-id'); var files=this.files; var target=form.children('iframe'); @@ -182,13 +189,21 @@ $(document).ready(function() { var response=jQuery.parseJSON(target.contents().find('body').text()); //set mimetype and if needed filesize if(response){ - for(var i=0;i tr').not('[data-mime]').fadeOut(); + $('#fileList > tr').not('[data-mime]').remove(); } } }); @@ -247,32 +262,82 @@ $(document).ready(function() { text=text.substr(0,text.length-6)+'...'; crumb.text(text); } + + $(window).click(function(){ + $('#new>ul').hide(); + $('#new').removeClass('active'); + $('button.file_upload_filename').removeClass('active'); + $('#new li').each(function(i,element){ + if($(element).children('p').length==0){ + $(element).children('input').remove(); + $(element).append('

    '+$(element).data('text')+'

    '); + } + }); + }); + $('#new').click(function(event){ + event.stopPropagation(); + }); + $('#new>a').click(function(){ + $('#new>ul').toggle(); + $('#new').toggleClass('active'); + $('button.file_upload_filename').toggleClass('active'); + }); + $('#new li').click(function(){ + if($(this).children('p').length==0){ + return; + } + + $('#new li').each(function(i,element){ + if($(element).children('p').length==0){ + $(element).children('input').remove(); + $(element).append('

    '+$(element).data('text')+'

    '); + } + }); + + var type=$(this).data('type'); + var text=$(this).children('p').text(); + $(this).data('text',text); + $(this).children('p').remove(); + var input=$(''); + $(this).append(input); + input.focus(); + input.change(function(){ + var name=$(this).val(); + switch(type){ + case 'file': + $.ajax({ + url: OC.filePath('files','ajax','newfile.php'), + data: "dir="+encodeURIComponent($('#dir').val())+"&filename="+encodeURIComponent(name)+'&content=%20%0A', + complete: function(data){boolOperationFinished(data, function(){ + var date=new Date(); + FileList.addFile(name,0,date); + var tr=$('tr').filterAttr('data-file',name); + tr.data('mime','text/plain'); + getMimeIcon('text/plain',function(path){ + tr.find('td.filename').attr('style','background-image:url('+path+')'); + }); + });} + }); + break; + case 'folder': + $.ajax({ + url: OC.filePath('files','ajax','newfolder.php'), + data: "dir="+encodeURIComponent($('#dir').val())+"&foldername="+encodeURIComponent(name), + complete: function(data){boolOperationFinished(data, function(){ + var date=new Date(); + FileList.addDir(name,0,date); + });} + }); + break; + } + var li=$(this).parent(); + $(this).remove(); + li.append('

    '+li.data('text')+'

    '); + $('#new>a').click(); + }); + }); }); -var adjustNewFolderSize = function() { - if($('#file_newfolder_name').val() != '') { - splitSize($('#file_newfolder_name'),$('#file_newfolder_submit')); - $('#file_newfolder_name').unbind('keyup', adjustNewFolderSize); - }; -} - -function splitSize(existingEl, appearingEl) { - nw = parseInt($(existingEl).css('width')) - parseInt($(appearingEl).css('width')); - $(existingEl).css('width', nw + 'px'); - $(appearingEl).fadeIn(250); -} - -function unsplitSize(stayingEl, vanishingEl) { - nw = parseInt($(stayingEl).css('width')) + parseInt($(vanishingEl).css('width')); - $(stayingEl).css('width', nw + 'px'); - $(vanishingEl).fadeOut(250); -} - -function resetFileActionPanel() { - $('#file_action_panel form').css({"display":"none"}); - $('#file_action_panel').attr('activeAction', false); -} - function boolOperationFinished(data, callback) { result = jQuery.parseJSON(data.responseText); if(result.status == 'success'){ @@ -335,7 +400,7 @@ var folderDropOptions={ url: 'ajax/move.php', data: "dir="+dir+"&file="+file+'&target='+dir+'/'+target, complete: function(data){boolOperationFinished(data, function(){ - var el=$('#fileList tr[data-file="'+file+'"] td.filename'); + var el = $('#fileList tr').filterAttr('data-file',file).find('td.filename'); el.draggable('destroy'); FileList.remove(file); });} @@ -437,7 +502,7 @@ function getSelectedFiles(property){ var files=[]; elements.each(function(i,element){ var file={ - name:$(element).data('file'), + name:$(element).attr('data-file'), mime:$(element).data('mime'), type:$(element).data('type'), size:$(element).data('size'), @@ -473,11 +538,14 @@ function relative_modified_date(timestamp) { else { return diffyears+' '+t('files','years ago'); } } -function getMimeIcon(mime){ - mime=mime.substr(0,mime.indexOf('/')); - var knownMimes=['image','audio']; - if(knownMimes.indexOf(mime)==-1){ - mime='file'; +function getMimeIcon(mime, ready){ + if(getMimeIcon.cache[mime]){ + ready(getMimeIcon.cache[mime]); + }else{ + $.get( OC.filePath('files','ajax','mimeicon.php')+'?mime='+mime, function(path){ + getMimeIcon.cache[mime]=path; + ready(getMimeIcon.cache[mime]); + }); } - return OC.imagePath('core','filetypes/'+mime); } +getMimeIcon.cache={}; diff --git a/files/l10n/ar.php b/files/l10n/ar.php new file mode 100644 index 00000000000..50edc0d6979 --- /dev/null +++ b/files/l10n/ar.php @@ -0,0 +1,23 @@ + "تم ترفيع الملفات بنجاح.", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "حجم الملف الذي تريد ترفيعه أعلى مما upload_max_filesize يسمح به في ملف php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML.", +"The uploaded file was only partially uploaded" => "تم ترفيع جزء من الملفات الذي تريد ترفيعها فقط", +"No file was uploaded" => "لم يتم ترفيع أي من الملفات", +"Missing a temporary folder" => "المجلد المؤقت غير موجود", +"Files" => "الملفات", +"Maximum upload size" => "الحد الأقصى لحجم الملفات التي يمكن رفعها", +"New" => "جديد", +"Text file" => "ملف", +"Folder" => "مجلد", +"From the web" => "من الوب", +"Upload" => "إرفع", +"Nothing in here. Upload something!" => "لا يوجد شيء هنا. إرفع بعض الملفات!", +"Name" => "الاسم", +"Download" => "تحميل", +"Size" => "حجم", +"Modified" => "معدل", +"Delete" => "محذوف", +"Upload too large" => "حجم الترفيع أعلى من المسموح", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم." +); diff --git a/files/l10n/bg_BG.php b/files/l10n/bg_BG.php index db5a095c2cb..027a7698203 100644 --- a/files/l10n/bg_BG.php +++ b/files/l10n/bg_BG.php @@ -1,8 +1,13 @@ "Файлът е качен успешно", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Файлът който се опитвате да качите, надвишава зададените стойности в upload_max_filesize в PHP.INI", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Файлът който се опитвате да качите надвишава стойностите в MAX_FILE_SIZE в HTML формата.", +"The uploaded file was only partially uploaded" => "Файлът е качен частично", +"No file was uploaded" => "Фахлът не бе качен", +"Missing a temporary folder" => "Липсва временната папка", "Files" => "Файлове", "Maximum upload size" => "Макс. размер за качване", "Upload" => "Качване", -"New Folder" => "Нова папка", "Nothing in here. Upload something!" => "Няма нищо, качете нещо!", "Name" => "Име", "Download" => "Изтегляне", diff --git a/files/l10n/ca.php b/files/l10n/ca.php index 8515ab35f27..b85b36f5c02 100644 --- a/files/l10n/ca.php +++ b/files/l10n/ca.php @@ -1,14 +1,23 @@ "El fitxer s'ha pujat correctament", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "El fitxer de pujada excedeix la directiva upload_max_filesize establerta a php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El fitxer de pujada excedeix la directiva MAX_FILE_SIZE especificada al formulari HTML", +"The uploaded file was only partially uploaded" => "El fitxer només s'ha pujat parcialment", +"No file was uploaded" => "El fitxer no s'ha pujat", +"Missing a temporary folder" => "S'ha perdut un fitxer temporal", "Files" => "Fitxers", "Maximum upload size" => "Mida màxima de pujada", +"New" => "Nou", +"Text file" => "Fitxer de text", +"Folder" => "Carpeta", +"From the web" => "Des de la web", "Upload" => "Puja", -"New Folder" => "Carpeta nova", "Nothing in here. Upload something!" => "Res per aquí. Pugeu alguna cosa!", "Name" => "Nom", -"Download" => "Descarrega", +"Download" => "Baixa", "Size" => "Mida", "Modified" => "Modificat", "Delete" => "Esborra", "Upload too large" => "La pujada és massa gran", -"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada d'aquest servidor" +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor" ); diff --git a/files/l10n/cs_CZ.php b/files/l10n/cs_CZ.php index c5430deaeb6..5d26b26604a 100644 --- a/files/l10n/cs_CZ.php +++ b/files/l10n/cs_CZ.php @@ -1,8 +1,17 @@ "Soubor byl odeslán úspěšně", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Odeslaný soubor přesáhl velikostí parametr upload_max_filesize v php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Odeslaný soubor přesáhl velikostí parametr MAX_FILE_SIZE specifikovaný v HTML formuláři", +"The uploaded file was only partially uploaded" => "Soubor byl odeslán pouze částečně", +"No file was uploaded" => "Soubor nebyl odeslán", +"Missing a temporary folder" => "Chybí adresář pro sočasné soubory", "Files" => "Soubory", "Maximum upload size" => "Maximální velikost ukládaných souborů", +"New" => "Nový", +"Text file" => "Textový soubor", +"Folder" => "Adresář", +"From the web" => "Z webu", "Upload" => "Uložit", -"New Folder" => "Nový adresář", "Nothing in here. Upload something!" => "Žádný obsah. Uložte si něco!", "Name" => "Název", "Download" => "Stáhnout", diff --git a/files/l10n/da.php b/files/l10n/da.php index bc909a92331..f86a98d44c1 100644 --- a/files/l10n/da.php +++ b/files/l10n/da.php @@ -1,8 +1,17 @@ "Der er ingen fejl, filen blev uploadet med success", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Den uploadede fil overskrider upload_max_filesize direktivet i php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Den uploadede fil overskrider MAX_FILE_SIZE -direktivet som er specificeret i HTML-formularen", +"The uploaded file was only partially uploaded" => "Den uploadede file blev kun delvist uploadet", +"No file was uploaded" => "Ingen fil blev uploadet", +"Missing a temporary folder" => "Mangler en midlertidig mappe", "Files" => "Filer", "Maximum upload size" => "Maksimal upload-størrelse", +"New" => "Ny", +"Text file" => "Tekstfil", +"Folder" => "Mappe", +"From the web" => "Fra nettet", "Upload" => "Upload", -"New Folder" => "Ny Mappe", "Nothing in here. Upload something!" => "Her er tomt. Upload noget!", "Name" => "Navn", "Download" => "Download", @@ -10,5 +19,5 @@ "Modified" => "Ændret", "Delete" => "Slet", "Upload too large" => "Upload for stor", -"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filerne du prøver at uploade er større end den maksimale størrelse for fil-upload på denne server." +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filerne, du prøver at uploade, er større end den maksimale størrelse for fil-upload på denne server." ); diff --git a/files/l10n/de.php b/files/l10n/de.php index 0259dd02e84..94d312c3e9e 100644 --- a/files/l10n/de.php +++ b/files/l10n/de.php @@ -1,8 +1,17 @@ "Datei hochgeladen.", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Die hochgeladene Datei ist zu groß.", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Die hochgeladene Datei ist zu groß.", +"The uploaded file was only partially uploaded" => "Die Datei wurde nur teilweise hochgeladen.", +"No file was uploaded" => "Es wurde keine Datei hochgeladen.", +"Missing a temporary folder" => "Temporärer Ordner fehlt.", "Files" => "Dateien", "Maximum upload size" => "Maximale Größe", +"New" => "Neu", +"Text file" => "Text Datei", +"Folder" => "Ordner", +"From the web" => "Aus dem Netz", "Upload" => "Hochladen", -"New Folder" => "Neuer Ordner", "Nothing in here. Upload something!" => "Alles leer. Lad’ was hoch!", "Name" => "Name", "Download" => "Herunterladen", diff --git a/files/l10n/el.php b/files/l10n/el.php index 14b95e69ca6..27a80fcc98c 100644 --- a/files/l10n/el.php +++ b/files/l10n/el.php @@ -1,8 +1,17 @@ "Δεν υπάρχει λάθος, το αρχείο που μεταφορτώθηκε επιτυχώς", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Το αρχείο που μεταφορτώθηκε υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"upload_max_filesize\" του php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Το αρχείο υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"MAX_FILE_SIZE\" που έχει οριστεί στην html φόρμα", +"The uploaded file was only partially uploaded" => "Το αρχείο μεταφορώθηκε μόνο εν μέρει", +"No file was uploaded" => "Το αρχείο δεν μεταφορτώθηκε", +"Missing a temporary folder" => "Λείπει ένας προσωρινός φάκελος", "Files" => "Αρχεία", "Maximum upload size" => "Μέγιστο μέγεθος μεταφόρτωσης", +"New" => "Νέο", +"Text file" => "Αρχείο κειμένου", +"Folder" => "Φάκελος", +"From the web" => "Από τον ιστό", "Upload" => "Μεταφόρτωση", -"New Folder" => "Νέος φάκελος", "Nothing in here. Upload something!" => "Δεν υπάρχει τίποτα εδώ. Ανέβασε κάτι!", "Name" => "Όνομα", "Download" => "Λήψη", diff --git a/files/l10n/eo.php b/files/l10n/eo.php new file mode 100644 index 00000000000..42dc4f1280e --- /dev/null +++ b/files/l10n/eo.php @@ -0,0 +1,19 @@ + "Ne estas eraro, la dosiero alŝutiĝis sukcese", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "La dosiero alŝutita superas la regulon upload_max_filesize el php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "La dosiero alŝutita superas laregulon MAX_FILE_SIZE, kiu estas difinita en la HTML-formularo", +"The uploaded file was only partially uploaded" => "La alŝutita dosiero nur parte alŝutiĝis", +"No file was uploaded" => "Neniu dosiero estas alŝutita", +"Missing a temporary folder" => "Mankas tempa dosierujo", +"Files" => "Dosieroj", +"Maximum upload size" => "Maksimuma alŝutogrando", +"Upload" => "Alŝuti", +"Nothing in here. Upload something!" => "Nenio estas ĉi tie. Alŝutu ion!", +"Name" => "Nomo", +"Download" => "Elŝuti", +"Size" => "Grando", +"Modified" => "Modifita", +"Delete" => "Forigi", +"Upload too large" => "Elŝuto tro larĝa", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo." +); diff --git a/files/l10n/es.php b/files/l10n/es.php index 28dc17af761..11665ac3c32 100644 --- a/files/l10n/es.php +++ b/files/l10n/es.php @@ -1,8 +1,17 @@ "No hubo ningún error, el archivo se subió con éxito", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "El archivo que intentas subir sobrepasa el tamaño definido por la variable upload_max_filesize en php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El archivo que intentas subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML", +"The uploaded file was only partially uploaded" => "El archivo que intentas subir solo se subió parcialmente", +"No file was uploaded" => "No se subió ningún archivo", +"Missing a temporary folder" => "Falta un directorio temporal", "Files" => "Archivos", "Maximum upload size" => "Tamaño máximo de subida", +"New" => "Nuevo", +"Text file" => "Archivo de texto", +"Folder" => "Carpeta", +"From the web" => "Desde la web", "Upload" => "Subir", -"New Folder" => "Crear Carpeta", "Nothing in here. Upload something!" => "Aquí no hay nada. ¡Sube algo!", "Name" => "Nombre", "Download" => "Descargar", diff --git a/files/l10n/et_EE.php b/files/l10n/et_EE.php index 29c44dac106..415eb632312 100644 --- a/files/l10n/et_EE.php +++ b/files/l10n/et_EE.php @@ -1,8 +1,17 @@ "Ühtegi viga pole, fail on üles laetud", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Üles laetud faili suurus ületab php.ini määratud upload_max_filesize suuruse", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Üles laetud faili suurus ületab HTML vormis määratud upload_max_filesize suuruse", +"The uploaded file was only partially uploaded" => "Fail laeti üles ainult osaliselt", +"No file was uploaded" => "Ühtegi faili ei laetud üles", +"Missing a temporary folder" => "Ajutiste failide kaust puudub", "Files" => "Failid", "Maximum upload size" => "Maksimaalne üleslaadimise suurus", +"New" => "Uus", +"Text file" => "Tekstifail", +"Folder" => "Kaust", +"From the web" => "Veebist", "Upload" => "Lae üles", -"New Folder" => "Uus kaust", "Nothing in here. Upload something!" => "Siin pole midagi. Lae midagi üles!", "Name" => "Nimi", "Download" => "Lae alla", diff --git a/files/l10n/eu.php b/files/l10n/eu.php new file mode 100644 index 00000000000..b9873e6c3fa --- /dev/null +++ b/files/l10n/eu.php @@ -0,0 +1,19 @@ + "Ez da arazorik izan, fitxategia ongi igo da", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Igotako fitxategiaren tamaina php.ini-ko upload_max_filesize direktiban adierazitakoa baino handiagoa da", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Igotako fitxategiaren tamaina HTML inprimakiko MAX_FILESIZE direktiban adierazitakoa baino handiagoa da", +"The uploaded file was only partially uploaded" => "Igotako fitxategiaren zati bat baino gehiago ez da igo", +"No file was uploaded" => "Ez da fitxategirik igo", +"Missing a temporary folder" => "Aldi baterako karpeta falta da", +"Files" => "Fitxategiak", +"Maximum upload size" => "Igo daitekeen gehienezko tamaina", +"Upload" => "Igo", +"Nothing in here. Upload something!" => "Ez dago ezer. Igo zerbait!", +"Name" => "Izena", +"Download" => "Deskargatu", +"Size" => "Tamaina", +"Modified" => "Aldatuta", +"Delete" => "Ezabatu", +"Upload too large" => "Igotakoa handiegia da", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Igotzen saiatzen ari zaren fitxategiak zerbitzari honek igotzeko onartzen duena baino handiagoak dira." +); diff --git a/files/l10n/fr.php b/files/l10n/fr.php index fa58f073d66..cf90223a06a 100644 --- a/files/l10n/fr.php +++ b/files/l10n/fr.php @@ -1,8 +1,17 @@ "Aucune erreur, le fichier a été téléversé avec succès", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Le fichier téléversé excède la valeur de upload_max_filesize spécifiée dans php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Le fichier téléversé excède la valeur de MAX_FILE_SIZE spécifiée dans le formulaire HTML", +"The uploaded file was only partially uploaded" => "Le fichier n'a été que partiellement téléversé", +"No file was uploaded" => "Aucun fichier n'a été téléversé", +"Missing a temporary folder" => "Il manque un répertoire temporaire", "Files" => "Fichiers", "Maximum upload size" => "Taille max. d'envoi", +"New" => "Nouveau", +"Text file" => "Fichier texte", +"Folder" => "Dossier", +"From the web" => "Depuis le web", "Upload" => "Envoyer", -"New Folder" => "Nouveau dossier", "Nothing in here. Upload something!" => "Il n'y a rien ici ! Envoyez donc quelque chose :)", "Name" => "Nom", "Download" => "Téléchargement", diff --git a/files/l10n/gl.php b/files/l10n/gl.php new file mode 100644 index 00000000000..83cf93be795 --- /dev/null +++ b/files/l10n/gl.php @@ -0,0 +1,23 @@ + "Non hai erros, o ficheiro subeuse con éxito", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "O ficheiro subido supera a directiva upload_max_filesize no php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "O ficheiro subido supera a directiva MAX_FILE_SIZE que foi indicada no formulario HTML", +"The uploaded file was only partially uploaded" => "O ficheiro subido foi só parcialmente subido", +"No file was uploaded" => "Non se subeu ningún ficheiro", +"Missing a temporary folder" => "Falta un cartafol temporal", +"Files" => "Ficheiros", +"Maximum upload size" => "Tamaño máximo de subida", +"New" => "Novo", +"Text file" => "Ficheiro de texto", +"Folder" => "Cartafol", +"From the web" => "Desde a rede", +"Upload" => "Subir", +"Nothing in here. Upload something!" => "Nada por aquí. Sube algo!", +"Name" => "Nome", +"Download" => "Baixar", +"Size" => "Tamaño", +"Modified" => "Modificado", +"Delete" => "Eliminar", +"Upload too large" => "Subida demasiado grande", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os ficheiros que tratas de subir superan o tamaño máximo permitido neste servidor" +); diff --git a/files/l10n/he.php b/files/l10n/he.php new file mode 100644 index 00000000000..79ae1edb7a5 --- /dev/null +++ b/files/l10n/he.php @@ -0,0 +1,19 @@ + "לא אירעה תקלה, הקבצים הועלו בהצלחה", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "הקובץ שהועלה חרג מההנחיה upload_max_filesize בקובץ php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "הקובץ שהועלה חרג מההנחיה MAX_FILE_SIZE שצוינה בטופס ה־HTML", +"The uploaded file was only partially uploaded" => "הקובץ שהועלה הועלה בצורה חלקית", +"No file was uploaded" => "לא הועלו קבצים", +"Missing a temporary folder" => "תיקייה זמנית חסרה", +"Files" => "קבצים", +"Maximum upload size" => "גודל העלאה מקסימלי", +"Upload" => "העלאה", +"Nothing in here. Upload something!" => "אין כאן שום דבר. אולי ברצונך להעלות משהו?", +"Name" => "שם", +"Download" => "הורדה", +"Size" => "גודל", +"Modified" => "זמן שינוי", +"Delete" => "מחיקה", +"Upload too large" => "העלאה גדולה מידי", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "הקבצים שניסית להעלות חרגו מהגודל המקסימלי להעלאת קבצים על שרת זה." +); diff --git a/files/l10n/hr.php b/files/l10n/hr.php new file mode 100644 index 00000000000..670e87f6557 --- /dev/null +++ b/files/l10n/hr.php @@ -0,0 +1,19 @@ + "Datoteka je poslana uspješno i bez pogrešaka", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Poslana datoteka izlazi iz okvira upload_max_size direktive postavljene u php.ini konfiguracijskoj datoteci", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Poslana datoteka izlazi iz okvira MAX_FILE_SIZE direktive postavljene u HTML obrascu", +"The uploaded file was only partially uploaded" => "Datoteka je poslana samo djelomično", +"No file was uploaded" => "Ni jedna datoteka nije poslana", +"Missing a temporary folder" => "Nedostaje privremena mapa", +"Files" => "Datoteke", +"Maximum upload size" => "Maksimalna veličina prijenosa", +"Upload" => "Pošalji", +"Nothing in here. Upload something!" => "Nema ničega u ovoj mapi. Pošalji nešto!", +"Name" => "Naziv", +"Download" => "Preuzmi", +"Size" => "Veličina", +"Modified" => "Zadnja promjena", +"Delete" => "Briši", +"Upload too large" => "Prijenos je preobiman", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Datoteke koje pokušavate prenijeti prelaze maksimalnu veličinu za prijenos datoteka na ovom poslužitelju." +); diff --git a/files/l10n/hu_HU.php b/files/l10n/hu_HU.php new file mode 100644 index 00000000000..a176ffce647 --- /dev/null +++ b/files/l10n/hu_HU.php @@ -0,0 +1,19 @@ + "Nincs hiba, a fájl sikeresen feltöltve.", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "A feltöltött file meghaladja az upload_max_filesize direktívát a php.ini-ben.", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "A feltöltött fájl meghaladja a MAX_FILE_SIZE direktívát ami meghatározott a HTML form-ban.", +"The uploaded file was only partially uploaded" => "Az eredeti fájl csak részlegesen van feltöltve.", +"No file was uploaded" => "Nem lett fájl feltöltve.", +"Missing a temporary folder" => "Hiányzik az ideiglenes könyvtár", +"Files" => "Fájlok", +"Maximum upload size" => "Maximális feltölthető fájlméret", +"Upload" => "Feltöltés", +"Nothing in here. Upload something!" => "Töltsön fel egy fájlt.", +"Name" => "Név", +"Download" => "Letöltés", +"Size" => "Méret", +"Modified" => "Módosítva", +"Delete" => "Törlés", +"Upload too large" => "Feltöltés túl nagy", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "A fájlokat amit próbálsz feltölteni meghaladta a legnagyobb fájlméretet ezen a szerveren." +); diff --git a/files/l10n/ia.php b/files/l10n/ia.php new file mode 100644 index 00000000000..8753b871c9e --- /dev/null +++ b/files/l10n/ia.php @@ -0,0 +1,17 @@ + "Le file incargate solmente esseva incargate partialmente", +"No file was uploaded" => "Nulle file esseva incargate", +"Files" => "Files", +"Maximum upload size" => "Dimension maxime de incargamento", +"New" => "Nove", +"Text file" => "File de texto", +"Folder" => "Dossier", +"Upload" => "Incargar", +"Nothing in here. Upload something!" => "Nihil hic. Incarga alcun cosa!", +"Name" => "Nomine", +"Download" => "Discargar", +"Size" => "Dimension", +"Modified" => "Modificate", +"Delete" => "Deler", +"Upload too large" => "Incargamento troppo longe" +); diff --git a/files/l10n/id.php b/files/l10n/id.php index feb5c6d8631..902eeeb4ec2 100644 --- a/files/l10n/id.php +++ b/files/l10n/id.php @@ -2,7 +2,6 @@ "Files" => "Berkas", "Maximum upload size" => "Ukuran unggah maksimum", "Upload" => "Unggah", -"New Folder" => "Folder Baru", "Nothing in here. Upload something!" => "Tidak ada apa-apa di sini. Unggah sesuatu!", "Name" => "Nama", "Download" => "Unduh", diff --git a/files/l10n/it.php b/files/l10n/it.php index 4c958924ceb..919ff0b5aae 100644 --- a/files/l10n/it.php +++ b/files/l10n/it.php @@ -1,8 +1,17 @@ "Non ci sono errori, file caricato con successo", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Il file caricato supera il valore upload_max_filesize in php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Il file caricato supera il valore MAX_FILE_SIZE definito nel form HTML", +"The uploaded file was only partially uploaded" => "Il file è stato parzialmente caricato", +"No file was uploaded" => "Nessun file è stato caricato", +"Missing a temporary folder" => "Cartella temporanea mancante", "Files" => "File", "Maximum upload size" => "Dimensione massima upload", +"New" => "Nuovo", +"Text file" => "File di testo", +"Folder" => "Cartella", +"From the web" => "Dal web", "Upload" => "Carica", -"New Folder" => "Nuova Cartella", "Nothing in here. Upload something!" => "Non c'è niente qui. Carica qualcosa!", "Name" => "Nome", "Download" => "Scarica", diff --git a/files/l10n/ja_JP.php b/files/l10n/ja_JP.php new file mode 100644 index 00000000000..24c4e36ee6e --- /dev/null +++ b/files/l10n/ja_JP.php @@ -0,0 +1,23 @@ + "エラーはありません。ファイルのアップロードは成功しました。", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "アップロードされたファイルはphp.iniのupload_max_filesizeに設定されたサイズを超えています", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "アップロードされたファイルはHTMLのフォームに設定されたMAX_FILE_SIZEに設定されたサイズを超えています", +"The uploaded file was only partially uploaded" => "ファイルは一部分しかアップロードされませんでした", +"No file was uploaded" => "ファイルはアップロードされませんでした", +"Missing a temporary folder" => "テンポラリフォルダが見つかりません", +"Files" => "ファイル", +"Maximum upload size" => "最大アップロードサイズ", +"New" => "新規作成", +"Text file" => "テキストファイル", +"Folder" => "フォルダ", +"From the web" => "ウェブ経由", +"Upload" => "アップロード", +"Nothing in here. Upload something!" => "ここには何もありません。何かアップロードしてください。", +"Name" => "名前", +"Download" => "ダウンロード", +"Size" => "サイズ", +"Modified" => "更新日時", +"Delete" => "削除", +"Upload too large" => "ファイルサイズが大きすぎます", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "アップロードしようとしているファイルはサーバで規定された最大サイズを超えています" +); diff --git a/files/l10n/lb.php b/files/l10n/lb.php index 3f8a4af0bd9..43956fcd63e 100644 --- a/files/l10n/lb.php +++ b/files/l10n/lb.php @@ -1,8 +1,13 @@ "Keen Feeler, Datei ass komplett ropgelueden ginn", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Déi ropgelueden Datei ass méi grouss wei d'upload_max_filesize Eegenschaft an der php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Déi ropgelueden Datei ass méi grouss wei d'MAX_FILE_SIZE Eegenschaft déi an der HTML form uginn ass", +"The uploaded file was only partially uploaded" => "Déi ropgelueden Datei ass nëmmen hallef ropgelueden ginn", +"No file was uploaded" => "Et ass keng Datei ropgelueden ginn", +"Missing a temporary folder" => "Et feelt en temporären Dossier", "Files" => "Dateien", "Maximum upload size" => "Maximum Upload Gréisst ", "Upload" => "Eroplueden", -"New Folder" => "Neien Dossier", "Nothing in here. Upload something!" => "Hei ass näischt. Lued eppes rop!", "Name" => "Numm", "Download" => "Eroflueden", diff --git a/files/l10n/lt_LT.php b/files/l10n/lt_LT.php new file mode 100644 index 00000000000..1bec35e0f8c --- /dev/null +++ b/files/l10n/lt_LT.php @@ -0,0 +1,19 @@ + "Klaidų nėra, failas įkeltas sėkmingai", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Įkeliamo failo dydis viršija upload_max_filesize parametrą php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Įkeliamo failo dydis viršija MAX_FILE_SIZE parametrą, kuris yra nustatytas HTML formoje", +"The uploaded file was only partially uploaded" => "Failas buvo įkeltas tik dalinai", +"No file was uploaded" => "Nebuvo įkeltas nė vienas failas", +"Missing a temporary folder" => "Nėra laikinojo katalogo", +"Files" => "Failai", +"Maximum upload size" => "Maksimalus failo dydis", +"Upload" => "Įkelti", +"Nothing in here. Upload something!" => "Čia tuščia. Įkelkite ką nors!", +"Name" => "Pavadinimas", +"Download" => "Atsisiųsti", +"Size" => "Dydis", +"Modified" => "Pakeista", +"Delete" => "Ištrinti", +"Upload too large" => "Įkėlimui failas per didelis", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Bandomų įkelti failų dydis viršija maksimalų leidžiamą šiame serveryje" +); diff --git a/files/l10n/ms_MY.php b/files/l10n/ms_MY.php index 3b654cccdaf..038ffd521a0 100644 --- a/files/l10n/ms_MY.php +++ b/files/l10n/ms_MY.php @@ -2,7 +2,6 @@ "Files" => "fail", "Maximum upload size" => "Saiz maksimum muat naik", "Upload" => "Muat naik", -"New Folder" => "Folder baru", "Nothing in here. Upload something!" => "Tiada apa-apa di sini. Muat naik sesuatu!", "Name" => "Nama ", "Download" => "Muat turun", diff --git a/files/l10n/nb_NO.php b/files/l10n/nb_NO.php index 49c6c158f47..c4ef4989a58 100644 --- a/files/l10n/nb_NO.php +++ b/files/l10n/nb_NO.php @@ -2,7 +2,6 @@ "Files" => "Filer", "Maximum upload size" => "Maksimum opplastingsstørrelse", "Upload" => "Last opp", -"New Folder" => "Ny mappe", "Nothing in here. Upload something!" => "Ingenting her. Last opp noe!", "Name" => "Navn", "Download" => "Last ned", diff --git a/files/l10n/nl.php b/files/l10n/nl.php index c474d9a4ca2..36b4695a476 100644 --- a/files/l10n/nl.php +++ b/files/l10n/nl.php @@ -1,8 +1,17 @@ "Geen fout opgetreden, bestand successvol geupload.", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Het geüploade bestand is groter dan de upload_max_filesize instelling in php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Het geüploade bestand is groter dan de MAX_FILE_SIZE richtlijn die is opgegeven in de HTML-formulier", +"The uploaded file was only partially uploaded" => "Het bestand is slechts gedeeltelijk geupload", +"No file was uploaded" => "Geen bestand geüpload", +"Missing a temporary folder" => "Een tijdelijke map mist", "Files" => "Bestanden", "Maximum upload size" => "Maximale bestandsgrootte voor uploads", +"New" => "Nieuw", +"Text file" => "Tekstbestand", +"Folder" => "Map", +"From the web" => "Van het internet", "Upload" => "Upload", -"New Folder" => "Nieuwe map", "Nothing in here. Upload something!" => "Er bevindt zich hier niets. Upload een bestand!", "Name" => "Naam", "Download" => "Download", diff --git a/files/l10n/nn_NO.php b/files/l10n/nn_NO.php new file mode 100644 index 00000000000..34f2f6be960 --- /dev/null +++ b/files/l10n/nn_NO.php @@ -0,0 +1,19 @@ + "Ingen feil, fila vart lasta opp", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Den opplasta fila er større enn variabelen upload_max_filesize i php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Den opplasta fila er større enn variabelen MAX_FILE_SIZE i HTML-skjemaet", +"The uploaded file was only partially uploaded" => "Fila vart berre delvis lasta opp", +"No file was uploaded" => "Ingen filer vart lasta opp", +"Missing a temporary folder" => "Manglar ei mellombels mappe", +"Files" => "Filer", +"Maximum upload size" => "Maksimal opplastingsstorleik", +"Upload" => "Last opp", +"Nothing in here. Upload something!" => "Ingenting her. Last noko opp!", +"Name" => "Namn", +"Download" => "Last ned", +"Size" => "Storleik", +"Modified" => "Endra", +"Delete" => "Slett", +"Upload too large" => "For stor opplasting", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filene du prøver å laste opp er større enn maksgrensa til denne tenaren." +); diff --git a/files/l10n/pl.php b/files/l10n/pl.php index 6cd60267fc8..d110f52ab1d 100644 --- a/files/l10n/pl.php +++ b/files/l10n/pl.php @@ -1,8 +1,17 @@ "Brak błędu, plik przesłany z sukcesem", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Przesłany plik przekracza ustawienie upload_max_filesize w pliku php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Przesłany plik przekracza MAX_FILE_SIZE ustawienia, które zostało określono w formularzu HTML", +"The uploaded file was only partially uploaded" => "Plik został przesłany tylko częściowo.", +"No file was uploaded" => "Żaden plik nie został przesłany", +"Missing a temporary folder" => "Brakuje folderu tymczasowego", "Files" => "Pliki", "Maximum upload size" => "Maksymalna wielkość przesyłanego pliku", +"New" => "Nowy", +"Text file" => "Plik tekstowy", +"Folder" => "Katalog", +"From the web" => "Z Internetu", "Upload" => "Prześlij", -"New Folder" => "Nowy katalog", "Nothing in here. Upload something!" => "Nic tu nie ma. Prześlij jakieś pliki!", "Name" => "Nazwa", "Download" => "Ściąganie", diff --git a/files/l10n/pt_BR.php b/files/l10n/pt_BR.php index efaefe51655..57b1af2ae6d 100644 --- a/files/l10n/pt_BR.php +++ b/files/l10n/pt_BR.php @@ -1,8 +1,13 @@ "Não houve nenhum erro, o arquivo foi transferido com sucesso", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "O tamanho do arquivo excede o limed especifiicado em upload_max_filesize no php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "O arquivo carregado excede o MAX_FILE_SIZE que foi especificado no formulário HTML", +"The uploaded file was only partially uploaded" => "O arquivo foi transferido parcialmente", +"No file was uploaded" => "Nenhum arquivo foi transferido", +"Missing a temporary folder" => "Pasta temporária não encontrada", "Files" => "Arquivos", "Maximum upload size" => "Tamanho máximo para carregar", "Upload" => "Carregar", -"New Folder" => "Nova Pasta", "Nothing in here. Upload something!" => "Nada aqui.Carregar alguma coisa!", "Name" => "Nome", "Download" => "Baixar", diff --git a/files/l10n/ro.php b/files/l10n/ro.php index a54b011d109..9d8d6e2d5df 100644 --- a/files/l10n/ro.php +++ b/files/l10n/ro.php @@ -1,8 +1,17 @@ "Nu am întâmpinat nici eroare, fișierul a fost încărcat cu success", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Fișierul are o dimensiune mai mare decât cea specificată în variabila upload_max_filesize din php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Fișierul are o dimensiune mai mare decât variabile MAX_FILE_SIZE specificată în formularul HTML", +"The uploaded file was only partially uploaded" => "Fișierul a fost încărcat doar parțial", +"No file was uploaded" => "Nu a fost încărcat nici un fișier", +"Missing a temporary folder" => "Lipsă folder temporar", "Files" => "Fișiere", "Maximum upload size" => "Dimensiunea maximă", +"New" => "Nou", +"Text file" => "Fișier text", +"Folder" => "Dosar", +"From the web" => "De pe internet", "Upload" => "Încarcă", -"New Folder" => "Director nou", "Nothing in here. Upload something!" => "Nici un fișier, încarcă ceva!", "Name" => "Nume", "Download" => "Descarcă", diff --git a/files/l10n/ru.php b/files/l10n/ru.php index ff1c05ce8ee..88a6d8ee19c 100644 --- a/files/l10n/ru.php +++ b/files/l10n/ru.php @@ -1,8 +1,17 @@ "Файл успешно загружен", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Файл превышает допустимые размеры (описаны как upload_max_filesize в php.ini)", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Файл превышает размер MAX_FILE_SIZE, указаный в HTML-форме", +"The uploaded file was only partially uploaded" => "Файл был частично загружен", +"No file was uploaded" => "Файл не был загружен", +"Missing a temporary folder" => "Невозможно найти временную директорию", "Files" => "Файлы", "Maximum upload size" => "Максимальный размер файла", +"New" => "Новый", +"Text file" => "Текстовый файл", +"Folder" => "Папка", +"From the web" => "Из интернета", "Upload" => "Закачать", -"New Folder" => "Новая папка", "Nothing in here. Upload something!" => "Здесь ничего нет. Закачайте что-нибудь!", "Name" => "Название", "Download" => "Скачать", diff --git a/files/l10n/sk_SK.php b/files/l10n/sk_SK.php new file mode 100644 index 00000000000..0d91ae35a51 --- /dev/null +++ b/files/l10n/sk_SK.php @@ -0,0 +1,23 @@ + "Nenastala žiadna chyba, súbor bol úspešne nahraný", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Nahraný súbor presiahol direktívu upload_max_filesize v php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Nahrávaný súbor presiahol MAX_FILE_SIZE direktívu, ktorá bola špecifikovaná v HTML formulári", +"The uploaded file was only partially uploaded" => "Nahrávaný súbor bol iba čiastočne nahraný", +"No file was uploaded" => "Žiaden súbor nebol nahraný", +"Missing a temporary folder" => "Chýbajúci dočasný priečinok", +"Files" => "Súbory", +"Maximum upload size" => "Maximálna veľkosť nahratia", +"New" => "Nový", +"Text file" => "Textový súbor", +"Folder" => "Priečinok", +"From the web" => "Z webu", +"Upload" => "Nahrať", +"Nothing in here. Upload something!" => "Nič tu nie je. Nahrakte niečo!", +"Name" => "Meno", +"Download" => "Stiahnuť", +"Size" => "Veľkosť", +"Modified" => "Upravené", +"Delete" => "Odstrániť", +"Upload too large" => "Nahrávanie príliš veľké", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Súbory ktoré sa snažíte nahrať presahujú maximálnu veľkosť pre nahratie súborov na tento server." +); diff --git a/files/l10n/sl.php b/files/l10n/sl.php new file mode 100644 index 00000000000..5a09e0fe20b --- /dev/null +++ b/files/l10n/sl.php @@ -0,0 +1,19 @@ + "datoteka je bila naložena uspešno.", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Velikost željene naložene datoteke je prevelika. (upload_max_filesize - php.ini) Kontaktirajte Administratorja.", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Velikost željene naložene datoteke je prevelika. (MAX_FILE_SIZE - html formi) Kontaktirajte Administratorja.", +"The uploaded file was only partially uploaded" => "Datoteka je bila le delno naložena.", +"No file was uploaded" => "Naloženih ni bilo nič Datotek.", +"Missing a temporary folder" => "Ni potrebne začasne datoteke. (temporary folder)", +"Files" => "Datoteke", +"Maximum upload size" => "Maksimalna velikost", +"Upload" => "Naloži gor", +"Nothing in here. Upload something!" => "Naloženih še ni bilo nič datotek.", +"Name" => "Ime", +"Download" => "Naloži dol", +"Size" => "Velikost", +"Modified" => "Urejeno", +"Delete" => "Izbriši", +"Upload too large" => "Nalaganje ni mogoče, ker je preveliko.", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Datoteke ki jih želiš naložiti presegajo maksimalno velikost na tem strežniku. Kontaktirajte Administratorja." +); diff --git a/files/l10n/sr.php b/files/l10n/sr.php index 445387ffa2f..7e2ac3b1366 100644 --- a/files/l10n/sr.php +++ b/files/l10n/sr.php @@ -1,8 +1,17 @@ "Нема грешке, фајл је успешно послат", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Послати фајл превазилази директиву upload_max_filesize из ", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Послати фајл превазилази директиву MAX_FILE_SIZE која је наведена у ХТМЛ форми", +"The uploaded file was only partially uploaded" => "Послати фајл је само делимично отпремљен!", +"No file was uploaded" => "Ниједан фајл није послат", +"Missing a temporary folder" => "Недостаје привремена фасцикла", "Files" => "Фајлови", "Maximum upload size" => "Максимална величина пошиљке", +"New" => "Нови", +"Text file" => "текстуални фајл", +"Folder" => "фасцикла", +"From the web" => "са веба", "Upload" => "Пошаљи", -"New Folder" => "Нова фасцикла", "Nothing in here. Upload something!" => "Овде нема ничег. Пошаљите нешто!", "Name" => "Име", "Download" => "Преузми", diff --git a/files/l10n/sr@latin.php b/files/l10n/sr@latin.php index 3cc0ee0f150..1b5addbc571 100644 --- a/files/l10n/sr@latin.php +++ b/files/l10n/sr@latin.php @@ -1,8 +1,13 @@ "Nema greške, fajl je uspešno poslat", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Poslati fajl prevazilazi direktivu upload_max_filesize iz ", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Poslati fajl prevazilazi direktivu MAX_FILE_SIZE koja je navedena u HTML formi", +"The uploaded file was only partially uploaded" => "Poslati fajl je samo delimično otpremljen!", +"No file was uploaded" => "Nijedan fajl nije poslat", +"Missing a temporary folder" => "Nedostaje privremena fascikla", "Files" => "Fajlovi", "Maximum upload size" => "Maksimalna veličina pošiljke", "Upload" => "Pošalji", -"New Folder" => "Nova fascikla", "Nothing in here. Upload something!" => "Ovde nema ničeg. Pošaljite nešto!", "Name" => "Ime", "Download" => "Preuzmi", diff --git a/files/l10n/sv.php b/files/l10n/sv.php index dd1ac479366..dfd32f3f5c2 100644 --- a/files/l10n/sv.php +++ b/files/l10n/sv.php @@ -1,14 +1,19 @@ "Inga fel uppstod. Filen laddades upp utan problem", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Den uppladdade filen överskrider upload_max_filesize direktivet i php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Den uppladdade filen överstiger MAX_FILE_SIZE direktivet som anges i HTML-formulär", +"The uploaded file was only partially uploaded" => "Den uppladdade filen var endast delvist uppladdad", +"No file was uploaded" => "Ingen fil blev uppladdad", +"Missing a temporary folder" => "Saknar en tillfällig mapp", "Files" => "Filer", "Maximum upload size" => "Maximal storlek att lägga upp", -"Upload" => "Lägg upp", -"New Folder" => "Ny katalog", -"Nothing in here. Upload something!" => "Ingenting här. Lägg upp något!", +"Upload" => "Ladda upp", +"Nothing in here. Upload something!" => "Ingenting här. Ladda upp något!", "Name" => "Namn", "Download" => "Ladda ned", "Size" => "Storlek", "Modified" => "Ändrad", "Delete" => "Ta bort", -"Upload too large" => "För stor överföring", -"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filerna du försöker lägga upp överstiger den maximala storleken för filöverföringar på servern." +"Upload too large" => "För stor uppladdning", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filerna du försöker ladda upp överstiger den maximala storleken för filöverföringar på servern." ); diff --git a/files/l10n/th_TH.php b/files/l10n/th_TH.php new file mode 100644 index 00000000000..e7e2fb94b1e --- /dev/null +++ b/files/l10n/th_TH.php @@ -0,0 +1,23 @@ + "ไม่มีข้อผิดพลาดใดๆ ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "ไฟล์ที่อัพโหลดมีขนาดเกินคำสั่ง upload_max_filesize ที่ระบุเอาไว้ในไฟล์ php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "ไฟล์ที่อัพโหลดมีขนาดเกินคำสั่ง MAX_FILE_SIZE ที่ระบุเอาไว้ในรูปแบบคำสั่งในภาษา HTML", +"The uploaded file was only partially uploaded" => "ไฟล์ที่อัพโหลดยังไม่ได้ถูกอัพโหลดอย่างสมบูรณ์", +"No file was uploaded" => "ยังไม่มีไฟล์ที่ถูกอัพโหลด", +"Missing a temporary folder" => "แฟ้มเอกสารชั่วคราวเกิดการสูญหาย", +"Files" => "ไฟล์", +"Maximum upload size" => "ขนาดไฟล์สูงสุดที่อัพโหลดได้", +"New" => "อัพโหลดไฟล์ใหม่", +"Text file" => "ไฟล์ข้อความ", +"Folder" => "แฟ้มเอกสาร", +"From the web" => "จากเวป", +"Upload" => "อัพโหลด", +"Nothing in here. Upload something!" => "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!", +"Name" => "ชื่อ", +"Download" => "ดาวน์โหลด", +"Size" => "ขนาด", +"Modified" => "ปรับปรุงล่าสุด", +"Delete" => "ลบ", +"Upload too large" => "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "ไฟล์ที่คุณพยายามที่จะอัพโหลดมีขนาดเกินกว่าขนาดสูงสุดที่กำหนดไว้ให้อัพโหลดได้สำหรับเซิร์ฟเวอร์นี้" +); diff --git a/files/l10n/tr.php b/files/l10n/tr.php new file mode 100644 index 00000000000..5fc46056175 --- /dev/null +++ b/files/l10n/tr.php @@ -0,0 +1,19 @@ + "Bir hata yok, dosya başarıyla yüklendi", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Yüklenen dosya php.ini de belirtilen upload_max_filesize sınırını aşıyor", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Yüklenen dosya HTML formundaki MAX_FILE_SIZE sınırını aşıyor", +"The uploaded file was only partially uploaded" => "Yüklenen dosyanın sadece bir kısmı yüklendi", +"No file was uploaded" => "Hiç dosya yüklenmedi", +"Missing a temporary folder" => "Geçici bir klasör eksik", +"Files" => "Dosyalar", +"Maximum upload size" => "Maksimum yükleme boyutu", +"Upload" => "Yükle", +"Nothing in here. Upload something!" => "Burada hiçbir şey yok. Birşeyler yükleyin!", +"Name" => "Ad", +"Download" => "İndir", +"Size" => "Boyut", +"Modified" => "Değiştirilme", +"Delete" => "Sil", +"Upload too large" => "Yüklemeniz çok büyük", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Yüklemeye çalıştığınız dosyalar bu sunucudaki maksimum yükleme boyutunu aşıyor." +); diff --git a/files/l10n/zh_CN.php b/files/l10n/zh_CN.php index abb2f9db232..ab23a55d29e 100644 --- a/files/l10n/zh_CN.php +++ b/files/l10n/zh_CN.php @@ -1,8 +1,17 @@ "没有发生错误,文件上传成功。", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "上传的文件大小超过了php.ini 中指定的upload_max_filesize", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上传的文件超过了在HTML 表单中指定的MAX_FILE_SIZE", +"The uploaded file was only partially uploaded" => "只上传了文件的一部分", +"No file was uploaded" => "文件没有上传", +"Missing a temporary folder" => "缺少临时目录", "Files" => "文件", "Maximum upload size" => "最大上传大小", +"New" => "新建", +"Text file" => "文本文件", +"Folder" => "文件夹", +"From the web" => "来自网络", "Upload" => "上传", -"New Folder" => "新建文件夹", "Nothing in here. Upload something!" => "这里还什么都没有。上传些东西吧!", "Name" => "名称", "Download" => "下载", diff --git a/files/templates/index.php b/files/templates/index.php index e2e9dc03001..9ebfa41cef2 100644 --- a/files/templates/index.php +++ b/files/templates/index.php @@ -1,35 +1,39 @@
    - -
    -
    - - - -
    - - - + +
    +
    + + t('New');?> + +
    - - -
    - -
    -
    -
    -
    +
    +
    + + + + + + + +
    +
    +
    +
    + + +
    -
    - -
    t('Nothing in here. Upload something!')?>
    - + +
    t('Nothing in here. Upload something!')?>
    + @@ -46,11 +50,11 @@ if (isset($_['files'])) { - +
    t( 'Modified' ); ?><?php echo $l->t('Delete')?>" />
    - +

    t('The files you are trying to upload exceed the maximum size for file uploads on this server.');?> diff --git a/files/templates/part.breadcrumb.php b/files/templates/part.breadcrumb.php index 9a265a9c1ea..ab81cc5c039 100644 --- a/files/templates/part.breadcrumb.php +++ b/files/templates/part.breadcrumb.php @@ -1,5 +1,6 @@ - -

    ")'> - "> + +
    svg" data-dir='' style='background-image:url("")'> + ">
    - + \ No newline at end of file diff --git a/files/templates/part.list.php b/files/templates/part.list.php index 6bf5efe2fb2..a364862119d 100644 --- a/files/templates/part.list.php +++ b/files/templates/part.list.php @@ -1,14 +1,19 @@ 200) $relative_date_color = 200; ?> - '> + if($relative_date_color>200) $relative_date_color = 200; + $name = str_replace('+','%20',urlencode($file['name'])); + $name = str_replace('%2F','/', $name); + $directory = str_replace('+','%20',urlencode($file['directory'])); + $directory = str_replace('%2F','/', $directory); ?> + ' data-write=''> - + diff --git a/index.php b/index.php index 6805e3a914d..9bd460be353 100644 --- a/index.php +++ b/index.php @@ -31,7 +31,7 @@ if($not_installed) { // Check for autosetup: $autosetup_file = OC::$SERVERROOT."/config/autoconfig.php"; if( file_exists( $autosetup_file )){ - error_log("Autoconfig file found, setting up owncloud..."); + OC_Log::write('core','Autoconfig file found, setting up owncloud...',OC_Log::INFO); include( $autosetup_file ); $_POST['install'] = 'true'; $_POST = array_merge ($_POST, $AUTOCONFIG); @@ -68,7 +68,7 @@ else { // remember was checked after last login if(isset($_COOKIE["oc_remember_login"]) && isset($_COOKIE["oc_token"]) && isset($_COOKIE["oc_username"]) && $_COOKIE["oc_remember_login"]) { if(defined("DEBUG") && DEBUG) { - error_log("Trying to login from cookie"); + OC_Log::write('core','Trying to login from cookie',OC_Log::DEBUG); } // confirm credentials in cookie if(isset($_COOKIE['oc_token']) && OC_User::userExists($_COOKIE['oc_username']) && @@ -86,7 +86,7 @@ else { if(OC_User::login($_POST["user"], $_POST["password"])) { if(!empty($_POST["remember_login"])){ if(defined("DEBUG") && DEBUG) { - error_log("Setting remember login to cookie"); + OC_Log::write('core','Setting remember login to cookie',OC_Log::DEBUG); } $token = md5($_POST["user"].time().$_POST['password']); OC_Preferences::setValue($_POST['user'], 'login', 'token', $token); @@ -100,6 +100,15 @@ else { $error = true; } } - + // The user is already authenticated using Apaches AuthType Basic... very usable in combination with LDAP + elseif(isset($_SERVER["PHP_AUTH_USER"]) && isset($_SERVER["PHP_AUTH_PW"])){ + if (OC_User::login($_SERVER["PHP_AUTH_USER"],$_SERVER["PHP_AUTH_PW"])) { + //OC_Log::write('core',"Logged in with HTTP Authentication",OC_Log::DEBUG); + OC_User::unsetMagicInCookie(); + OC_Util::redirectToDefaultPage(); + }else{ + $error = true; + } + } OC_Template::printGuestPage('', 'login', array('error' => $error, 'redirect' => isset($_REQUEST['redirect_url'])?$_REQUEST['redirect_url']:'' )); } diff --git a/l10n/.tx/config b/l10n/.tx/config new file mode 100644 index 00000000000..3a0c6c28dc6 --- /dev/null +++ b/l10n/.tx/config @@ -0,0 +1,38 @@ +[main] +host = https://www.transifex.net + +[owncloud.core] +file_filter = /core.po +source_file = templates/core.pot +source_lang = en + +[owncloud.calendar] +file_filter = /calendar.po +source_file = templates/calendar.pot +source_lang = en + +[owncloud.contacts] +file_filter = /contacts.po +source_file = templates/contacts.pot +source_lang = en + +[owncloud.files] +file_filter = /files.po +source_file = templates/files.pot +source_lang = en + +[owncloud.media] +file_filter = /media.po +source_file = templates/media.pot +source_lang = en + +[owncloud.settings] +file_filter = /settings.po +source_file = templates/settings.pot +source_lang = en + +[owncloud.gallery] +file_filter = /gallery.po +source_file = templates/gallery.pot +source_lang = en + diff --git a/l10n/ar/calendar.po b/l10n/ar/calendar.po new file mode 100644 index 00000000000..4ba4f72625d --- /dev/null +++ b/l10n/ar/calendar.po @@ -0,0 +1,637 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011, 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-25 09:22+0000\n" +"Last-Translator: blackcoder \n" +"Language-Team: Arabic (http://www.transifex.net/projects/p/owncloud/team/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" + +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "التوقيت الجديد" + +#: ajax/settimezone.php:22 +msgid "Timezone changed" +msgstr "تم تغيير المنطقة الزمنية" + +#: ajax/settimezone.php:24 +msgid "Invalid request" +msgstr "طلب غير مفهوم" + +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 +msgid "Calendar" +msgstr "الجدول الزمني" + +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "جدول زمني خاطئ" + +#: lib/app.php:60 lib/object.php:332 +msgid "Birthday" +msgstr "عيد ميلاد" + +#: lib/app.php:61 lib/object.php:333 +msgid "Business" +msgstr "عمل" + +#: lib/app.php:62 lib/object.php:334 +msgid "Call" +msgstr "إتصال" + +#: lib/app.php:63 lib/object.php:335 +msgid "Clients" +msgstr "الزبائن" + +#: lib/app.php:64 lib/object.php:336 +msgid "Deliverer" +msgstr "المرسل" + +#: lib/app.php:65 lib/object.php:337 +msgid "Holidays" +msgstr "عطلة" + +#: lib/app.php:66 lib/object.php:338 +msgid "Ideas" +msgstr "أفكار" + +#: lib/app.php:67 lib/object.php:339 +msgid "Journey" +msgstr "رحلة" + +#: lib/app.php:68 lib/object.php:340 +msgid "Jubilee" +msgstr "يوبيل" + +#: lib/app.php:69 lib/object.php:341 +msgid "Meeting" +msgstr "إجتماع" + +#: lib/app.php:70 lib/object.php:342 +msgid "Other" +msgstr "شيء آخر" + +#: lib/app.php:71 lib/object.php:343 +msgid "Personal" +msgstr "شخصي" + +#: lib/app.php:72 lib/object.php:344 +msgid "Projects" +msgstr "مشاريع" + +#: lib/app.php:73 lib/object.php:345 +msgid "Questions" +msgstr "اسئلة" + +#: lib/app.php:74 lib/object.php:346 +msgid "Work" +msgstr "العمل" + +#: lib/object.php:353 +msgid "Does not repeat" +msgstr "لا يعاد" + +#: lib/object.php:354 +msgid "Daily" +msgstr "يومي" + +#: lib/object.php:355 +msgid "Weekly" +msgstr "أسبوعي" + +#: lib/object.php:356 +msgid "Every Weekday" +msgstr "كل نهاية الأسبوع" + +#: lib/object.php:357 +msgid "Bi-Weekly" +msgstr "كل اسبوعين" + +#: lib/object.php:358 +msgid "Monthly" +msgstr "شهري" + +#: lib/object.php:359 +msgid "Yearly" +msgstr "سنوي" + +#: lib/object.php:366 +msgid "never" +msgstr "بتاتا" + +#: lib/object.php:367 +msgid "by occurrences" +msgstr "حسب تسلسل الحدوث" + +#: lib/object.php:368 +msgid "by date" +msgstr "حسب التاريخ" + +#: lib/object.php:375 +msgid "by monthday" +msgstr "حسب يوم الشهر" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "حسب يوم الاسبوع" + +#: lib/object.php:383 templates/lAfix.php:3 +msgid "Monday" +msgstr "الأثنين" + +#: lib/object.php:384 templates/lAfix.php:4 +msgid "Tuesday" +msgstr "الثلاثاء" + +#: lib/object.php:385 templates/lAfix.php:5 +msgid "Wednesday" +msgstr "الاربعاء" + +#: lib/object.php:386 templates/lAfix.php:6 +msgid "Thursday" +msgstr "الخميس" + +#: lib/object.php:387 templates/lAfix.php:7 +msgid "Friday" +msgstr "الجمعه" + +#: lib/object.php:388 templates/lAfix.php:8 +msgid "Saturday" +msgstr "السبت" + +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "الاحد" + +#: lib/object.php:396 +msgid "events week of month" +msgstr "الاحداث باسبوع الشهر" + +#: lib/object.php:397 +msgid "first" +msgstr "أول" + +#: lib/object.php:398 +msgid "second" +msgstr "ثاني" + +#: lib/object.php:399 +msgid "third" +msgstr "ثالث" + +#: lib/object.php:400 +msgid "fourth" +msgstr "رابع" + +#: lib/object.php:401 +msgid "fifth" +msgstr "خامس" + +#: lib/object.php:402 +msgid "last" +msgstr "أخير" + +#: lib/object.php:424 templates/lAfix.php:16 +msgid "January" +msgstr "كانون الثاني" + +#: lib/object.php:425 templates/lAfix.php:17 +msgid "February" +msgstr "شباط" + +#: lib/object.php:426 templates/lAfix.php:18 +msgid "March" +msgstr "آذار" + +#: lib/object.php:427 templates/lAfix.php:19 +msgid "April" +msgstr "نيسان" + +#: lib/object.php:428 templates/lAfix.php:20 +msgid "May" +msgstr "أيار" + +#: lib/object.php:429 templates/lAfix.php:21 +msgid "June" +msgstr "حزيران" + +#: lib/object.php:430 templates/lAfix.php:22 +msgid "July" +msgstr "تموز" + +#: lib/object.php:431 templates/lAfix.php:23 +msgid "August" +msgstr "آب" + +#: lib/object.php:432 templates/lAfix.php:24 +msgid "September" +msgstr "أيلول" + +#: lib/object.php:433 templates/lAfix.php:25 +msgid "October" +msgstr "تشرين الاول" + +#: lib/object.php:434 templates/lAfix.php:26 +msgid "November" +msgstr "تشرين الثاني" + +#: lib/object.php:435 templates/lAfix.php:27 +msgid "December" +msgstr "كانون الاول" + +#: lib/object.php:441 +msgid "by events date" +msgstr "حسب تاريخ الحدث" + +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "حسب يوم السنه" + +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "حسب رقم الاسبوع" + +#: lib/object.php:444 +msgid "by day and month" +msgstr "حسب اليوم و الشهر" + +#: lib/object.php:467 +msgid "Not an array" +msgstr "ليس صفيف" + +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "تاريخ" + +#: lib/search.php:40 +msgid "Cal." +msgstr "تقويم" + +#: templates/calendar.php:10 +msgid "All day" +msgstr "كل النهار" + +#: templates/calendar.php:11 +msgid "Missing fields" +msgstr "خانات خالية من المعلومات" + +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" +msgstr "عنوان" + +#: templates/calendar.php:14 +msgid "From Date" +msgstr "من تاريخ" + +#: templates/calendar.php:15 +msgid "From Time" +msgstr "إلى تاريخ" + +#: templates/calendar.php:16 +msgid "To Date" +msgstr "إلى يوم" + +#: templates/calendar.php:17 +msgid "To Time" +msgstr "إلى وقت" + +#: templates/calendar.php:18 +msgid "The event ends before it starts" +msgstr "هذا الحدث ينتهي قبل أن يبدأ" + +#: templates/calendar.php:19 +msgid "There was a database fail" +msgstr "خطأ في قاعدة البيانات" + +#: templates/calendar.php:52 +msgid "Week" +msgstr "إسبوع" + +#: templates/calendar.php:53 +msgid "Month" +msgstr "شهر" + +#: templates/calendar.php:54 +msgid "List" +msgstr "قائمة" + +#: templates/calendar.php:59 +msgid "Today" +msgstr "اليوم" + +#: templates/calendar.php:60 +msgid "Calendars" +msgstr "الجداول الزمنية" + +#: templates/calendar.php:78 +msgid "There was a fail, while parsing the file." +msgstr "لم يتم قراءة الملف بنجاح." + +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "أحد" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "أثن." + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "ثلا." + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "أرب." + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "خمي." + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "جمع." + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "سبت" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "ك2" + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "شبا." + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "اذار" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "نيس." + +#: templates/lAfix.php:32 +msgid "May." +msgstr "أيا." + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "حزي." + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "تمو." + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "آب" + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "أيل." + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "ت1" + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "ت2" + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "ك1" + +#: templates/part.choosecalendar.php:1 +msgid "Choose active calendars" +msgstr "إختر الجدول الزمني الرئيسي" + +#: templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "جدول زمني جديد" + +#: templates/part.choosecalendar.php:20 +#: templates/part.choosecalendar.rowfields.php:4 +msgid "CalDav Link" +msgstr "وصلة CalDav" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Download" +msgstr "تحميل" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Edit" +msgstr "تعديل" + +#: templates/part.choosecalendar.rowfields.php:4 +#: templates/part.editevent.php:9 +msgid "Delete" +msgstr "حذف" + +#: templates/part.editcalendar.php:9 +msgid "New calendar" +msgstr "جدول زمني جديد" + +#: templates/part.editcalendar.php:9 +msgid "Edit calendar" +msgstr "عادل الجدول الزمني" + +#: templates/part.editcalendar.php:12 +msgid "Displayname" +msgstr "الاسم المرئي" + +#: templates/part.editcalendar.php:23 +msgid "Active" +msgstr "حالي" + +#: templates/part.editcalendar.php:29 +msgid "Calendar color" +msgstr "لون الجدول الزمني" + +#: templates/part.editcalendar.php:42 +msgid "Save" +msgstr "إحفظ" + +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 +#: templates/part.newevent.php:6 +msgid "Submit" +msgstr "أرسل" + +#: templates/part.editcalendar.php:43 +msgid "Cancel" +msgstr "إلغاء" + +#: templates/part.editevent.php:1 +msgid "Edit an event" +msgstr "عادل حدث" + +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "تصدير المعلومات" + +#: templates/part.eventform.php:5 +msgid "Title of the Event" +msgstr "عنوان الحدث" + +#: templates/part.eventform.php:11 +msgid "Category" +msgstr "فئة" + +#: templates/part.eventform.php:13 +msgid "Select category" +msgstr "اختر الفئة" + +#: templates/part.eventform.php:37 +msgid "All Day Event" +msgstr "حدث في يوم كامل" + +#: templates/part.eventform.php:41 +msgid "From" +msgstr "من" + +#: templates/part.eventform.php:49 +msgid "To" +msgstr "إلى" + +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "خيارات متقدمة" + +#: templates/part.eventform.php:61 +msgid "Repeat" +msgstr "إعادة" + +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "تعديلات متقدمه" + +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "اختر ايام الاسبوع" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "اختر الايام" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "و التواريخ حسب يوم السنه." + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "و الاحداث حسب يوم الشهر." + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "اختر الاشهر" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "اختر الاسابيع" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "و الاحداث حسب اسبوع السنه" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "المده الفاصله" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "نهايه" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "الاحداث" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "مكان" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "مكان الحدث" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "مواصفات" + +#: templates/part.eventform.php:218 +msgid "Description of the Event" +msgstr "وصف الحدث" + +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "أدخل ملف التقويم" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "الرجاء إختر الجدول الزمني" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "انشاء جدول زمني جديد" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "أسم الجدول الزمني الجديد" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "إدخال" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "يتم ادخال الجدول الزمني" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "تم ادخال الجدول الزمني بنجاح" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "أغلق الحوار" + +#: templates/part.newevent.php:1 +msgid "Create a new event" +msgstr "إضافة حدث جديد" + +#: templates/settings.php:13 +msgid "Timezone" +msgstr "المنطقة الزمنية" + +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "راقب دائما تغير التقويم الزمني" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "شكل الوقت" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24 ساعة" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12 ساعة" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "عنوان لتحديث ال CalDAV الجدول الزمني" + + diff --git a/l10n/ar/contacts.po b/l10n/ar/contacts.po new file mode 100644 index 00000000000..311b3f93b6d --- /dev/null +++ b/l10n/ar/contacts.po @@ -0,0 +1,282 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011, 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-25 09:34+0000\n" +"Last-Translator: blackcoder \n" +"Language-Team: Arabic (http://www.transifex.net/projects/p/owncloud/team/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" + +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." +msgstr "خطء خلال توقيف كتاب العناوين." + +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "خطء خلال اضافة معرفه جديده." + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "لا يمكنك اضافه صفه خاليه." + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "يجب ملء على الاقل خانه واحده من العنوان." + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "خطء خلال اضافة صفة المعرفه." + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "خطء خلال اضافة كتاب عناوين." + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "خطء خلال تفعيل كتاب العناوين." + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "خطء خلال محي الصفه." + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "خطء خلال تعديل الصفه." + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "خطء خلال تعديل كتاب العناوين" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "المعارف" + +#: lib/app.php:52 +msgid "This is not your addressbook." +msgstr "هذا ليس دفتر عناوينك." + +#: lib/app.php:61 photo.php:36 +msgid "Contact could not be found." +msgstr "لم يتم العثور على الشخص." + +#: lib/app.php:89 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "المعلومات الموجودة في ال vCard غير صحيحة. الرجاء إعادة تحديث الصفحة." + +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 +msgid "Address" +msgstr "عنوان" + +#: lib/app.php:102 templates/part.addcardform.php:43 +msgid "Telephone" +msgstr "الهاتف" + +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 +msgid "Email" +msgstr "البريد الالكتروني" + +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 +msgid "Organization" +msgstr "المؤسسة" + +#: lib/app.php:116 lib/app.php:123 +msgid "Work" +msgstr "الوظيفة" + +#: lib/app.php:117 lib/app.php:121 +msgid "Home" +msgstr "البيت" + +#: lib/app.php:122 +msgid "Mobile" +msgstr "الهاتف المحمول" + +#: lib/app.php:124 +msgid "Text" +msgstr "معلومات إضافية" + +#: lib/app.php:125 +msgid "Voice" +msgstr "صوت" + +#: lib/app.php:126 +msgid "Fax" +msgstr "الفاكس" + +#: lib/app.php:127 +msgid "Video" +msgstr "الفيديو" + +#: lib/app.php:128 +msgid "Pager" +msgstr "الرنان" + +#: lib/search.php:22 +msgid "Contact" +msgstr "معرفه" + +#: photo.php:42 +msgid "This is not your contact." +msgstr ".هذا ليس من معارفي" + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "أضف شخص " + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "كتب العناوين" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "كتاب العناوين" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "الاسم" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "نوع" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "العنوان البريدي" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "إضافة" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "شارع" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "المدينة" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "المنطقة" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "رقم المنطقة" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "البلد" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "أضف شخص " + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "أختر كتاب العناوين الفعال" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "كتاب عناوين جديد" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "وصلة CardDav" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "انزال" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "تعديل" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Delete" +msgstr "حذف" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "انزال المعرفه" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "امحي المعرفه" + +#: templates/part.details.php:34 +msgid "Add" +msgstr "أدخل" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "كتاب عناوين جديد" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "عدل كتاب العناوين" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "الاسم المعروض" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "فعال" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "حفظ" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "ارسال" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "الغاء" + +#: templates/part.property.php:3 +msgid "Birthday" +msgstr "تاريخ الميلاد" + +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "مفضل" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 +msgid "Phone" +msgstr "الهاتف" + +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "تعديل" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "CardDAV مزامنه العناوين:" + + diff --git a/l10n/ar/core.po b/l10n/ar/core.po new file mode 100644 index 00000000000..637e1a126fa --- /dev/null +++ b/l10n/ar/core.po @@ -0,0 +1,171 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011, 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-20 12:23+0000\n" +"Last-Translator: blackcoder \n" +"Language-Team: Arabic (http://www.transifex.net/projects/p/owncloud/team/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" + +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "استرجاع كلمة السر" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "استخدم هذه الوصلة لاسترجاع كلمة السر: {link}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "سوف نرسل لك بريد يحتوي على وصلة لتجديد كلمة السر." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "تم طلب" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "محاولة دخول فاشلة!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "إسم المستخدم" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "طلب تعديل" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "لقد تم تعديل كلمة السر" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "الى صفحة الدخول" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "كلمة سر جديدة" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "تعديل كلمة السر" + +#: strings.php:5 +msgid "Personal" +msgstr "خصوصيات" + +#: strings.php:6 +msgid "Users" +msgstr "المستخدم" + +#: strings.php:7 +msgid "Apps" +msgstr "التطبيقات" + +#: strings.php:8 +msgid "Admin" +msgstr "مستخدم رئيسي" + +#: strings.php:9 +msgid "Help" +msgstr "المساعدة" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "لم يتم إيجاد" + +#: templates/installation.php:20 +msgid "Create an admin account" +msgstr "أضف
    مستخدم رئيسي " + +#: templates/installation.php:26 templates/login.php:12 +msgid "Password" +msgstr "كلمة السر" + +#: templates/installation.php:32 +msgid "Advanced" +msgstr "خيارات متقدمة" + +#: templates/installation.php:34 +msgid "Data folder" +msgstr "مجلد المعلومات" + +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "أسس قاعدة البيانات" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "سيتم استخدمه" + +#: templates/installation.php:79 +msgid "Database user" +msgstr "مستخدم قاعدة البيانات" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "كلمة سر مستخدم قاعدة البيانات" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "إسم قاعدة البيانات" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "خادم قاعدة البيانات" + +#: templates/installation.php:98 +msgid "Finish setup" +msgstr "انهاء التعديلات" + +#: templates/layout.guest.php:35 +msgid "web services under your control" +msgstr "خدمات الوب تحت تصرفك" + +#: templates/layout.user.php:34 +msgid "Log out" +msgstr "الخروج" + +#: templates/layout.user.php:46 templates/layout.user.php:47 +msgid "Settings" +msgstr "تعديلات" + +#: templates/login.php:5 +msgid "Lost your password?" +msgstr "هل نسيت كلمة السر؟" + +#: templates/login.php:15 +msgid "remember" +msgstr "تذكر" + +#: templates/login.php:16 +msgid "Log in" +msgstr "أدخل" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "تم الخروج بنجاح." + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "السابق" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "التالي" + + diff --git a/l10n/ar/files.po b/l10n/ar/files.po new file mode 100644 index 00000000000..5b3b489fcbe --- /dev/null +++ b/l10n/ar/files.po @@ -0,0 +1,112 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011, 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-20 12:24+0000\n" +"Last-Translator: blackcoder \n" +"Language-Team: Arabic (http://www.transifex.net/projects/p/owncloud/team/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" + +#: ajax/upload.php:19 +msgid "There is no error, the file uploaded with success" +msgstr "تم ترفيع الملفات بنجاح." + +#: ajax/upload.php:20 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "" +"حجم الملف الذي تريد ترفيعه أعلى مما upload_max_filesize يسمح به في ملف " +"php.ini" + +#: ajax/upload.php:21 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" +"حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML." + +#: ajax/upload.php:22 +msgid "The uploaded file was only partially uploaded" +msgstr "تم ترفيع جزء من الملفات الذي تريد ترفيعها فقط" + +#: ajax/upload.php:23 +msgid "No file was uploaded" +msgstr "لم يتم ترفيع أي من الملفات" + +#: ajax/upload.php:24 +msgid "Missing a temporary folder" +msgstr "المجلد المؤقت غير موجود" + +#: appinfo/app.php:8 +msgid "Files" +msgstr "الملفات" + +#: templates/admin.php:5 +msgid "Maximum upload size" +msgstr "الحد الأقصى لحجم الملفات التي يمكن رفعها" + +#: templates/index.php:7 +msgid "New" +msgstr "جديد" + +#: templates/index.php:10 +msgid "Text file" +msgstr "ملف" + +#: templates/index.php:11 +msgid "Folder" +msgstr "مجلد" + +#: templates/index.php:12 +msgid "From the web" +msgstr "من الوب" + +#: templates/index.php:22 +msgid "Upload" +msgstr "إرفع" + +#: templates/index.php:35 +msgid "Nothing in here. Upload something!" +msgstr "لا يوجد شيء هنا. إرفع بعض الملفات!" + +#: templates/index.php:43 +msgid "Name" +msgstr "الاسم" + +#: templates/index.php:45 +msgid "Download" +msgstr "تحميل" + +#: templates/index.php:49 +msgid "Size" +msgstr "حجم" + +#: templates/index.php:50 +msgid "Modified" +msgstr "معدل" + +#: templates/index.php:50 +msgid "Delete" +msgstr "محذوف" + +#: templates/index.php:58 +msgid "Upload too large" +msgstr "حجم الترفيع أعلى من المسموح" + +#: templates/index.php:60 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم." + + diff --git a/l10n/ar/gallery.po b/l10n/ar/gallery.po new file mode 100644 index 00000000000..10a1f69b9ee --- /dev/null +++ b/l10n/ar/gallery.po @@ -0,0 +1,53 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-25 09:38+0000\n" +"Last-Translator: blackcoder \n" +"Language-Team: Arabic (http://www.transifex.net/projects/p/owncloud/team/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "معرض صور" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "بحث في المجلدات" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "لم يتم العثور على صور" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "صناعة مصغرات" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "هل تريد محي الالبوم" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "أدخل اسم معرض جديد" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "اعادة البحث" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "رجوع" + + diff --git a/l10n/ar/media.po b/l10n/ar/media.po new file mode 100644 index 00000000000..7438bf29e3f --- /dev/null +++ b/l10n/ar/media.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Arabic (http://www.transifex.net/projects/p/owncloud/team/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" + +#: appinfo/app.php:32 +msgid "Music" +msgstr "الموسيقى" + +#: templates/music.php:3 templates/player.php:13 +msgid "Play" +msgstr "إلعب" + +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 +msgid "Pause" +msgstr "تجميد" + +#: templates/music.php:5 +msgid "Previous" +msgstr "السابق" + +#: templates/music.php:6 templates/player.php:15 +msgid "Next" +msgstr "التالي" + +#: templates/music.php:7 +msgid "Mute" +msgstr "إلغاء الصوت" + +#: templates/music.php:8 +msgid "Unmute" +msgstr "تشغيل الصوت" + +#: templates/music.php:25 +msgid "Rescan Collection" +msgstr "إعادة البحث عن ملفات الموسيقى" + +#: templates/music.php:37 +msgid "Artist" +msgstr "الفنان" + +#: templates/music.php:38 +msgid "Album" +msgstr "الألبوم" + +#: templates/music.php:39 +msgid "Title" +msgstr "العنوان" + + diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po new file mode 100644 index 00000000000..fe46bfd2d20 --- /dev/null +++ b/l10n/ar/settings.po @@ -0,0 +1,158 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2012. +# , 2011, 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:25+0100\n" +"PO-Revision-Date: 2012-01-25 09:39+0000\n" +"Last-Translator: blackcoder \n" +"Language-Team: Arabic (http://www.transifex.net/projects/p/owncloud/team/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" + +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "تم تغير العنوان البريدي" + +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 +msgid "Invalid request" +msgstr "طلبك غير مفهوم" + +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "تم تغيير ال OpenID" + +#: ajax/setlanguage.php:14 +msgid "Language changed" +msgstr "تم تغيير اللغة" + +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "__language_name__" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "مستوى المراقبه" + +#: templates/apps.php:8 +msgid "Add your application" +msgstr "أضف تطبيقاتك" + +#: templates/apps.php:21 +msgid "Select an App" +msgstr "إختر تطبيقاً" + +#: templates/apps.php:23 +msgid "-licensed" +msgstr "-مسجل" + +#: templates/apps.php:23 +msgid "by" +msgstr "من قبل" + +#: templates/help.php:8 +msgid "Ask a question" +msgstr "إسأل سؤال" + +#: templates/help.php:20 +msgid "Problems connecting to help database." +msgstr "الاتصال بقاعدة بيانات المساعدة لم يتم بنجاح" + +#: templates/help.php:21 +msgid "Go there manually." +msgstr "إذهب هنالك بنفسك" + +#: templates/help.php:29 +msgid "Answer" +msgstr "الجواب" + +#: templates/personal.php:8 +msgid "You use" +msgstr "أنت تستخدم" + +#: templates/personal.php:8 +msgid "of the available" +msgstr "من الموجود" + +#: templates/personal.php:13 +msgid "Your password got changed" +msgstr "لقد تم تغيير كلمات السر" + +#: templates/personal.php:14 +msgid "Unable to change your password" +msgstr "لم يتم تعديل كلمة السر بنجاح" + +#: templates/personal.php:15 +msgid "Current password" +msgstr "كلمات السر الحالية" + +#: templates/personal.php:16 +msgid "New password" +msgstr "كلمات سر جديدة" + +#: templates/personal.php:17 +msgid "show" +msgstr "أظهر" + +#: templates/personal.php:18 +msgid "Change password" +msgstr "عدل كلمة السر" + +#: templates/personal.php:24 +msgid "Email" +msgstr "العنوان البريدي" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "عنوانك البريدي" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "أدخل عنوانك البريدي لتفعيل استرجاع كلمة المرور" + +#: templates/personal.php:32 templates/personal.php:33 +msgid "Language" +msgstr "اللغة" + +#: templates/personal.php:38 +msgid "Help translate" +msgstr "ساعد في الترجمه" + +#: templates/personal.php:45 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "إستخدم هذا العنوان للإتصال ب ownCloud داخل نظام الملفات " + +#: templates/users.php:15 templates/users.php:30 +msgid "Name" +msgstr "الاسم" + +#: templates/users.php:16 templates/users.php:31 +msgid "Password" +msgstr "كلمات السر" + +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 +msgid "Groups" +msgstr "مجموعات" + +#: templates/users.php:23 +msgid "Create" +msgstr "انشئ" + +#: templates/users.php:33 +msgid "Quota" +msgstr "حصه" + +#: templates/users.php:58 +msgid "Delete" +msgstr "حذف" + + diff --git a/l10n/bg_BG/calendar.po b/l10n/bg_BG/calendar.po index 7369aa68358..9da48896a4c 100644 --- a/l10n/bg_BG/calendar.po +++ b/l10n/bg_BG/calendar.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-15 13:45+0000\n" +"Last-Translator: icewind \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.net/projects/p/owncloud/team/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,321 +18,403 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/createcalendar.php:18 ajax/settimezone.php:19 -#: ajax/updatecalendar.php:18 -msgid "Authentication error" -msgstr "Проблем с идентификацията" - -#: ajax/editeventform.php:25 -msgid "Wrong calendar" +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" msgstr "" -#: ajax/settimezone.php:27 +#: ajax/settimezone.php:22 msgid "Timezone changed" msgstr "Часовата зона е сменена" -#: ajax/settimezone.php:29 +#: ajax/settimezone.php:24 msgid "Invalid request" msgstr "Невалидна заявка" -#: appinfo/app.php:19 templates/part.eventform.php:27 -#: templates/part.eventinfo.php:18 +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 msgid "Calendar" msgstr "Календар" -#: lib/object.php:292 +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "" + +#: lib/app.php:60 lib/object.php:332 msgid "Birthday" msgstr "" -#: lib/object.php:293 +#: lib/app.php:61 lib/object.php:333 msgid "Business" msgstr "" -#: lib/object.php:294 +#: lib/app.php:62 lib/object.php:334 msgid "Call" msgstr "" -#: lib/object.php:295 +#: lib/app.php:63 lib/object.php:335 msgid "Clients" msgstr "" -#: lib/object.php:296 +#: lib/app.php:64 lib/object.php:336 msgid "Deliverer" msgstr "" -#: lib/object.php:297 +#: lib/app.php:65 lib/object.php:337 msgid "Holidays" msgstr "" -#: lib/object.php:298 +#: lib/app.php:66 lib/object.php:338 msgid "Ideas" msgstr "" -#: lib/object.php:299 +#: lib/app.php:67 lib/object.php:339 msgid "Journey" msgstr "" -#: lib/object.php:300 +#: lib/app.php:68 lib/object.php:340 msgid "Jubilee" msgstr "" -#: lib/object.php:301 +#: lib/app.php:69 lib/object.php:341 msgid "Meeting" msgstr "" -#: lib/object.php:302 +#: lib/app.php:70 lib/object.php:342 msgid "Other" msgstr "" -#: lib/object.php:303 +#: lib/app.php:71 lib/object.php:343 msgid "Personal" msgstr "" -#: lib/object.php:304 +#: lib/app.php:72 lib/object.php:344 msgid "Projects" msgstr "" -#: lib/object.php:305 +#: lib/app.php:73 lib/object.php:345 msgid "Questions" msgstr "" -#: lib/object.php:306 +#: lib/app.php:74 lib/object.php:346 msgid "Work" msgstr "" -#: lib/object.php:313 +#: lib/object.php:353 msgid "Does not repeat" msgstr "Не се повтаря" -#: lib/object.php:314 +#: lib/object.php:354 msgid "Daily" msgstr "Дневно" -#: lib/object.php:315 +#: lib/object.php:355 msgid "Weekly" msgstr "Седмично" -#: lib/object.php:316 +#: lib/object.php:356 msgid "Every Weekday" msgstr "Всеки делничен ден" -#: lib/object.php:317 +#: lib/object.php:357 msgid "Bi-Weekly" msgstr "Двуседмично" -#: lib/object.php:318 +#: lib/object.php:358 msgid "Monthly" msgstr "Месечно" -#: lib/object.php:319 +#: lib/object.php:359 msgid "Yearly" msgstr "Годишно" -#: lib/object.php:337 +#: lib/object.php:366 +msgid "never" +msgstr "" + +#: lib/object.php:367 +msgid "by occurrences" +msgstr "" + +#: lib/object.php:368 +msgid "by date" +msgstr "" + +#: lib/object.php:375 +msgid "by monthday" +msgstr "" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "" + +#: lib/object.php:383 templates/lAfix.php:3 +msgid "Monday" +msgstr "" + +#: lib/object.php:384 templates/lAfix.php:4 +msgid "Tuesday" +msgstr "" + +#: lib/object.php:385 templates/lAfix.php:5 +msgid "Wednesday" +msgstr "" + +#: lib/object.php:386 templates/lAfix.php:6 +msgid "Thursday" +msgstr "" + +#: lib/object.php:387 templates/lAfix.php:7 +msgid "Friday" +msgstr "" + +#: lib/object.php:388 templates/lAfix.php:8 +msgid "Saturday" +msgstr "" + +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "" + +#: lib/object.php:396 +msgid "events week of month" +msgstr "" + +#: lib/object.php:397 +msgid "first" +msgstr "" + +#: lib/object.php:398 +msgid "second" +msgstr "" + +#: lib/object.php:399 +msgid "third" +msgstr "" + +#: lib/object.php:400 +msgid "fourth" +msgstr "" + +#: lib/object.php:401 +msgid "fifth" +msgstr "" + +#: lib/object.php:402 +msgid "last" +msgstr "" + +#: lib/object.php:424 templates/lAfix.php:16 +msgid "January" +msgstr "" + +#: lib/object.php:425 templates/lAfix.php:17 +msgid "February" +msgstr "" + +#: lib/object.php:426 templates/lAfix.php:18 +msgid "March" +msgstr "" + +#: lib/object.php:427 templates/lAfix.php:19 +msgid "April" +msgstr "" + +#: lib/object.php:428 templates/lAfix.php:20 +msgid "May" +msgstr "" + +#: lib/object.php:429 templates/lAfix.php:21 +msgid "June" +msgstr "" + +#: lib/object.php:430 templates/lAfix.php:22 +msgid "July" +msgstr "" + +#: lib/object.php:431 templates/lAfix.php:23 +msgid "August" +msgstr "" + +#: lib/object.php:432 templates/lAfix.php:24 +msgid "September" +msgstr "" + +#: lib/object.php:433 templates/lAfix.php:25 +msgid "October" +msgstr "" + +#: lib/object.php:434 templates/lAfix.php:26 +msgid "November" +msgstr "" + +#: lib/object.php:435 templates/lAfix.php:27 +msgid "December" +msgstr "" + +#: lib/object.php:441 +msgid "by events date" +msgstr "" + +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "" + +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "" + +#: lib/object.php:444 +msgid "by day and month" +msgstr "" + +#: lib/object.php:467 msgid "Not an array" msgstr "" -#: templates/calendar.php:3 +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "" + +#: lib/search.php:40 +msgid "Cal." +msgstr "" + +#: templates/calendar.php:10 msgid "All day" msgstr "Всички дни" -#: templates/calendar.php:32 -msgid "Sunday" -msgstr "Неделя" - -#: templates/calendar.php:32 -msgid "Monday" -msgstr "Понеделник" - -#: templates/calendar.php:32 -msgid "Tuesday" -msgstr "Вторник" - -#: templates/calendar.php:32 -msgid "Wednesday" -msgstr "Сряда" - -#: templates/calendar.php:32 -msgid "Thursday" -msgstr "Четвъртък" - -#: templates/calendar.php:32 -msgid "Friday" -msgstr "Петък" - -#: templates/calendar.php:32 -msgid "Saturday" -msgstr "Събота" - -#: templates/calendar.php:33 -msgid "Sun." -msgstr "Нед." - -#: templates/calendar.php:33 -msgid "Mon." -msgstr "Пон." - -#: templates/calendar.php:33 -msgid "Tue." -msgstr "Втр." - -#: templates/calendar.php:33 -msgid "Wed." -msgstr "Сря." - -#: templates/calendar.php:33 -msgid "Thu." -msgstr "Чет." - -#: templates/calendar.php:33 -msgid "Fri." -msgstr "Пет." - -#: templates/calendar.php:33 -msgid "Sat." -msgstr "Съб." - -#: templates/calendar.php:34 -msgid "January" -msgstr "Януари" - -#: templates/calendar.php:34 -msgid "February" -msgstr "Февруари" - -#: templates/calendar.php:34 -msgid "March" -msgstr "Март" - -#: templates/calendar.php:34 -msgid "April" -msgstr "Април" - -#: templates/calendar.php:34 -msgid "May" -msgstr "Май" - -#: templates/calendar.php:34 -msgid "June" -msgstr "Юни" - -#: templates/calendar.php:34 -msgid "July" -msgstr "Юли" - -#: templates/calendar.php:34 -msgid "August" -msgstr "Август" - -#: templates/calendar.php:34 -msgid "September" -msgstr "Септември" - -#: templates/calendar.php:34 -msgid "October" -msgstr "Октомври" - -#: templates/calendar.php:34 -msgid "November" -msgstr "Ноември" - -#: templates/calendar.php:34 -msgid "December" -msgstr "Декември" - -#: templates/calendar.php:35 -msgid "Jan." -msgstr "Ян." - -#: templates/calendar.php:35 -msgid "Feb." -msgstr "Фв." - -#: templates/calendar.php:35 -msgid "Mar." -msgstr "Март" - -#: templates/calendar.php:35 -msgid "Apr." -msgstr "Апр." - -#: templates/calendar.php:35 -msgid "May." +#: templates/calendar.php:11 +msgid "Missing fields" msgstr "" -#: templates/calendar.php:35 -msgid "Jun." -msgstr "Юни" +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" +msgstr "Заглавие" -#: templates/calendar.php:35 -msgid "Jul." -msgstr "Юли" +#: templates/calendar.php:14 +msgid "From Date" +msgstr "" -#: templates/calendar.php:35 -msgid "Aug." -msgstr "Авг." +#: templates/calendar.php:15 +msgid "From Time" +msgstr "" -#: templates/calendar.php:35 -msgid "Sep." -msgstr "Сеп." +#: templates/calendar.php:16 +msgid "To Date" +msgstr "" -#: templates/calendar.php:35 -msgid "Oct." -msgstr "Окт." +#: templates/calendar.php:17 +msgid "To Time" +msgstr "" -#: templates/calendar.php:35 -msgid "Nov." -msgstr "Ное." +#: templates/calendar.php:18 +msgid "The event ends before it starts" +msgstr "" -#: templates/calendar.php:35 -msgid "Dec." -msgstr "Дек." +#: templates/calendar.php:19 +msgid "There was a database fail" +msgstr "" -#: templates/calendar.php:36 templates/calendar.php:50 -#: templates/calendar.php:116 +#: templates/calendar.php:52 msgid "Week" msgstr "Седмица" -#: templates/calendar.php:37 templates/calendar.php:51 -msgid "Weeks" -msgstr "Седмици" - -#: templates/calendar.php:38 -msgid "More before {startdate}" -msgstr "" - -#: templates/calendar.php:39 -msgid "More after {enddate}" -msgstr "" - -#: templates/calendar.php:49 -msgid "Day" -msgstr "Ден" - -#: templates/calendar.php:52 +#: templates/calendar.php:53 msgid "Month" msgstr "Месец" -#: templates/calendar.php:53 +#: templates/calendar.php:54 msgid "List" msgstr "" -#: templates/calendar.php:58 +#: templates/calendar.php:59 msgid "Today" msgstr "Днес" -#: templates/calendar.php:59 +#: templates/calendar.php:60 msgid "Calendars" msgstr "Календари" -#: templates/calendar.php:76 templates/calendar.php:94 -msgid "Time" -msgstr "Час" - -#: templates/calendar.php:169 +#: templates/calendar.php:78 msgid "There was a fail, while parsing the file." msgstr "Възникна проблем с разлистването на файла." +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "" + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "" + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "" + +#: templates/lAfix.php:32 +msgid "May." +msgstr "" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "" + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "" + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "" + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "" + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "" + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "" + #: templates/part.choosecalendar.php:1 msgid "Choose active calendars" msgstr "Изберете активен календар" @@ -351,12 +433,11 @@ msgid "Download" msgstr "Изтегляне" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.eventinfo.php:64 msgid "Edit" msgstr "Промяна" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.editevent.php:8 +#: templates/part.editevent.php:9 msgid "Delete" msgstr "" @@ -376,90 +457,181 @@ msgstr "Екранно име" msgid "Active" msgstr "Активен" -#: templates/part.editcalendar.php:29 templates/part.eventform.php:88 -#: templates/part.eventinfo.php:58 -msgid "Description" -msgstr "Описание" - -#: templates/part.editcalendar.php:35 +#: templates/part.editcalendar.php:29 msgid "Calendar color" msgstr "Цвят на календара" -#: templates/part.editcalendar.php:41 +#: templates/part.editcalendar.php:42 msgid "Save" msgstr "" -#: templates/part.editcalendar.php:41 templates/part.editevent.php:7 +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 #: templates/part.newevent.php:6 msgid "Submit" msgstr "Продължи" -#: templates/part.editcalendar.php:42 +#: templates/part.editcalendar.php:43 msgid "Cancel" msgstr "" -#: templates/part.editevent.php:1 templates/part.eventinfo.php:1 +#: templates/part.editevent.php:1 msgid "Edit an event" msgstr "Промяна на събитие" -#: templates/part.eventform.php:3 templates/part.eventinfo.php:4 -msgid "Title" -msgstr "Заглавие" +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "" #: templates/part.eventform.php:5 msgid "Title of the Event" msgstr "Наименование" -#: templates/part.eventform.php:9 templates/part.eventinfo.php:9 -msgid "Location" -msgstr "Локация" - #: templates/part.eventform.php:11 -msgid "Location of the Event" -msgstr "Локация" - -#: templates/part.eventform.php:17 templates/part.eventinfo.php:16 msgid "Category" msgstr "Категория" -#: templates/part.eventform.php:19 +#: templates/part.eventform.php:13 msgid "Select category" msgstr "" -#: templates/part.eventform.php:45 templates/part.eventinfo.php:28 +#: templates/part.eventform.php:37 msgid "All Day Event" msgstr "Целодневно събитие" -#: templates/part.eventform.php:49 templates/part.eventinfo.php:31 +#: templates/part.eventform.php:41 msgid "From" msgstr "От" -#: templates/part.eventform.php:57 templates/part.eventinfo.php:38 +#: templates/part.eventform.php:49 msgid "To" msgstr "До" -#: templates/part.eventform.php:65 templates/part.eventinfo.php:44 +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "" + +#: templates/part.eventform.php:61 msgid "Repeat" msgstr "Повтори" -#: templates/part.eventform.php:81 templates/part.eventinfo.php:51 -msgid "Attendees" -msgstr "Присъстващи" +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "" -#: templates/part.eventform.php:89 +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Локация" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Локация" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Описание" + +#: templates/part.eventform.php:218 msgid "Description of the Event" msgstr "Описание" -#: templates/part.eventinfo.php:63 -msgid "Close" -msgstr "Затвори" +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "" #: templates/part.newevent.php:1 msgid "Create a new event" msgstr "Ново събитие" -#: templates/settings.php:11 +#: templates/settings.php:13 msgid "Timezone" msgstr "Часова зона" +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "" + +#: templates/settings.php:34 +msgid "24h" +msgstr "" + +#: templates/settings.php:35 +msgid "12h" +msgstr "" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "" + diff --git a/l10n/bg_BG/contacts.po b/l10n/bg_BG/contacts.po index 4b6ca8fc510..77a01bae26d 100644 --- a/l10n/bg_BG/contacts.po +++ b/l10n/bg_BG/contacts.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 20:10+0200\n" -"PO-Revision-Date: 2011-09-23 18:10+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.net/projects/p/owncloud/team/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,164 +17,265 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 -#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 -#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 -#: ajax/showsetproperty.php:32 photo.php:32 -msgid "You need to log in." +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." msgstr "" -#: ajax/addcard.php:37 +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: lib/app.php:52 msgid "This is not your addressbook." msgstr "" -#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 -#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 -#: ajax/showsetproperty.php:38 photo.php:39 +#: lib/app.php:61 photo.php:36 msgid "Contact could not be found." msgstr "" -#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 -#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 -#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 -msgid "This is not your contact." -msgstr "" - -#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 -#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 -msgid "vCard could not be read." -msgstr "" - -#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 -#: ajax/showsetproperty.php:62 +#: lib/app.php:89 msgid "Information about vCard is incorrect. Please reload the page." msgstr "" -#: photo.php:53 -msgid "This card is not RFC compatible." -msgstr "" - -#: photo.php:90 -msgid "This card does not contain a photo." -msgstr "" - -#: templates/index.php:8 -msgid "Add Contact" -msgstr "" - -#: templates/part.addcardform.php:5 -msgid "Group" -msgstr "" - -#: templates/part.addcardform.php:12 templates/part.property.php:3 -msgid "Name" -msgstr "" - -#: templates/part.addcardform.php:14 -msgid "Create Contact" -msgstr "" - -#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 msgid "Address" msgstr "" -#: templates/part.addpropertyform.php:5 +#: lib/app.php:102 templates/part.addcardform.php:43 msgid "Telephone" msgstr "" -#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 msgid "Email" msgstr "" -#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 msgid "Organization" msgstr "" -#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +#: lib/app.php:116 lib/app.php:123 msgid "Work" msgstr "" -#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +#: lib/app.php:117 lib/app.php:121 msgid "Home" msgstr "" -#: templates/part.addpropertyform.php:20 templates/part.property.php:48 -#: templates/part.setpropertyform.php:5 -msgid "PO Box" -msgstr "" - -#: templates/part.addpropertyform.php:21 templates/part.property.php:51 -#: templates/part.setpropertyform.php:6 -msgid "Extended" -msgstr "" - -#: templates/part.addpropertyform.php:22 templates/part.property.php:54 -#: templates/part.setpropertyform.php:7 -msgid "Street" -msgstr "" - -#: templates/part.addpropertyform.php:23 templates/part.property.php:57 -#: templates/part.setpropertyform.php:8 -msgid "City" -msgstr "" - -#: templates/part.addpropertyform.php:24 templates/part.property.php:60 -#: templates/part.setpropertyform.php:9 -msgid "Region" -msgstr "" - -#: templates/part.addpropertyform.php:25 templates/part.property.php:63 -#: templates/part.setpropertyform.php:10 -msgid "Zipcode" -msgstr "" - -#: templates/part.addpropertyform.php:26 templates/part.property.php:66 -#: templates/part.setpropertyform.php:11 -msgid "Country" -msgstr "" - -#: templates/part.addpropertyform.php:31 +#: lib/app.php:122 msgid "Mobile" msgstr "" -#: templates/part.addpropertyform.php:33 +#: lib/app.php:124 msgid "Text" msgstr "" -#: templates/part.addpropertyform.php:34 +#: lib/app.php:125 msgid "Voice" msgstr "" -#: templates/part.addpropertyform.php:35 +#: lib/app.php:126 msgid "Fax" msgstr "" -#: templates/part.addpropertyform.php:36 +#: lib/app.php:127 msgid "Video" msgstr "" -#: templates/part.addpropertyform.php:37 +#: lib/app.php:128 msgid "Pager" msgstr "" -#: templates/part.details.php:33 -msgid "Delete" +#: lib/search.php:22 +msgid "Contact" msgstr "" -#: templates/part.details.php:34 -msgid "Add Property" +#: photo.php:42 +msgid "This is not your contact." msgstr "" -#: templates/part.property.php:9 -msgid "Birthday" +#: templates/index.php:6 +msgid "Add Contact" msgstr "" -#: templates/part.property.php:29 -msgid "Phone" +#: templates/index.php:7 +msgid "Addressbooks" msgstr "" -#: templates/part.setpropertyform.php:17 +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 msgid "Edit" msgstr "" +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "" + +#: templates/part.property.php:3 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "" + diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index f23044c9878..c7db7403c9f 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-06 19:20+0000\n" -"Last-Translator: adin \n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.net/projects/p/owncloud/team/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,6 +20,51 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "Ще получите връзка за нулиране на паролата Ви." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Заявено" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Входа пропадна!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Потребител" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Нулиране на заявка" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Вашата парола е нулирана" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Нова парола" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Нулиране на парола" + #: strings.php:5 msgid "Personal" msgstr "Лични" @@ -48,54 +93,50 @@ msgstr "облакът не намерен" msgid "Create an admin account" msgstr "Създаване на админ профил" -#: templates/installation.php:21 -msgid "Username" -msgstr "Потребител" - -#: templates/installation.php:22 +#: templates/installation.php:26 templates/login.php:12 msgid "Password" msgstr "Парола" -#: templates/installation.php:27 -msgid "Configure the database" -msgstr "Конфигуриране на базата" - -#: templates/installation.php:32 templates/installation.php:43 -#: templates/installation.php:53 -msgid "will be used" -msgstr "ще се ползва" - -#: templates/installation.php:64 -msgid "Database user" -msgstr "Потребител за базата" - -#: templates/installation.php:65 -msgid "Database password" -msgstr "Парола за базата" - -#: templates/installation.php:66 -msgid "Database name" -msgstr "Име на базата" - -#: templates/installation.php:72 +#: templates/installation.php:32 msgid "Advanced" msgstr "Разширено" -#: templates/installation.php:75 -msgid "Database host" -msgstr "Хост за базата" - -#: templates/installation.php:76 +#: templates/installation.php:34 msgid "Data folder" msgstr "Директория за данни" +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Конфигуриране на базата" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "ще се ползва" + #: templates/installation.php:79 +msgid "Database user" +msgstr "Потребител за базата" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Парола за базата" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Име на базата" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Хост за базата" + +#: templates/installation.php:98 msgid "Finish setup" msgstr "Завършване на настройките" #: templates/layout.guest.php:35 -msgid "gives you freedom and control over your own data" -msgstr "дава Ви свобода и контрол на Вашите лични данни" +msgid "web services under your control" +msgstr "" #: templates/layout.user.php:34 msgid "Log out" @@ -105,38 +146,22 @@ msgstr "Изход" msgid "Settings" msgstr "Настройки" -#: templates/login.php:4 +#: templates/login.php:5 msgid "Lost your password?" msgstr "Забравена парола?" -#: templates/login.php:9 templates/login.php:13 +#: templates/login.php:15 msgid "remember" msgstr "запомни" +#: templates/login.php:16 +msgid "Log in" +msgstr "" + #: templates/logout.php:1 msgid "You are logged out." msgstr "Вие излязохте." -#: templates/lostpassword.php:3 -msgid "You will receive a link to reset your password via Email." -msgstr "Ще получите връзка за да нулирате паролата си." - -#: templates/lostpassword.php:5 -msgid "Requested" -msgstr "Заявено" - -#: templates/lostpassword.php:8 -msgid "Login failed!" -msgstr "Входа пропадна!" - -#: templates/lostpassword.php:10 -msgid "Username or Email" -msgstr "Потребителско име или Email" - -#: templates/lostpassword.php:11 -msgid "Request reset" -msgstr "Заявка за нулиране" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "пред." @@ -145,16 +170,4 @@ msgstr "пред." msgid "next" msgstr "следващо" -#: templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "Вашата парола е нулирана" - -#: templates/resetpassword.php:6 -msgid "New password" -msgstr "Нова парола" - -#: templates/resetpassword.php:7 -msgid "Reset password" -msgstr "Нулиране на парола" - diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 475f6dc3fae..3ed53c3a4b0 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.net/projects/p/owncloud/team/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,33 +18,37 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:24 +#: ajax/upload.php:19 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "Файлът е качен успешно" -#: ajax/upload.php:25 +#: ajax/upload.php:20 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "" +"Файлът който се опитвате да качите, надвишава зададените стойности в " +"upload_max_filesize в PHP.INI" -#: ajax/upload.php:26 +#: ajax/upload.php:21 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" +"Файлът който се опитвате да качите надвишава стойностите в MAX_FILE_SIZE в " +"HTML формата." -#: ajax/upload.php:27 +#: ajax/upload.php:22 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "Файлът е качен частично" -#: ajax/upload.php:28 +#: ajax/upload.php:23 msgid "No file was uploaded" -msgstr "" +msgstr "Фахлът не бе качен" -#: ajax/upload.php:29 +#: ajax/upload.php:24 msgid "Missing a temporary folder" -msgstr "" +msgstr "Липсва временната папка" -#: appinfo/app.php:7 +#: appinfo/app.php:8 msgid "Files" msgstr "Файлове" @@ -52,43 +56,55 @@ msgstr "Файлове" msgid "Maximum upload size" msgstr "Макс. размер за качване" +#: templates/index.php:7 +msgid "New" +msgstr "" + #: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:11 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From the web" +msgstr "" + +#: templates/index.php:22 msgid "Upload" msgstr "Качване" -#: templates/index.php:17 -msgid "New Folder" -msgstr "Нова папка" - -#: templates/index.php:31 +#: templates/index.php:35 msgid "Nothing in here. Upload something!" msgstr "Няма нищо, качете нещо!" -#: templates/index.php:39 +#: templates/index.php:43 msgid "Name" msgstr "Име" -#: templates/index.php:41 +#: templates/index.php:45 msgid "Download" msgstr "Изтегляне" -#: templates/index.php:45 +#: templates/index.php:49 msgid "Size" msgstr "Размер" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Modified" msgstr "Променено" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Delete" msgstr "Изтриване" -#: templates/index.php:54 +#: templates/index.php:58 msgid "Upload too large" msgstr "Файлът е прекалено голям" -#: templates/index.php:56 +#: templates/index.php:60 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." diff --git a/l10n/bg_BG/gallery.po b/l10n/bg_BG/gallery.po new file mode 100644 index 00000000000..342a60c277f --- /dev/null +++ b/l10n/bg_BG/gallery.po @@ -0,0 +1,52 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.net/projects/p/owncloud/team/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" + + diff --git a/l10n/bg_BG/media.po b/l10n/bg_BG/media.po index e8fa24bbe50..b06ecc85d90 100644 --- a/l10n/bg_BG/media.po +++ b/l10n/bg_BG/media.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-06 08:43+0000\n" -"Last-Translator: ep98 \n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.net/projects/p/owncloud/team/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,15 +18,15 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: appinfo/app.php:31 +#: appinfo/app.php:32 msgid "Music" msgstr "Музика" -#: templates/music.php:3 +#: templates/music.php:3 templates/player.php:13 msgid "Play" msgstr "Пусни" -#: templates/music.php:4 templates/music.php:30 +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 msgid "Pause" msgstr "Пауза" @@ -34,7 +34,7 @@ msgstr "Пауза" msgid "Previous" msgstr "Предишна" -#: templates/music.php:6 +#: templates/music.php:6 templates/player.php:15 msgid "Next" msgstr "Следваща" @@ -46,11 +46,7 @@ msgstr "Отнеми" msgid "Unmute" msgstr "Върни" -#: templates/music.php:28 -msgid "Songs scanned" -msgstr "Сканирани песни" - -#: templates/music.php:29 +#: templates/music.php:25 msgid "Rescan Collection" msgstr "Повторно сканиране" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 9f23a84787f..7d72967afd9 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-06 19:21+0000\n" -"Last-Translator: adin \n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 16:32+0000\n" +"Last-Translator: icewind \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.net/projects/p/owncloud/team/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,22 +19,30 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/openid.php:13 ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Проблем с идентификацията" +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "" -#: ajax/openid.php:21 -msgid "OpenID Changed" -msgstr "OpenID е сменено" - -#: ajax/openid.php:23 ajax/setlanguage.php:23 +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 msgid "Invalid request" msgstr "Невалидна заявка" -#: ajax/setlanguage.php:21 +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID е сменено" + +#: ajax/setlanguage.php:14 msgid "Language changed" msgstr "Езика е сменен" +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "" + #: templates/apps.php:8 msgid "Add your application" msgstr "Добавете Ваша програма" @@ -55,15 +63,15 @@ msgstr "от" msgid "Ask a question" msgstr "Задайте въпрос" -#: templates/help.php:17 +#: templates/help.php:20 msgid "Problems connecting to help database." msgstr "Проблеми при свързване с помощната база" -#: templates/help.php:18 +#: templates/help.php:21 msgid "Go there manually." msgstr "Отидете ръчно." -#: templates/help.php:26 +#: templates/help.php:29 msgid "Answer" msgstr "Отговор" @@ -99,35 +107,51 @@ msgstr "показва" msgid "Change password" msgstr "Промяна на парола" -#: templates/personal.php:24 templates/personal.php:25 +#: templates/personal.php:24 +msgid "Email" +msgstr "" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:32 templates/personal.php:33 msgid "Language" msgstr "Език" -#: templates/personal.php:30 -msgid "Help translating" -msgstr "Помогнете с превода" +#: templates/personal.php:38 +msgid "Help translate" +msgstr "" -#: templates/personal.php:37 +#: templates/personal.php:45 msgid "use this address to connect to your ownCloud in your file manager" msgstr "ползвай този адрес за връзка с Вашия ownCloud във файловия мениджър" -#: templates/users.php:16 +#: templates/users.php:15 templates/users.php:30 msgid "Name" msgstr "Име" -#: templates/users.php:17 +#: templates/users.php:16 templates/users.php:31 msgid "Password" msgstr "Парола" -#: templates/users.php:18 templates/users.php:36 +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 msgid "Groups" msgstr "Групи" -#: templates/users.php:24 +#: templates/users.php:23 msgid "Create" msgstr "Ново" -#: templates/users.php:48 +#: templates/users.php:33 +msgid "Quota" +msgstr "" + +#: templates/users.php:58 msgid "Delete" msgstr "Изтриване" diff --git a/l10n/ca/calendar.po b/l10n/ca/calendar.po index f535d8d1170..d73fea2340a 100644 --- a/l10n/ca/calendar.po +++ b/l10n/ca/calendar.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011. +# , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-16 16:46+0000\n" +"Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.net/projects/p/owncloud/team/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,351 +18,432 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/createcalendar.php:18 ajax/settimezone.php:19 -#: ajax/updatecalendar.php:18 -msgid "Authentication error" -msgstr "Error d'autenticació" +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "Nova zona horària:" -#: ajax/editeventform.php:25 -msgid "Wrong calendar" -msgstr "" - -#: ajax/settimezone.php:27 +#: ajax/settimezone.php:22 msgid "Timezone changed" msgstr "La zona horària ha canviat" -#: ajax/settimezone.php:29 +#: ajax/settimezone.php:24 msgid "Invalid request" msgstr "Sol.licitud no vàlida" -#: appinfo/app.php:19 templates/part.eventform.php:27 -#: templates/part.eventinfo.php:18 +#: appinfo/app.php:20 templates/calendar.php:14 +#: templates/part.eventform.php:20 msgid "Calendar" msgstr "Calendari" -#: lib/object.php:292 +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Calendari erroni" + +#: lib/app.php:60 lib/object.php:332 msgid "Birthday" -msgstr "" +msgstr "Aniversari" -#: lib/object.php:293 +#: lib/app.php:61 lib/object.php:333 msgid "Business" -msgstr "" +msgstr "Feina" -#: lib/object.php:294 +#: lib/app.php:62 lib/object.php:334 msgid "Call" -msgstr "" +msgstr "Trucada" -#: lib/object.php:295 +#: lib/app.php:63 lib/object.php:335 msgid "Clients" -msgstr "" +msgstr "Clients" -#: lib/object.php:296 +#: lib/app.php:64 lib/object.php:336 msgid "Deliverer" -msgstr "" +msgstr "Remitent" -#: lib/object.php:297 +#: lib/app.php:65 lib/object.php:337 msgid "Holidays" -msgstr "" +msgstr "Vacances" -#: lib/object.php:298 +#: lib/app.php:66 lib/object.php:338 msgid "Ideas" -msgstr "" +msgstr "Idees" -#: lib/object.php:299 +#: lib/app.php:67 lib/object.php:339 msgid "Journey" -msgstr "" +msgstr "Viatge" -#: lib/object.php:300 +#: lib/app.php:68 lib/object.php:340 msgid "Jubilee" -msgstr "" +msgstr "Sant" -#: lib/object.php:301 +#: lib/app.php:69 lib/object.php:341 msgid "Meeting" -msgstr "" +msgstr "Reunió" -#: lib/object.php:302 +#: lib/app.php:70 lib/object.php:342 msgid "Other" -msgstr "" +msgstr "Altres" -#: lib/object.php:303 +#: lib/app.php:71 lib/object.php:343 msgid "Personal" -msgstr "" +msgstr "Personal" -#: lib/object.php:304 +#: lib/app.php:72 lib/object.php:344 msgid "Projects" -msgstr "" +msgstr "Projectes" -#: lib/object.php:305 +#: lib/app.php:73 lib/object.php:345 msgid "Questions" -msgstr "" +msgstr "Preguntes" -#: lib/object.php:306 +#: lib/app.php:74 lib/object.php:346 msgid "Work" -msgstr "" +msgstr "Feina" -#: lib/object.php:313 +#: lib/object.php:353 msgid "Does not repeat" msgstr "No es repeteix" -#: lib/object.php:314 +#: lib/object.php:354 msgid "Daily" msgstr "Diari" -#: lib/object.php:315 +#: lib/object.php:355 msgid "Weekly" msgstr "Mensual" -#: lib/object.php:316 +#: lib/object.php:356 msgid "Every Weekday" msgstr "Cada setmana" -#: lib/object.php:317 +#: lib/object.php:357 msgid "Bi-Weekly" msgstr "Bisetmanalment" -#: lib/object.php:318 +#: lib/object.php:358 msgid "Monthly" msgstr "Mensualment" -#: lib/object.php:319 +#: lib/object.php:359 msgid "Yearly" msgstr "Cada any" -#: lib/object.php:337 -msgid "Not an array" -msgstr "" +#: lib/object.php:366 +msgid "never" +msgstr "mai" -#: templates/calendar.php:3 -msgid "All day" -msgstr "Tot el dia" +#: lib/object.php:367 +msgid "by occurrences" +msgstr "per aparicions" -#: templates/calendar.php:32 -msgid "Sunday" -msgstr "Diumenge" +#: lib/object.php:368 +msgid "by date" +msgstr "per data" -#: templates/calendar.php:32 +#: lib/object.php:375 +msgid "by monthday" +msgstr "per dia del mes" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "per dia de la setmana" + +#: lib/object.php:383 templates/lAfix.php:3 msgid "Monday" msgstr "Dilluns" -#: templates/calendar.php:32 +#: lib/object.php:384 templates/lAfix.php:4 msgid "Tuesday" msgstr "Dimarts" -#: templates/calendar.php:32 +#: lib/object.php:385 templates/lAfix.php:5 msgid "Wednesday" msgstr "Dimecres" -#: templates/calendar.php:32 +#: lib/object.php:386 templates/lAfix.php:6 msgid "Thursday" msgstr "Dijous" -#: templates/calendar.php:32 +#: lib/object.php:387 templates/lAfix.php:7 msgid "Friday" msgstr "Divendres" -#: templates/calendar.php:32 +#: lib/object.php:388 templates/lAfix.php:8 msgid "Saturday" msgstr "Dissabte" -#: templates/calendar.php:33 -msgid "Sun." -msgstr "dg." +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "Diumenge" -#: templates/calendar.php:33 -msgid "Mon." -msgstr "dl." +#: lib/object.php:396 +msgid "events week of month" +msgstr "esdeveniments la setmana del mes" -#: templates/calendar.php:33 -msgid "Tue." -msgstr "dm." +#: lib/object.php:397 +msgid "first" +msgstr "primer" -#: templates/calendar.php:33 -msgid "Wed." -msgstr "dc." +#: lib/object.php:398 +msgid "second" +msgstr "segon" -#: templates/calendar.php:33 -msgid "Thu." -msgstr "dj." +#: lib/object.php:399 +msgid "third" +msgstr "tercer" -#: templates/calendar.php:33 -msgid "Fri." -msgstr "dv." +#: lib/object.php:400 +msgid "fourth" +msgstr "quart" -#: templates/calendar.php:33 -msgid "Sat." -msgstr "ds." +#: lib/object.php:401 +msgid "fifth" +msgstr "cinquè" -#: templates/calendar.php:34 +#: lib/object.php:402 +msgid "last" +msgstr "últim" + +#: lib/object.php:424 templates/lAfix.php:16 msgid "January" msgstr "Gener" -#: templates/calendar.php:34 +#: lib/object.php:425 templates/lAfix.php:17 msgid "February" msgstr "Febrer" -#: templates/calendar.php:34 +#: lib/object.php:426 templates/lAfix.php:18 msgid "March" msgstr "Març" -#: templates/calendar.php:34 +#: lib/object.php:427 templates/lAfix.php:19 msgid "April" msgstr "Abril" -#: templates/calendar.php:34 +#: lib/object.php:428 templates/lAfix.php:20 msgid "May" msgstr "Maig" -#: templates/calendar.php:34 +#: lib/object.php:429 templates/lAfix.php:21 msgid "June" msgstr "Juny" -#: templates/calendar.php:34 +#: lib/object.php:430 templates/lAfix.php:22 msgid "July" msgstr "Juliol" -#: templates/calendar.php:34 +#: lib/object.php:431 templates/lAfix.php:23 msgid "August" msgstr "Agost" -#: templates/calendar.php:34 +#: lib/object.php:432 templates/lAfix.php:24 msgid "September" msgstr "Setembre" -#: templates/calendar.php:34 +#: lib/object.php:433 templates/lAfix.php:25 msgid "October" msgstr "Octubre" -#: templates/calendar.php:34 +#: lib/object.php:434 templates/lAfix.php:26 msgid "November" msgstr "Novembre" -#: templates/calendar.php:34 +#: lib/object.php:435 templates/lAfix.php:27 msgid "December" msgstr "Desembre" -#: templates/calendar.php:35 -msgid "Jan." -msgstr "gen." +#: lib/object.php:441 +msgid "by events date" +msgstr "per data d'esdeveniments" -#: templates/calendar.php:35 -msgid "Feb." -msgstr "febr." +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "per ahir(s)" -#: templates/calendar.php:35 -msgid "Mar." -msgstr "març" +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "per número(s) de la setmana" -#: templates/calendar.php:35 -msgid "Apr." -msgstr "abr." +#: lib/object.php:444 +msgid "by day and month" +msgstr "per dia del mes" -#: templates/calendar.php:35 -msgid "May." -msgstr "" +#: lib/object.php:467 +msgid "Not an array" +msgstr "No és una sèrie" -#: templates/calendar.php:35 -msgid "Jun." -msgstr "juny" +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "Data" -#: templates/calendar.php:35 -msgid "Jul." -msgstr "jul." +#: lib/search.php:40 +msgid "Cal." +msgstr "Cal." -#: templates/calendar.php:35 -msgid "Aug." -msgstr "ag." +#: templates/calendar.php:10 +msgid "All day" +msgstr "Tot el dia" -#: templates/calendar.php:35 -msgid "Sep." -msgstr "set." +#: templates/calendar.php:11 templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "Calendari nou" -#: templates/calendar.php:35 -msgid "Oct." -msgstr "oct." +#: templates/calendar.php:12 +msgid "Missing fields" +msgstr "Els camps que falten" -#: templates/calendar.php:35 -msgid "Nov." -msgstr "nov." +#: templates/calendar.php:13 templates/part.eventform.php:3 +msgid "Title" +msgstr "Títol" -#: templates/calendar.php:35 -msgid "Dec." -msgstr "des." +#: templates/calendar.php:15 +msgid "From Date" +msgstr "Des de la data" -#: templates/calendar.php:36 templates/calendar.php:50 -#: templates/calendar.php:116 +#: templates/calendar.php:16 +msgid "From Time" +msgstr "Des de l'hora" + +#: templates/calendar.php:17 +msgid "To Date" +msgstr "Fins a la data" + +#: templates/calendar.php:18 +msgid "To Time" +msgstr "Fins a l'hora" + +#: templates/calendar.php:19 +msgid "The event ends before it starts" +msgstr "L'esdeveniment acaba abans que comenci" + +#: templates/calendar.php:20 +msgid "There was a database fail" +msgstr "Hi ha un error de base de dades" + +#: templates/calendar.php:38 msgid "Week" msgstr "Setmana" -#: templates/calendar.php:37 templates/calendar.php:51 -msgid "Weeks" -msgstr "Setmanes" - -#: templates/calendar.php:38 -msgid "More before {startdate}" -msgstr "" - #: templates/calendar.php:39 -msgid "More after {enddate}" -msgstr "" - -#: templates/calendar.php:49 -msgid "Day" -msgstr "Dia" - -#: templates/calendar.php:52 msgid "Month" msgstr "Mes" -#: templates/calendar.php:53 +#: templates/calendar.php:40 msgid "List" -msgstr "" +msgstr "Llista" -#: templates/calendar.php:58 +#: templates/calendar.php:46 msgid "Today" msgstr "Avui" -#: templates/calendar.php:59 +#: templates/calendar.php:47 msgid "Calendars" msgstr "Calendaris" -#: templates/calendar.php:76 templates/calendar.php:94 -msgid "Time" -msgstr "Hora" - -#: templates/calendar.php:169 +#: templates/calendar.php:65 msgid "There was a fail, while parsing the file." msgstr "S'ha produït un error en analitzar el fitxer." +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "dg." + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "dl." + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "dt." + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "dc." + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "dj." + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "dv." + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "ds." + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "gen." + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "febr." + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "març" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "abr." + +#: templates/lAfix.php:32 +msgid "May." +msgstr "maig" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "juny" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "jul." + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "ag." + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "set." + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "oct." + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "nov." + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "des." + #: templates/part.choosecalendar.php:1 msgid "Choose active calendars" msgstr "Seleccioneu calendaris actius" -#: templates/part.choosecalendar.php:15 -msgid "New Calendar" -msgstr "" - #: templates/part.choosecalendar.php:20 #: templates/part.choosecalendar.rowfields.php:4 msgid "CalDav Link" -msgstr "" +msgstr "Enllaç CalDav" #: templates/part.choosecalendar.rowfields.php:4 msgid "Download" msgstr "Baixa" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.eventinfo.php:64 msgid "Edit" msgstr "Edita" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.editevent.php:8 +#: templates/part.editevent.php:9 msgid "Delete" -msgstr "" +msgstr "Esborra" #: templates/part.editcalendar.php:9 msgid "New calendar" -msgstr "" +msgstr "Calendari nou" #: templates/part.editcalendar.php:9 msgid "Edit calendar" @@ -376,90 +457,181 @@ msgstr "Mostra el nom" msgid "Active" msgstr "Actiu" -#: templates/part.editcalendar.php:29 templates/part.eventform.php:88 -#: templates/part.eventinfo.php:58 -msgid "Description" -msgstr "Descripció" - -#: templates/part.editcalendar.php:35 +#: templates/part.editcalendar.php:29 msgid "Calendar color" msgstr "Color del calendari" -#: templates/part.editcalendar.php:41 +#: templates/part.editcalendar.php:42 msgid "Save" -msgstr "" +msgstr "Desa" -#: templates/part.editcalendar.php:41 templates/part.editevent.php:7 +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 #: templates/part.newevent.php:6 msgid "Submit" -msgstr "Tramet" +msgstr "Envia" -#: templates/part.editcalendar.php:42 +#: templates/part.editcalendar.php:43 msgid "Cancel" -msgstr "" +msgstr "Cancel·la" -#: templates/part.editevent.php:1 templates/part.eventinfo.php:1 +#: templates/part.editevent.php:1 msgid "Edit an event" msgstr "Edició d'un esdeveniment" -#: templates/part.eventform.php:3 templates/part.eventinfo.php:4 -msgid "Title" -msgstr "Títol" +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "Exporta" #: templates/part.eventform.php:5 msgid "Title of the Event" msgstr "Títol de l'esdeveniment" -#: templates/part.eventform.php:9 templates/part.eventinfo.php:9 -msgid "Location" -msgstr "Ubicació" - #: templates/part.eventform.php:11 -msgid "Location of the Event" -msgstr "Ubicació de l'esdeveniment" - -#: templates/part.eventform.php:17 templates/part.eventinfo.php:16 msgid "Category" msgstr "Categoria" -#: templates/part.eventform.php:19 +#: templates/part.eventform.php:13 msgid "Select category" -msgstr "" +msgstr "Seleccioneu categoria" -#: templates/part.eventform.php:45 templates/part.eventinfo.php:28 +#: templates/part.eventform.php:37 msgid "All Day Event" msgstr "Esdeveniment de tot el dia" -#: templates/part.eventform.php:49 templates/part.eventinfo.php:31 +#: templates/part.eventform.php:41 msgid "From" msgstr "Des de" -#: templates/part.eventform.php:57 templates/part.eventinfo.php:38 +#: templates/part.eventform.php:49 msgid "To" msgstr "Fins a" -#: templates/part.eventform.php:65 templates/part.eventinfo.php:44 +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "Opcions avançades" + +#: templates/part.eventform.php:61 msgid "Repeat" -msgstr "Repeteix" +msgstr "Repetició" -#: templates/part.eventform.php:81 templates/part.eventinfo.php:51 -msgid "Attendees" -msgstr "Assistents" +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "Avançat" -#: templates/part.eventform.php:89 +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "Dies de la setmana seleccionats" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "Seleccionar dies" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "i dies d'esdeveniment de l'any." + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "i dies d'esdeveniment del mes." + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "Seleccionar mesos" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "Seleccionar setmanes" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "i setmanes d'esdeveniment de l'any." + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "Interval" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "Final" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "aparicions" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Ubicació" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Ubicació de l'esdeveniment" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Descripció" + +#: templates/part.eventform.php:218 msgid "Description of the Event" msgstr "Descripció de l'esdeveniment" -#: templates/part.eventinfo.php:63 -msgid "Close" -msgstr "Tanca" +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "Importa un fitxer de calendari" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "Escolliu el calendari" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "crea un nou calendari" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "Nom del nou calendari" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "Importa" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "S'està important el calendari" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "El calendari s'ha importat amb èxit" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "Tanca el diàleg" #: templates/part.newevent.php:1 msgid "Create a new event" msgstr "Crea un nou esdeveniment" -#: templates/settings.php:11 +#: templates/settings.php:13 msgid "Timezone" msgstr "Zona horària" +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "Comprova sempre en els canvis de zona horària" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "Format de temps" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12h" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "Adreça de sincronització del calendari CalDAV:" + diff --git a/l10n/ca/contacts.po b/l10n/ca/contacts.po index a9a23483bc3..3caa70ae4af 100644 --- a/l10n/ca/contacts.po +++ b/l10n/ca/contacts.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 20:10+0200\n" -"PO-Revision-Date: 2011-09-23 18:11+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" "Language-Team: Catalan (http://www.transifex.net/projects/p/owncloud/team/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,164 +18,265 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 -#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 -#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 -#: ajax/showsetproperty.php:32 photo.php:32 -msgid "You need to log in." -msgstr "" +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." +msgstr "Error en (des)activar la llibreta d'adreces." -#: ajax/addcard.php:37 +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "S'ha produït un error en afegir el contacte." + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "No es pot afegir una propietat buida." + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "Almenys heu d'omplir un dels camps d'adreça." + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "Error en afegir la propietat del contacte." + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "Error en afegir la llibreta d'adreces." + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "Error en activar la llibreta d'adreces." + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "Error en eliminar la propietat del contacte." + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "Error en actualitzar la propietat del contacte." + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "Error en actualitzar la llibreta d'adreces." + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "Contactes" + +#: lib/app.php:52 msgid "This is not your addressbook." -msgstr "" +msgstr "Aquesta no és la vostra llibreta d'adreces" -#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 -#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 -#: ajax/showsetproperty.php:38 photo.php:39 +#: lib/app.php:61 photo.php:36 msgid "Contact could not be found." -msgstr "" +msgstr "No s'ha trobat el contacte." -#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 -#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 -#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 -msgid "This is not your contact." -msgstr "" - -#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 -#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 -msgid "vCard could not be read." -msgstr "" - -#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 -#: ajax/showsetproperty.php:62 +#: lib/app.php:89 msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" +msgstr "La informació de la vCard és incorrecta. Carregueu la pàgina de nou." -#: photo.php:53 -msgid "This card is not RFC compatible." -msgstr "" - -#: photo.php:90 -msgid "This card does not contain a photo." -msgstr "" - -#: templates/index.php:8 -msgid "Add Contact" -msgstr "" - -#: templates/part.addcardform.php:5 -msgid "Group" -msgstr "" - -#: templates/part.addcardform.php:12 templates/part.property.php:3 -msgid "Name" -msgstr "" - -#: templates/part.addcardform.php:14 -msgid "Create Contact" -msgstr "" - -#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 msgid "Address" -msgstr "" +msgstr "Adreça" -#: templates/part.addpropertyform.php:5 +#: lib/app.php:102 templates/part.addcardform.php:43 msgid "Telephone" -msgstr "" +msgstr "Telèfon" -#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 msgid "Email" -msgstr "" +msgstr "Correu electrònic" -#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 msgid "Organization" -msgstr "" +msgstr "Organització" -#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +#: lib/app.php:116 lib/app.php:123 msgid "Work" -msgstr "" +msgstr "Feina" -#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +#: lib/app.php:117 lib/app.php:121 msgid "Home" -msgstr "" +msgstr "Casa" -#: templates/part.addpropertyform.php:20 templates/part.property.php:48 -#: templates/part.setpropertyform.php:5 -msgid "PO Box" -msgstr "" - -#: templates/part.addpropertyform.php:21 templates/part.property.php:51 -#: templates/part.setpropertyform.php:6 -msgid "Extended" -msgstr "" - -#: templates/part.addpropertyform.php:22 templates/part.property.php:54 -#: templates/part.setpropertyform.php:7 -msgid "Street" -msgstr "" - -#: templates/part.addpropertyform.php:23 templates/part.property.php:57 -#: templates/part.setpropertyform.php:8 -msgid "City" -msgstr "" - -#: templates/part.addpropertyform.php:24 templates/part.property.php:60 -#: templates/part.setpropertyform.php:9 -msgid "Region" -msgstr "" - -#: templates/part.addpropertyform.php:25 templates/part.property.php:63 -#: templates/part.setpropertyform.php:10 -msgid "Zipcode" -msgstr "" - -#: templates/part.addpropertyform.php:26 templates/part.property.php:66 -#: templates/part.setpropertyform.php:11 -msgid "Country" -msgstr "" - -#: templates/part.addpropertyform.php:31 +#: lib/app.php:122 msgid "Mobile" -msgstr "" +msgstr "Mòbil" -#: templates/part.addpropertyform.php:33 +#: lib/app.php:124 msgid "Text" -msgstr "" +msgstr "Text" -#: templates/part.addpropertyform.php:34 +#: lib/app.php:125 msgid "Voice" -msgstr "" +msgstr "Veu" -#: templates/part.addpropertyform.php:35 +#: lib/app.php:126 msgid "Fax" -msgstr "" +msgstr "Fax" -#: templates/part.addpropertyform.php:36 +#: lib/app.php:127 msgid "Video" -msgstr "" +msgstr "Vídeo" -#: templates/part.addpropertyform.php:37 +#: lib/app.php:128 msgid "Pager" -msgstr "" +msgstr "Paginador" -#: templates/part.details.php:33 +#: lib/search.php:22 +msgid "Contact" +msgstr "Contacte" + +#: photo.php:42 +msgid "This is not your contact." +msgstr "Aquest contacte no és vostre." + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Afegir un contacte" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "Llibretes d'adreces" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "Llibreta d'adreces" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Nom" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "Tipus" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "Adreça Postal" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Addicional" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Carrer" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Ciutat" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Comarca" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "Codi postal" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "País" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Crea un contacte" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "Escolliu una llibreda d'adreces activa" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "Nova llibreta d'adreces" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "Enllaç CardDav" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "Baixa" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Edita" + +#: templates/part.chooseaddressbook.rowfields.php:5 msgid "Delete" -msgstr "" +msgstr "Elimina" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "Baixa el contacte" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "Elimina el contacte" #: templates/part.details.php:34 -msgid "Add Property" -msgstr "" +msgid "Add" +msgstr "Afegeix" -#: templates/part.property.php:9 +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "Nova llibreta d'adreces" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "Edita la llibreta d'adreces" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "Nom a mostrar" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "Actiu" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "Desa" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "Envia" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "Cancel·la" + +#: templates/part.property.php:3 msgid "Birthday" -msgstr "" +msgstr "Aniversari" -#: templates/part.property.php:29 +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "Preferit" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 msgid "Phone" -msgstr "" +msgstr "Telèfon" -#: templates/part.setpropertyform.php:17 -msgid "Edit" -msgstr "" +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "Actualitza" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "Adreça de sincronització CardDAV:" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index cfbd4678f9f..093f9097f1a 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011. +# , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-05 13:54+0000\n" +"POT-Creation-Date: 2012-01-24 00:25+0100\n" +"PO-Revision-Date: 2012-01-24 14:38+0000\n" "Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.net/projects/p/owncloud/team/ca/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,51 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "Restableix la contrasenya d'Owncloud" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "Useu l'enllaç següent per restablir la contrasenya: {enllaç}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "Rebreu un enllaç al correu electrònic per reiniciar la contrasenya." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Sol·licitat" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "No s'ha pogut iniciar la sessió" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Nom d'usuari" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Sol·licita reinicialització" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "La vostra contrasenya s'ha reinicialitzat" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "A la pàgina d'inici de sessió" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Contrasenya nova" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Reinicialitza la contrasenya" + #: strings.php:5 msgid "Personal" msgstr "Personal" @@ -40,60 +85,56 @@ msgstr "Ajuda" #: templates/404.php:12 msgid "Cloud not found" -msgstr "No s'ha trobat el núvol" +msgstr "No s'ha trobat al núvol" #: templates/installation.php:20 msgid "Create an admin account" msgstr "Crea un compte d'administrador" -#: templates/installation.php:21 -msgid "Username" -msgstr "Nom d'usuari" - -#: templates/installation.php:22 +#: templates/installation.php:26 templates/login.php:12 msgid "Password" msgstr "Contrasenya" -#: templates/installation.php:27 -msgid "Configure the database" -msgstr "Configura la base de dades" - -#: templates/installation.php:32 templates/installation.php:43 -#: templates/installation.php:53 -msgid "will be used" -msgstr "s'usarà" - -#: templates/installation.php:64 -msgid "Database user" -msgstr "Usuari de la base de dades" - -#: templates/installation.php:65 -msgid "Database password" -msgstr "Contrasenya de la base de dades" - -#: templates/installation.php:66 -msgid "Database name" -msgstr "Nom de la base de dades" - -#: templates/installation.php:72 +#: templates/installation.php:32 msgid "Advanced" msgstr "Avançat" -#: templates/installation.php:75 -msgid "Database host" -msgstr "Ordinador central de la base de dades" - -#: templates/installation.php:76 +#: templates/installation.php:34 msgid "Data folder" msgstr "Carpeta de dades" +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Configura la base de dades" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "s'usarà" + #: templates/installation.php:79 +msgid "Database user" +msgstr "Usuari de la base de dades" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Contrasenya de la base de dades" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Nom de la base de dades" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Ordinador central de la base de dades" + +#: templates/installation.php:98 msgid "Finish setup" msgstr "Acaba la configuració" #: templates/layout.guest.php:35 -msgid "gives you freedom and control over your own data" -msgstr "us dóna llibertat i control sobre les seves dades" +msgid "web services under your control" +msgstr "controleu els vostres serveis web" #: templates/layout.user.php:34 msgid "Log out" @@ -103,38 +144,22 @@ msgstr "Sortir" msgid "Settings" msgstr "Arranjament" -#: templates/login.php:4 +#: templates/login.php:5 msgid "Lost your password?" msgstr "Heu perdut la contrasenya?" -#: templates/login.php:9 templates/login.php:13 +#: templates/login.php:15 msgid "remember" msgstr "recorda'm" +#: templates/login.php:16 +msgid "Log in" +msgstr "Inici de sessió" + #: templates/logout.php:1 msgid "You are logged out." msgstr "Heu tancat la sessió." -#: templates/lostpassword.php:3 -msgid "You will receive a link to reset your password via Email." -msgstr "Rebreu un enllaç per correu electrònic per restablir la contrasenya" - -#: templates/lostpassword.php:5 -msgid "Requested" -msgstr "Sol·licitat" - -#: templates/lostpassword.php:8 -msgid "Login failed!" -msgstr "L'inici de sessió ha fallat!" - -#: templates/lostpassword.php:10 -msgid "Username or Email" -msgstr "Nom d'usuari o correu electrònic" - -#: templates/lostpassword.php:11 -msgid "Request reset" -msgstr "Sol.licitud de restabliment" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" @@ -143,16 +168,4 @@ msgstr "anterior" msgid "next" msgstr "següent" -#: templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "La vostra contrasenya s'ha restablert" - -#: templates/resetpassword.php:6 -msgid "New password" -msgstr "Nova contrasenya" - -#: templates/resetpassword.php:7 -msgid "Reset password" -msgstr "Restabliment de la contrasenya" - diff --git a/l10n/ca/files.po b/l10n/ca/files.po index faf3ca5063e..5fe59dd672a 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011. +# , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-11 08:48+0000\n" +"Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.net/projects/p/owncloud/team/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,33 +18,37 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:24 +#: ajax/upload.php:19 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "El fitxer s'ha pujat correctament" -#: ajax/upload.php:25 +#: ajax/upload.php:20 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "" +"El fitxer de pujada excedeix la directiva upload_max_filesize establerta a " +"php.ini" -#: ajax/upload.php:26 +#: ajax/upload.php:21 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" +"El fitxer de pujada excedeix la directiva MAX_FILE_SIZE especificada al " +"formulari HTML" -#: ajax/upload.php:27 +#: ajax/upload.php:22 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "El fitxer només s'ha pujat parcialment" -#: ajax/upload.php:28 +#: ajax/upload.php:23 msgid "No file was uploaded" -msgstr "" +msgstr "El fitxer no s'ha pujat" -#: ajax/upload.php:29 +#: ajax/upload.php:24 msgid "Missing a temporary folder" -msgstr "" +msgstr "S'ha perdut un fitxer temporal" -#: appinfo/app.php:7 +#: appinfo/app.php:8 msgid "Files" msgstr "Fitxers" @@ -52,48 +56,60 @@ msgstr "Fitxers" msgid "Maximum upload size" msgstr "Mida màxima de pujada" +#: templates/index.php:7 +msgid "New" +msgstr "Nou" + #: templates/index.php:10 +msgid "Text file" +msgstr "Fitxer de text" + +#: templates/index.php:11 +msgid "Folder" +msgstr "Carpeta" + +#: templates/index.php:12 +msgid "From the web" +msgstr "Des de la web" + +#: templates/index.php:22 msgid "Upload" msgstr "Puja" -#: templates/index.php:17 -msgid "New Folder" -msgstr "Carpeta nova" - -#: templates/index.php:31 +#: templates/index.php:35 msgid "Nothing in here. Upload something!" msgstr "Res per aquí. Pugeu alguna cosa!" -#: templates/index.php:39 +#: templates/index.php:43 msgid "Name" msgstr "Nom" -#: templates/index.php:41 -msgid "Download" -msgstr "Descarrega" - #: templates/index.php:45 +msgid "Download" +msgstr "Baixa" + +#: templates/index.php:49 msgid "Size" msgstr "Mida" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Modified" msgstr "Modificat" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Delete" msgstr "Esborra" -#: templates/index.php:54 +#: templates/index.php:58 msgid "Upload too large" msgstr "La pujada és massa gran" -#: templates/index.php:56 +#: templates/index.php:60 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada " -"d'aquest servidor" +"del servidor" diff --git a/l10n/ca/gallery.po b/l10n/ca/gallery.po new file mode 100644 index 00000000000..c452a3c3764 --- /dev/null +++ b/l10n/ca/gallery.po @@ -0,0 +1,53 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-24 08:21+0000\n" +"Last-Translator: rogerc \n" +"Language-Team: Catalan (http://www.transifex.net/projects/p/owncloud/team/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "Galeria" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "S'estan escanejant carpetes" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "No s'han trobat fotos" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "S'estan creant miniatures" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "Voleu eliminar l'àlbum" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "Escriviu el nom nou de la galeria" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "Escaneja de nou" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "Enrera" + + diff --git a/l10n/ca/media.po b/l10n/ca/media.po index b0754f01964..7f400afcfd1 100644 --- a/l10n/ca/media.po +++ b/l10n/ca/media.po @@ -2,14 +2,15 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# Translators: # , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-08-23 11:09+0200\n" -"PO-Revision-Date: 2011-08-21 10:56+0000\n" -"Last-Translator: rogerc \n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Catalan (http://www.transifex.net/projects/p/owncloud/team/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,15 +18,15 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: appinfo/app.php:31 +#: appinfo/app.php:32 msgid "Music" msgstr "Música" -#: templates/music.php:3 +#: templates/music.php:3 templates/player.php:13 msgid "Play" msgstr "Reprodueix" -#: templates/music.php:4 templates/music.php:30 +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 msgid "Pause" msgstr "Pausa" @@ -33,7 +34,7 @@ msgstr "Pausa" msgid "Previous" msgstr "Anterior" -#: templates/music.php:6 +#: templates/music.php:6 templates/player.php:15 msgid "Next" msgstr "Següent" @@ -45,13 +46,9 @@ msgstr "Mut" msgid "Unmute" msgstr "Activa el so" -#: templates/music.php:28 -msgid "Songs scanned" -msgstr "Cançons escanejades" - -#: templates/music.php:29 +#: templates/music.php:25 msgid "Rescan Collection" -msgstr "Escaneja de nou la col·lecció" +msgstr "Explora de nou la col·lecció" #: templates/music.php:37 msgid "Artist" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index e976e434c85..f8a3f3cd69c 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -2,13 +2,14 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # -# , 2011. +# Translators: +# , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-08-28 01:11+0200\n" -"PO-Revision-Date: 2011-08-23 15:33+0000\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-16 16:47+0000\n" "Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.net/projects/p/owncloud/team/ca/)\n" "MIME-Version: 1.0\n" @@ -17,29 +18,37 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/openid.php:13 ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Error d'autenticació" +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "el correu electrònic ha canviat" -#: ajax/openid.php:21 -msgid "OpenID Changed" -msgstr "OpenID ha canviat" - -#: ajax/openid.php:23 ajax/setlanguage.php:23 +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 msgid "Invalid request" msgstr "Sol.licitud no vàlida" -#: ajax/setlanguage.php:21 +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID ha canviat" + +#: ajax/setlanguage.php:14 msgid "Language changed" msgstr "S'ha canviat l'idioma" +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "Català" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "Nivell de registres" + #: templates/apps.php:8 msgid "Add your application" msgstr "Afegir una aplicació" #: templates/apps.php:21 msgid "Select an App" -msgstr "Sel·leccioneu una aplicació" +msgstr "Seleccioneu una aplicació" #: templates/apps.php:23 msgid "-licensed" @@ -47,21 +56,21 @@ msgstr "- amb llicència" #: templates/apps.php:23 msgid "by" -msgstr "per" +msgstr "de" #: templates/help.php:8 msgid "Ask a question" msgstr "Feu una pregunta" -#: templates/help.php:17 +#: templates/help.php:20 msgid "Problems connecting to help database." -msgstr "Problemes per connectar-se a la base de dades d'ajuda." +msgstr "Problemes per connectar amb la base de dades d'ajuda." -#: templates/help.php:18 +#: templates/help.php:21 msgid "Go there manually." msgstr "Vés-hi manualment." -#: templates/help.php:26 +#: templates/help.php:29 msgid "Answer" msgstr "Resposta" @@ -77,9 +86,13 @@ msgstr "del disponible" msgid "Your password got changed" msgstr "La contrasenya ha canviat" +#: templates/personal.php:14 +msgid "Unable to change your password" +msgstr "No s'ha pogut canviar la contrasenya" + #: templates/personal.php:15 msgid "Current password" -msgstr "contrasenya actual" +msgstr "Contrasenya actual" #: templates/personal.php:16 msgid "New password" @@ -91,38 +104,54 @@ msgstr "mostra" #: templates/personal.php:18 msgid "Change password" -msgstr "canvia la contrasenya" +msgstr "Canvia la contrasenya" #: templates/personal.php:24 +msgid "Email" +msgstr "Correu electrònic" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "Correu electrònic" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "Ompliu el correu electrònic per activar la recuperació de contrasenya" + +#: templates/personal.php:32 templates/personal.php:33 msgid "Language" msgstr "Idioma" -#: templates/personal.php:30 -msgid "Help translating" -msgstr "Ajudeu amb la traducció" +#: templates/personal.php:38 +msgid "Help translate" +msgstr "Ajudeu-nos amb la traducció" -#: templates/personal.php:36 +#: templates/personal.php:45 msgid "use this address to connect to your ownCloud in your file manager" msgstr "" "useu aquesta adreça per connectar-vos a ownCloud des del gestor de fitxers" -#: templates/users.php:16 +#: templates/users.php:15 templates/users.php:30 msgid "Name" msgstr "Nom" -#: templates/users.php:17 +#: templates/users.php:16 templates/users.php:31 msgid "Password" msgstr "Contrasenya" -#: templates/users.php:18 templates/users.php:36 +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 msgid "Groups" msgstr "Grups" -#: templates/users.php:24 +#: templates/users.php:23 msgid "Create" msgstr "Crea" -#: templates/users.php:48 +#: templates/users.php:33 +msgid "Quota" +msgstr "Quota" + +#: templates/users.php:58 msgid "Delete" msgstr "Esborra" diff --git a/l10n/cs_CZ/calendar.po b/l10n/cs_CZ/calendar.po index 071b0bde711..322ca625037 100644 --- a/l10n/cs_CZ/calendar.po +++ b/l10n/cs_CZ/calendar.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Jan Krejci , 2011, 2012. +# Martin , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-18 15:55+0000\n" +"Last-Translator: Martin \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.net/projects/p/owncloud/team/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,448 +19,620 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" -#: ajax/createcalendar.php:18 ajax/settimezone.php:19 -#: ajax/updatecalendar.php:18 -msgid "Authentication error" -msgstr "" +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "Nová časová zóna:" -#: ajax/editeventform.php:25 -msgid "Wrong calendar" -msgstr "" - -#: ajax/settimezone.php:27 +#: ajax/settimezone.php:22 msgid "Timezone changed" -msgstr "" +msgstr "Časová zóna byla změněna" -#: ajax/settimezone.php:29 +#: ajax/settimezone.php:24 msgid "Invalid request" -msgstr "" +msgstr "Chybný požadavek" -#: appinfo/app.php:19 templates/part.eventform.php:27 -#: templates/part.eventinfo.php:18 +#: appinfo/app.php:20 templates/calendar.php:14 +#: templates/part.eventform.php:20 msgid "Calendar" -msgstr "" +msgstr "Kalendář" -#: lib/object.php:292 +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Nesprávný kalendář" + +#: lib/app.php:60 lib/object.php:332 msgid "Birthday" -msgstr "" +msgstr "Narozeniny" -#: lib/object.php:293 +#: lib/app.php:61 lib/object.php:333 msgid "Business" -msgstr "" +msgstr "Pracovní" -#: lib/object.php:294 +#: lib/app.php:62 lib/object.php:334 msgid "Call" -msgstr "" +msgstr "Volat" -#: lib/object.php:295 +#: lib/app.php:63 lib/object.php:335 msgid "Clients" -msgstr "" +msgstr "Klienti" -#: lib/object.php:296 +#: lib/app.php:64 lib/object.php:336 msgid "Deliverer" -msgstr "" +msgstr "Doručovatel" -#: lib/object.php:297 +#: lib/app.php:65 lib/object.php:337 msgid "Holidays" -msgstr "" +msgstr "Prázdniny" -#: lib/object.php:298 +#: lib/app.php:66 lib/object.php:338 msgid "Ideas" -msgstr "" +msgstr "Nápady" -#: lib/object.php:299 +#: lib/app.php:67 lib/object.php:339 msgid "Journey" -msgstr "" +msgstr "Cesta" -#: lib/object.php:300 +#: lib/app.php:68 lib/object.php:340 msgid "Jubilee" -msgstr "" +msgstr "Jubileum" -#: lib/object.php:301 +#: lib/app.php:69 lib/object.php:341 msgid "Meeting" -msgstr "" +msgstr "Schůzka" -#: lib/object.php:302 +#: lib/app.php:70 lib/object.php:342 msgid "Other" -msgstr "" +msgstr "Další" -#: lib/object.php:303 +#: lib/app.php:71 lib/object.php:343 msgid "Personal" -msgstr "" +msgstr "Osobní" -#: lib/object.php:304 +#: lib/app.php:72 lib/object.php:344 msgid "Projects" -msgstr "" +msgstr "Projekty" -#: lib/object.php:305 +#: lib/app.php:73 lib/object.php:345 msgid "Questions" -msgstr "" +msgstr "Dotazy" -#: lib/object.php:306 +#: lib/app.php:74 lib/object.php:346 msgid "Work" -msgstr "" +msgstr "Práce" -#: lib/object.php:313 +#: lib/object.php:353 msgid "Does not repeat" -msgstr "" +msgstr "Neopakuje se" -#: lib/object.php:314 +#: lib/object.php:354 msgid "Daily" -msgstr "" +msgstr "Denně" -#: lib/object.php:315 +#: lib/object.php:355 msgid "Weekly" -msgstr "" +msgstr "Týdně" -#: lib/object.php:316 +#: lib/object.php:356 msgid "Every Weekday" -msgstr "" +msgstr "Každý všední den" -#: lib/object.php:317 +#: lib/object.php:357 msgid "Bi-Weekly" -msgstr "" +msgstr "Jednou za dva týdny" -#: lib/object.php:318 +#: lib/object.php:358 msgid "Monthly" -msgstr "" +msgstr "Měsíčně" -#: lib/object.php:319 +#: lib/object.php:359 msgid "Yearly" -msgstr "" +msgstr "Ročně" -#: lib/object.php:337 -msgid "Not an array" -msgstr "" +#: lib/object.php:366 +msgid "never" +msgstr "nikdy" -#: templates/calendar.php:3 -msgid "All day" -msgstr "" +#: lib/object.php:367 +msgid "by occurrences" +msgstr "podle výskytu" -#: templates/calendar.php:32 -msgid "Sunday" -msgstr "" +#: lib/object.php:368 +msgid "by date" +msgstr "podle data" -#: templates/calendar.php:32 +#: lib/object.php:375 +msgid "by monthday" +msgstr "podle dne v měsíci" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "podle dne v týdnu" + +#: lib/object.php:383 templates/lAfix.php:3 msgid "Monday" -msgstr "" +msgstr "Pondělí" -#: templates/calendar.php:32 +#: lib/object.php:384 templates/lAfix.php:4 msgid "Tuesday" -msgstr "" +msgstr "Úterý" -#: templates/calendar.php:32 +#: lib/object.php:385 templates/lAfix.php:5 msgid "Wednesday" -msgstr "" +msgstr "Středa" -#: templates/calendar.php:32 +#: lib/object.php:386 templates/lAfix.php:6 msgid "Thursday" -msgstr "" +msgstr "Čtvrtek" -#: templates/calendar.php:32 +#: lib/object.php:387 templates/lAfix.php:7 msgid "Friday" -msgstr "" +msgstr "Pátek" -#: templates/calendar.php:32 +#: lib/object.php:388 templates/lAfix.php:8 msgid "Saturday" -msgstr "" +msgstr "Sobota" -#: templates/calendar.php:33 -msgid "Sun." -msgstr "" +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "Neděle" -#: templates/calendar.php:33 -msgid "Mon." -msgstr "" +#: lib/object.php:396 +msgid "events week of month" +msgstr "týdenní události v měsíci" -#: templates/calendar.php:33 -msgid "Tue." -msgstr "" +#: lib/object.php:397 +msgid "first" +msgstr "první" -#: templates/calendar.php:33 -msgid "Wed." -msgstr "" +#: lib/object.php:398 +msgid "second" +msgstr "druhý" -#: templates/calendar.php:33 -msgid "Thu." -msgstr "" +#: lib/object.php:399 +msgid "third" +msgstr "třetí" -#: templates/calendar.php:33 -msgid "Fri." -msgstr "" +#: lib/object.php:400 +msgid "fourth" +msgstr "čtvrtý" -#: templates/calendar.php:33 -msgid "Sat." -msgstr "" +#: lib/object.php:401 +msgid "fifth" +msgstr "pátý" -#: templates/calendar.php:34 +#: lib/object.php:402 +msgid "last" +msgstr "poslední" + +#: lib/object.php:424 templates/lAfix.php:16 msgid "January" -msgstr "" +msgstr "Leden" -#: templates/calendar.php:34 +#: lib/object.php:425 templates/lAfix.php:17 msgid "February" -msgstr "" +msgstr "Únor" -#: templates/calendar.php:34 +#: lib/object.php:426 templates/lAfix.php:18 msgid "March" -msgstr "" +msgstr "Břeyen" -#: templates/calendar.php:34 +#: lib/object.php:427 templates/lAfix.php:19 msgid "April" -msgstr "" +msgstr "Duben" -#: templates/calendar.php:34 +#: lib/object.php:428 templates/lAfix.php:20 msgid "May" -msgstr "" +msgstr "Květen" -#: templates/calendar.php:34 +#: lib/object.php:429 templates/lAfix.php:21 msgid "June" -msgstr "" +msgstr "Červen" -#: templates/calendar.php:34 +#: lib/object.php:430 templates/lAfix.php:22 msgid "July" -msgstr "" +msgstr "Červenec" -#: templates/calendar.php:34 +#: lib/object.php:431 templates/lAfix.php:23 msgid "August" -msgstr "" +msgstr "Srpen" -#: templates/calendar.php:34 +#: lib/object.php:432 templates/lAfix.php:24 msgid "September" -msgstr "" +msgstr "Září" -#: templates/calendar.php:34 +#: lib/object.php:433 templates/lAfix.php:25 msgid "October" -msgstr "" +msgstr "Říjen" -#: templates/calendar.php:34 +#: lib/object.php:434 templates/lAfix.php:26 msgid "November" -msgstr "" +msgstr "Listopad" -#: templates/calendar.php:34 +#: lib/object.php:435 templates/lAfix.php:27 msgid "December" -msgstr "" +msgstr "Prosinec" -#: templates/calendar.php:35 -msgid "Jan." -msgstr "" +#: lib/object.php:441 +msgid "by events date" +msgstr "podle data události" -#: templates/calendar.php:35 -msgid "Feb." -msgstr "" +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "po dni (dnech)" -#: templates/calendar.php:35 -msgid "Mar." -msgstr "" +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "podle čísel týdnů" -#: templates/calendar.php:35 -msgid "Apr." -msgstr "" +#: lib/object.php:444 +msgid "by day and month" +msgstr "podle dne a měsíce" -#: templates/calendar.php:35 -msgid "May." -msgstr "" +#: lib/object.php:467 +msgid "Not an array" +msgstr "Není zařazeno" -#: templates/calendar.php:35 -msgid "Jun." -msgstr "" +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "Datum" -#: templates/calendar.php:35 -msgid "Jul." -msgstr "" +#: lib/search.php:40 +msgid "Cal." +msgstr "Kal." -#: templates/calendar.php:35 -msgid "Aug." -msgstr "" +#: templates/calendar.php:10 +msgid "All day" +msgstr "Celý den" -#: templates/calendar.php:35 -msgid "Sep." -msgstr "" +#: templates/calendar.php:11 templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "Nový kalendář" -#: templates/calendar.php:35 -msgid "Oct." -msgstr "" +#: templates/calendar.php:12 +msgid "Missing fields" +msgstr "Chybějící pole" -#: templates/calendar.php:35 -msgid "Nov." -msgstr "" +#: templates/calendar.php:13 templates/part.eventform.php:3 +msgid "Title" +msgstr "Název" -#: templates/calendar.php:35 -msgid "Dec." -msgstr "" +#: templates/calendar.php:15 +msgid "From Date" +msgstr "Od data" -#: templates/calendar.php:36 templates/calendar.php:50 -#: templates/calendar.php:116 -msgid "Week" -msgstr "" +#: templates/calendar.php:16 +msgid "From Time" +msgstr "Od" -#: templates/calendar.php:37 templates/calendar.php:51 -msgid "Weeks" -msgstr "" +#: templates/calendar.php:17 +msgid "To Date" +msgstr "Do data" + +#: templates/calendar.php:18 +msgid "To Time" +msgstr "Do" + +#: templates/calendar.php:19 +msgid "The event ends before it starts" +msgstr "Akce končí před zahájením" + +#: templates/calendar.php:20 +msgid "There was a database fail" +msgstr "Chyba v databázi" #: templates/calendar.php:38 -msgid "More before {startdate}" -msgstr "" +msgid "Week" +msgstr "týden" #: templates/calendar.php:39 -msgid "More after {enddate}" -msgstr "" - -#: templates/calendar.php:49 -msgid "Day" -msgstr "" - -#: templates/calendar.php:52 msgid "Month" -msgstr "" +msgstr "měsíc" -#: templates/calendar.php:53 +#: templates/calendar.php:40 msgid "List" -msgstr "" +msgstr "Seznam" -#: templates/calendar.php:58 +#: templates/calendar.php:46 msgid "Today" -msgstr "" +msgstr "dnes" -#: templates/calendar.php:59 +#: templates/calendar.php:47 msgid "Calendars" -msgstr "" +msgstr "Kalendáře" -#: templates/calendar.php:76 templates/calendar.php:94 -msgid "Time" -msgstr "" - -#: templates/calendar.php:169 +#: templates/calendar.php:65 msgid "There was a fail, while parsing the file." -msgstr "" +msgstr "Chyba při převodu souboru" + +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "Ne" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "Po" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "Út" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "St" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "Čt" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "Pá" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "So" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "Led." + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "Úno." + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "Bře." + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "Dub." + +#: templates/lAfix.php:32 +msgid "May." +msgstr "Kvě." + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "Čer." + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "Čec." + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "Srp." + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "Zář." + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "Říj." + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "Lis." + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "Pro." #: templates/part.choosecalendar.php:1 msgid "Choose active calendars" -msgstr "" - -#: templates/part.choosecalendar.php:15 -msgid "New Calendar" -msgstr "" +msgstr "Vybrat aktivní kalendář" #: templates/part.choosecalendar.php:20 #: templates/part.choosecalendar.rowfields.php:4 msgid "CalDav Link" -msgstr "" +msgstr "Odkaz CalDav" #: templates/part.choosecalendar.rowfields.php:4 msgid "Download" -msgstr "" +msgstr "Stáhnout" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.eventinfo.php:64 msgid "Edit" -msgstr "" +msgstr "Editovat" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.editevent.php:8 +#: templates/part.editevent.php:9 msgid "Delete" -msgstr "" +msgstr "Odstranit" #: templates/part.editcalendar.php:9 msgid "New calendar" -msgstr "" +msgstr "Nový kalendář" #: templates/part.editcalendar.php:9 msgid "Edit calendar" -msgstr "" +msgstr "Editovat kalendář" #: templates/part.editcalendar.php:12 msgid "Displayname" -msgstr "" +msgstr "Zobrazené jméno" #: templates/part.editcalendar.php:23 msgid "Active" -msgstr "" +msgstr "Aktivní" -#: templates/part.editcalendar.php:29 templates/part.eventform.php:88 -#: templates/part.eventinfo.php:58 -msgid "Description" -msgstr "" - -#: templates/part.editcalendar.php:35 +#: templates/part.editcalendar.php:29 msgid "Calendar color" -msgstr "" - -#: templates/part.editcalendar.php:41 -msgid "Save" -msgstr "" - -#: templates/part.editcalendar.php:41 templates/part.editevent.php:7 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "" +msgstr "Barva kalendáře" #: templates/part.editcalendar.php:42 +msgid "Save" +msgstr "Uložit" + +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 +#: templates/part.newevent.php:6 +msgid "Submit" +msgstr "Potvrdit" + +#: templates/part.editcalendar.php:43 msgid "Cancel" -msgstr "" +msgstr "Storno" -#: templates/part.editevent.php:1 templates/part.eventinfo.php:1 +#: templates/part.editevent.php:1 msgid "Edit an event" -msgstr "" +msgstr "Editovat událost" -#: templates/part.eventform.php:3 templates/part.eventinfo.php:4 -msgid "Title" -msgstr "" +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "Export" #: templates/part.eventform.php:5 msgid "Title of the Event" -msgstr "" - -#: templates/part.eventform.php:9 templates/part.eventinfo.php:9 -msgid "Location" -msgstr "" +msgstr "Název události" #: templates/part.eventform.php:11 -msgid "Location of the Event" -msgstr "" - -#: templates/part.eventform.php:17 templates/part.eventinfo.php:16 msgid "Category" -msgstr "" +msgstr "Kategorie" -#: templates/part.eventform.php:19 +#: templates/part.eventform.php:13 msgid "Select category" -msgstr "" +msgstr "Vyberte kategorii" -#: templates/part.eventform.php:45 templates/part.eventinfo.php:28 +#: templates/part.eventform.php:37 msgid "All Day Event" -msgstr "" +msgstr "Celodenní událost" -#: templates/part.eventform.php:49 templates/part.eventinfo.php:31 +#: templates/part.eventform.php:41 msgid "From" -msgstr "" +msgstr "od" -#: templates/part.eventform.php:57 templates/part.eventinfo.php:38 +#: templates/part.eventform.php:49 msgid "To" -msgstr "" +msgstr "do" -#: templates/part.eventform.php:65 templates/part.eventinfo.php:44 +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "Pokročilé volby" + +#: templates/part.eventform.php:61 msgid "Repeat" -msgstr "" +msgstr "Opakovat" -#: templates/part.eventform.php:81 templates/part.eventinfo.php:51 -msgid "Attendees" -msgstr "" +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "Pokročilé" -#: templates/part.eventform.php:89 +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "Vybrat dny v týdnu" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "Vybrat dny" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "a denní události v roce" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "a denní události v měsíci" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "Vybrat měsíce" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "Vybrat týdny" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "a týden s událostmi v roce" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "Interval" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "Konec" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "výskyty" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Umístění" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Místo konání události" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Popis" + +#: templates/part.eventform.php:218 msgid "Description of the Event" -msgstr "" +msgstr "Popis události" -#: templates/part.eventinfo.php:63 -msgid "Close" -msgstr "" +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "Importovat soubor kalendáře" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "Zvolte prosím kalendář" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "vytvořit nový kalendář" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "Název nového kalendáře" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "Import" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "Kalendář se importuje" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "Kalendář byl importován úspěšně" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "Zavřít dialog" #: templates/part.newevent.php:1 msgid "Create a new event" -msgstr "" +msgstr "Vytvořit novou událost" -#: templates/settings.php:11 +#: templates/settings.php:13 msgid "Timezone" -msgstr "" +msgstr "Časové pásmo" + +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "Zkontrolujte vždy změny časového pásma" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "Formát času" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24h" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12h" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "Adresa pro synchronizaci kalendáře CalDAV:" diff --git a/l10n/cs_CZ/contacts.po b/l10n/cs_CZ/contacts.po index 76af9f7e5ca..ff33e13c356 100644 --- a/l10n/cs_CZ/contacts.po +++ b/l10n/cs_CZ/contacts.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Jan Krejci , 2011. +# Martin , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 20:10+0200\n" -"PO-Revision-Date: 2011-09-23 18:11+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.net/projects/p/owncloud/team/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,164 +19,265 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" -#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 -#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 -#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 -#: ajax/showsetproperty.php:32 photo.php:32 -msgid "You need to log in." -msgstr "" +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." +msgstr "Chyba při (de)aktivaci adresáře." -#: ajax/addcard.php:37 +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "Během přidávání kontaktu nastala chyba." + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "Nelze přidat prazdný údaj." + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "Musí být uveden nejméně jeden z adresních údajů" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "Chyba během přdávání údaje kontaktu." + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "Chyba při přidávání adresáře." + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "Chyba při aktivaci adresáře." + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "Chyba při odstraňování údaje kontaktu." + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "Chyba při aktualizaci údaje kontaktu." + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "Chyba při aktualizaci adresáře." + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "Kontakty" + +#: lib/app.php:52 msgid "This is not your addressbook." -msgstr "" +msgstr "Toto není Váš adresář." -#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 -#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 -#: ajax/showsetproperty.php:38 photo.php:39 +#: lib/app.php:61 photo.php:36 msgid "Contact could not be found." -msgstr "" +msgstr "Kontakt nebyl nalezen." -#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 -#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 -#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 -msgid "This is not your contact." -msgstr "" - -#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 -#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 -msgid "vCard could not be read." -msgstr "" - -#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 -#: ajax/showsetproperty.php:62 +#: lib/app.php:89 msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" +msgstr "Informace o vCard je nesprávná. Obnovte stránku, prosím." -#: photo.php:53 -msgid "This card is not RFC compatible." -msgstr "" - -#: photo.php:90 -msgid "This card does not contain a photo." -msgstr "" - -#: templates/index.php:8 -msgid "Add Contact" -msgstr "" - -#: templates/part.addcardform.php:5 -msgid "Group" -msgstr "" - -#: templates/part.addcardform.php:12 templates/part.property.php:3 -msgid "Name" -msgstr "" - -#: templates/part.addcardform.php:14 -msgid "Create Contact" -msgstr "" - -#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 msgid "Address" -msgstr "" +msgstr "Adresa" -#: templates/part.addpropertyform.php:5 +#: lib/app.php:102 templates/part.addcardform.php:43 msgid "Telephone" -msgstr "" +msgstr "Telefon" -#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 msgid "Email" -msgstr "" +msgstr "Email" -#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 msgid "Organization" -msgstr "" +msgstr "Organizace" -#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +#: lib/app.php:116 lib/app.php:123 msgid "Work" -msgstr "" +msgstr "Pracovní" -#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +#: lib/app.php:117 lib/app.php:121 msgid "Home" -msgstr "" +msgstr "Domácí" -#: templates/part.addpropertyform.php:20 templates/part.property.php:48 -#: templates/part.setpropertyform.php:5 -msgid "PO Box" -msgstr "" - -#: templates/part.addpropertyform.php:21 templates/part.property.php:51 -#: templates/part.setpropertyform.php:6 -msgid "Extended" -msgstr "" - -#: templates/part.addpropertyform.php:22 templates/part.property.php:54 -#: templates/part.setpropertyform.php:7 -msgid "Street" -msgstr "" - -#: templates/part.addpropertyform.php:23 templates/part.property.php:57 -#: templates/part.setpropertyform.php:8 -msgid "City" -msgstr "" - -#: templates/part.addpropertyform.php:24 templates/part.property.php:60 -#: templates/part.setpropertyform.php:9 -msgid "Region" -msgstr "" - -#: templates/part.addpropertyform.php:25 templates/part.property.php:63 -#: templates/part.setpropertyform.php:10 -msgid "Zipcode" -msgstr "" - -#: templates/part.addpropertyform.php:26 templates/part.property.php:66 -#: templates/part.setpropertyform.php:11 -msgid "Country" -msgstr "" - -#: templates/part.addpropertyform.php:31 +#: lib/app.php:122 msgid "Mobile" -msgstr "" +msgstr "Mobil" -#: templates/part.addpropertyform.php:33 +#: lib/app.php:124 msgid "Text" -msgstr "" +msgstr "Text" -#: templates/part.addpropertyform.php:34 +#: lib/app.php:125 msgid "Voice" -msgstr "" +msgstr "Hlas" -#: templates/part.addpropertyform.php:35 +#: lib/app.php:126 msgid "Fax" -msgstr "" +msgstr "Fax" -#: templates/part.addpropertyform.php:36 +#: lib/app.php:127 msgid "Video" -msgstr "" +msgstr "Video" -#: templates/part.addpropertyform.php:37 +#: lib/app.php:128 msgid "Pager" -msgstr "" +msgstr "Pager" -#: templates/part.details.php:33 +#: lib/search.php:22 +msgid "Contact" +msgstr "Kontakt" + +#: photo.php:42 +msgid "This is not your contact." +msgstr "Toto není Váš kontakt." + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Přidat kontakt" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "Adresáře" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "Adresář" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Jméno" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "Typ" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "PO box" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Rozšířené" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Ulice" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Město" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Kraj" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "PSČ" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "Země" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Vytvořit kontakt" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "Zvolte aktivní adresář" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "Nový adresář" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "Odkaz CardDav" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "Stažení" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Editovat" + +#: templates/part.chooseaddressbook.rowfields.php:5 msgid "Delete" -msgstr "" +msgstr "Odstranit" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "Stáhnout kontakt" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "Odstranit kontakt" #: templates/part.details.php:34 -msgid "Add Property" -msgstr "" +msgid "Add" +msgstr "Přidat" -#: templates/part.property.php:9 +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "Nový adresář" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "Editace adresáře" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "Zobrazené jméno" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "Aktivní" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "Uložit" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "Potvrdit" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "Storno" + +#: templates/part.property.php:3 msgid "Birthday" -msgstr "" +msgstr "Narozeniny" -#: templates/part.property.php:29 +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "Preferovaný" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 msgid "Phone" -msgstr "" +msgstr "Telefon" -#: templates/part.setpropertyform.php:17 -msgid "Edit" -msgstr "" +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "Aktualizovat" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "CardDAV synchronizuje adresu:" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index f13d48f0b08..d395875fb84 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -2,14 +2,16 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # -# Martin , 2011. +# Translators: +# Jan Krejci , 2011. +# Martin , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-04 18:14+0200\n" -"PO-Revision-Date: 2011-09-04 16:14+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-11 11:30+0000\n" +"Last-Translator: Martin \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.net/projects/p/owncloud/team/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +19,51 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "Reset hesla Owncloud" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "Heslo vyresetujete použitím následujícího odkazu: {link}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "Bude Vám zaslán odkaz pro obnovu hesla" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Požadováno" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Přihlášení selhalo" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Uživatelské jméno" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Vyžádat obnovu" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Vaše heslo bylo obnoveno" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "Na stránku přihlášení" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Nové heslo" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Obnovit heslo" + #: strings.php:5 msgid "Personal" msgstr "Osobní" @@ -45,54 +92,50 @@ msgstr "Cloud nebyl nalezen" msgid "Create an admin account" msgstr "Vytvořit účet správce" -#: templates/installation.php:21 -msgid "Username" -msgstr "Uživatelské jméno" - -#: templates/installation.php:22 +#: templates/installation.php:26 templates/login.php:12 msgid "Password" msgstr "Heslo" -#: templates/installation.php:27 -msgid "Configure the database" -msgstr "Konfigurace databáze" - -#: templates/installation.php:32 templates/installation.php:43 -#: templates/installation.php:53 -msgid "will be used" -msgstr "bude použito" - -#: templates/installation.php:64 -msgid "Database user" -msgstr "Uživatel databáze" - -#: templates/installation.php:65 -msgid "Database password" -msgstr "Heslo k databázi" - -#: templates/installation.php:66 -msgid "Database name" -msgstr "Název databáze" - -#: templates/installation.php:72 +#: templates/installation.php:32 msgid "Advanced" msgstr "Rozšířené volby" -#: templates/installation.php:75 -msgid "Database host" -msgstr "" - -#: templates/installation.php:76 +#: templates/installation.php:34 msgid "Data folder" msgstr "Datový adresář" +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Konfigurace databáze" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "bude použito" + #: templates/installation.php:79 +msgid "Database user" +msgstr "Uživatel databáze" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Heslo k databázi" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Název databáze" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Hostitel databáze" + +#: templates/installation.php:98 msgid "Finish setup" msgstr "Dokončit instalaci" #: templates/layout.guest.php:35 -msgid "gives you freedom and control over your own data" -msgstr "" +msgid "web services under your control" +msgstr "webové služby pod Vaší kontrolou" #: templates/layout.user.php:34 msgid "Log out" @@ -102,38 +145,22 @@ msgstr "Odhlásit se" msgid "Settings" msgstr "Nastavení" -#: templates/login.php:4 +#: templates/login.php:5 msgid "Lost your password?" -msgstr "" +msgstr "Zapomenuté heslo?" -#: templates/login.php:9 templates/login.php:13 +#: templates/login.php:15 msgid "remember" msgstr "zapamatovat si" +#: templates/login.php:16 +msgid "Log in" +msgstr "Login" + #: templates/logout.php:1 msgid "You are logged out." msgstr "Jste odhlášeni." -#: templates/lostpassword.php:3 -msgid "You will receive a link to reset your password via Email." -msgstr "" - -#: templates/lostpassword.php:5 -msgid "Requested" -msgstr "" - -#: templates/lostpassword.php:8 -msgid "Login failed!" -msgstr "Přihlášení se nezdařilo!" - -#: templates/lostpassword.php:10 -msgid "Username or Email" -msgstr "" - -#: templates/lostpassword.php:11 -msgid "Request reset" -msgstr "" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "zpět" @@ -142,16 +169,4 @@ msgstr "zpět" msgid "next" msgstr "vpřed" -#: templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "" - -#: templates/resetpassword.php:6 -msgid "New password" -msgstr "" - -#: templates/resetpassword.php:7 -msgid "Reset password" -msgstr "" - diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 6dc49c6a5d5..6c775ed9703 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Martin , 2011. +# Martin , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-11 11:31+0000\n" +"Last-Translator: Martin \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.net/projects/p/owncloud/team/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,33 +18,36 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" -#: ajax/upload.php:24 +#: ajax/upload.php:19 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "Soubor byl odeslán úspěšně" -#: ajax/upload.php:25 +#: ajax/upload.php:20 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "" +"Odeslaný soubor přesáhl velikostí parametr upload_max_filesize v php.ini" -#: ajax/upload.php:26 +#: ajax/upload.php:21 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" +"Odeslaný soubor přesáhl velikostí parametr MAX_FILE_SIZE specifikovaný v " +"HTML formuláři" -#: ajax/upload.php:27 +#: ajax/upload.php:22 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "Soubor byl odeslán pouze částečně" -#: ajax/upload.php:28 +#: ajax/upload.php:23 msgid "No file was uploaded" -msgstr "" +msgstr "Soubor nebyl odeslán" -#: ajax/upload.php:29 +#: ajax/upload.php:24 msgid "Missing a temporary folder" -msgstr "" +msgstr "Chybí adresář pro sočasné soubory" -#: appinfo/app.php:7 +#: appinfo/app.php:8 msgid "Files" msgstr "Soubory" @@ -52,43 +55,55 @@ msgstr "Soubory" msgid "Maximum upload size" msgstr "Maximální velikost ukládaných souborů" +#: templates/index.php:7 +msgid "New" +msgstr "Nový" + #: templates/index.php:10 +msgid "Text file" +msgstr "Textový soubor" + +#: templates/index.php:11 +msgid "Folder" +msgstr "Adresář" + +#: templates/index.php:12 +msgid "From the web" +msgstr "Z webu" + +#: templates/index.php:22 msgid "Upload" msgstr "Uložit" -#: templates/index.php:17 -msgid "New Folder" -msgstr "Nový adresář" - -#: templates/index.php:31 +#: templates/index.php:35 msgid "Nothing in here. Upload something!" msgstr "Žádný obsah. Uložte si něco!" -#: templates/index.php:39 +#: templates/index.php:43 msgid "Name" msgstr "Název" -#: templates/index.php:41 +#: templates/index.php:45 msgid "Download" msgstr "Stáhnout" -#: templates/index.php:45 +#: templates/index.php:49 msgid "Size" msgstr "Velikost" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Modified" msgstr "Změněno" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Delete" msgstr "Vymazat" -#: templates/index.php:54 +#: templates/index.php:58 msgid "Upload too large" msgstr "Příliš velký soubor" -#: templates/index.php:56 +#: templates/index.php:60 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." diff --git a/l10n/cs_CZ/gallery.po b/l10n/cs_CZ/gallery.po new file mode 100644 index 00000000000..9a7a46c1865 --- /dev/null +++ b/l10n/cs_CZ/gallery.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Jan Krejci , 2012. +# Martin , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-24 21:39+0000\n" +"Last-Translator: Jan Krejci \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.net/projects/p/owncloud/team/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "Galerie" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "Prohledávám adresáře" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "Nenalezeny žádné fotky" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "Vytvářím náhledy" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "Chcete odstranit album?" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "Zadejte nový název galerie" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "Opakované prohledání" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "Zpět" + + diff --git a/l10n/cs_CZ/media.po b/l10n/cs_CZ/media.po index f27aab19c88..896bb88c3f7 100644 --- a/l10n/cs_CZ/media.po +++ b/l10n/cs_CZ/media.po @@ -2,14 +2,16 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# Translators: +# Jan Krejci , 2011. # Martin , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-09-03 14:50+0200\n" -"PO-Revision-Date: 2011-09-01 14:09+0000\n" -"Last-Translator: Fireball \n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.net/projects/p/owncloud/team/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,15 +19,15 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" -#: appinfo/app.php:31 +#: appinfo/app.php:32 msgid "Music" -msgstr "hudba" +msgstr "Hudba" -#: templates/music.php:3 +#: templates/music.php:3 templates/player.php:13 msgid "Play" msgstr "Přehrát" -#: templates/music.php:4 templates/music.php:30 +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 msgid "Pause" msgstr "Pauza" @@ -33,7 +35,7 @@ msgstr "Pauza" msgid "Previous" msgstr "Předchozí" -#: templates/music.php:6 +#: templates/music.php:6 templates/player.php:15 msgid "Next" msgstr "Další" @@ -45,11 +47,7 @@ msgstr "Ztišit" msgid "Unmute" msgstr "Zesílit" -#: templates/music.php:28 -msgid "Songs scanned" -msgstr "Skladby jsou prohledány" - -#: templates/music.php:29 +#: templates/music.php:25 msgid "Rescan Collection" msgstr "Znovu prohledat " diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index f9863f56d18..30df2ed9645 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -2,14 +2,17 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # -# Martin , 2011. +# Translators: +# , 2012. +# Jan Krejci , 2011, 2012. +# Martin , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-09-03 14:50+0200\n" -"PO-Revision-Date: 2011-09-01 14:15+0000\n" -"Last-Translator: Fireball \n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:25+0100\n" +"PO-Revision-Date: 2012-01-24 21:42+0000\n" +"Last-Translator: Jan Krejci \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.net/projects/p/owncloud/team/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,22 +20,30 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" -#: ajax/openid.php:13 ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Chyba při ověření" +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "email změněn" -#: ajax/openid.php:21 -msgid "OpenID Changed" -msgstr "OpenID změněn" - -#: ajax/openid.php:23 ajax/setlanguage.php:23 +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 msgid "Invalid request" msgstr "Chybný dotaz" -#: ajax/setlanguage.php:21 +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID změněn" + +#: ajax/setlanguage.php:14 msgid "Language changed" msgstr "Jazyk byl změněn" +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "Česky" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "Úroveň logu" + #: templates/apps.php:8 msgid "Add your application" msgstr "Přidejte svou aplikaci" @@ -53,15 +64,15 @@ msgstr "podle" msgid "Ask a question" msgstr "Zeptat se" -#: templates/help.php:17 +#: templates/help.php:20 msgid "Problems connecting to help database." msgstr "Problémy s připojením k databázi s nápovědou." -#: templates/help.php:18 +#: templates/help.php:21 msgid "Go there manually." msgstr "Přejít ručně." -#: templates/help.php:26 +#: templates/help.php:29 msgid "Answer" msgstr "Odpověď" @@ -97,36 +108,52 @@ msgstr "zobrazit" msgid "Change password" msgstr "Změnit heslo" -#: templates/personal.php:24 templates/personal.php:25 +#: templates/personal.php:24 +msgid "Email" +msgstr "Email" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "Vaše email adresa" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "Pro povolení změny hesla vyplňte email adresu" + +#: templates/personal.php:32 templates/personal.php:33 msgid "Language" msgstr "Jazyk" -#: templates/personal.php:30 -msgid "Help translating" -msgstr "Pomozte s překladem" +#: templates/personal.php:38 +msgid "Help translate" +msgstr "Pomoc s překladem" -#: templates/personal.php:36 +#: templates/personal.php:45 msgid "use this address to connect to your ownCloud in your file manager" msgstr "" "tuto adresu použijte pro připojení k ownCloud ve Vašem správci souborů" -#: templates/users.php:16 +#: templates/users.php:15 templates/users.php:30 msgid "Name" msgstr "Jméno" -#: templates/users.php:17 +#: templates/users.php:16 templates/users.php:31 msgid "Password" msgstr "Heslo" -#: templates/users.php:18 templates/users.php:36 +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 msgid "Groups" msgstr "Skupiny" -#: templates/users.php:24 +#: templates/users.php:23 msgid "Create" msgstr "Vytvořit" -#: templates/users.php:48 +#: templates/users.php:33 +msgid "Quota" +msgstr "Kvóta" + +#: templates/users.php:58 msgid "Delete" msgstr "Vymazat" diff --git a/l10n/da/calendar.po b/l10n/da/calendar.po index f78c8d1a810..f292f2391c3 100644 --- a/l10n/da/calendar.po +++ b/l10n/da/calendar.po @@ -4,14 +4,15 @@ # # Translators: # , 2011. +# Morten Juhl-Johansen Zölde-Fejér , 2011, 2012. # Pascal d'Hermilly , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-21 00:41+0000\n" +"Last-Translator: Morten Juhl-Johansen Zölde-Fejér \n" "Language-Team: Danish (http://www.transifex.net/projects/p/owncloud/team/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,347 +20,428 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/createcalendar.php:18 ajax/settimezone.php:19 -#: ajax/updatecalendar.php:18 -msgid "Authentication error" -msgstr "Godkendelsesfejl" +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "Ny tidszone:" -#: ajax/editeventform.php:25 -msgid "Wrong calendar" -msgstr "Forkert kalender" - -#: ajax/settimezone.php:27 +#: ajax/settimezone.php:22 msgid "Timezone changed" msgstr "Tidszone ændret" -#: ajax/settimezone.php:29 +#: ajax/settimezone.php:24 msgid "Invalid request" msgstr "Ugyldig forespørgsel" -#: appinfo/app.php:19 templates/part.eventform.php:27 -#: templates/part.eventinfo.php:18 +#: appinfo/app.php:20 templates/calendar.php:14 +#: templates/part.eventform.php:20 msgid "Calendar" msgstr "Kalender" -#: lib/object.php:292 +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Forkert kalender" + +#: lib/app.php:60 lib/object.php:332 msgid "Birthday" msgstr "Fødselsdag" -#: lib/object.php:293 +#: lib/app.php:61 lib/object.php:333 msgid "Business" msgstr "Forretning" -#: lib/object.php:294 +#: lib/app.php:62 lib/object.php:334 msgid "Call" msgstr "Ring" -#: lib/object.php:295 +#: lib/app.php:63 lib/object.php:335 msgid "Clients" msgstr "Kunder" -#: lib/object.php:296 +#: lib/app.php:64 lib/object.php:336 msgid "Deliverer" -msgstr "" +msgstr "Leverance" -#: lib/object.php:297 +#: lib/app.php:65 lib/object.php:337 msgid "Holidays" msgstr "Helligdage" -#: lib/object.php:298 +#: lib/app.php:66 lib/object.php:338 msgid "Ideas" msgstr "Ideér" -#: lib/object.php:299 +#: lib/app.php:67 lib/object.php:339 msgid "Journey" msgstr "Rejse" -#: lib/object.php:300 +#: lib/app.php:68 lib/object.php:340 msgid "Jubilee" msgstr "Jubilæum" -#: lib/object.php:301 +#: lib/app.php:69 lib/object.php:341 msgid "Meeting" msgstr "Møde" -#: lib/object.php:302 +#: lib/app.php:70 lib/object.php:342 msgid "Other" msgstr "Andet" -#: lib/object.php:303 +#: lib/app.php:71 lib/object.php:343 msgid "Personal" msgstr "Privat" -#: lib/object.php:304 +#: lib/app.php:72 lib/object.php:344 msgid "Projects" msgstr "Projekter" -#: lib/object.php:305 +#: lib/app.php:73 lib/object.php:345 msgid "Questions" msgstr "Spørgsmål" -#: lib/object.php:306 +#: lib/app.php:74 lib/object.php:346 msgid "Work" msgstr "Arbejde" -#: lib/object.php:313 +#: lib/object.php:353 msgid "Does not repeat" msgstr "Gentages ikke" -#: lib/object.php:314 +#: lib/object.php:354 msgid "Daily" msgstr "Daglig" -#: lib/object.php:315 +#: lib/object.php:355 msgid "Weekly" msgstr "Ugentlig" -#: lib/object.php:316 +#: lib/object.php:356 msgid "Every Weekday" msgstr "Alle hverdage" -#: lib/object.php:317 +#: lib/object.php:357 msgid "Bi-Weekly" -msgstr "Bi-Ugentligt" +msgstr "Hver anden uge" -#: lib/object.php:318 +#: lib/object.php:358 msgid "Monthly" -msgstr "Månedlige" +msgstr "Månedlig" -#: lib/object.php:319 +#: lib/object.php:359 msgid "Yearly" msgstr "Årlig" -#: lib/object.php:337 -msgid "Not an array" -msgstr "" +#: lib/object.php:366 +msgid "never" +msgstr "aldrig" -#: templates/calendar.php:3 -msgid "All day" -msgstr "Hele dagen" +#: lib/object.php:367 +msgid "by occurrences" +msgstr "efter forekomster" -#: templates/calendar.php:32 -msgid "Sunday" -msgstr "Søndag" +#: lib/object.php:368 +msgid "by date" +msgstr "efter dato" -#: templates/calendar.php:32 +#: lib/object.php:375 +msgid "by monthday" +msgstr "efter dag i måneden" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "efter ugedag" + +#: lib/object.php:383 templates/lAfix.php:3 msgid "Monday" msgstr "Mandag" -#: templates/calendar.php:32 +#: lib/object.php:384 templates/lAfix.php:4 msgid "Tuesday" msgstr "Tirsdag" -#: templates/calendar.php:32 +#: lib/object.php:385 templates/lAfix.php:5 msgid "Wednesday" msgstr "Onsdag" -#: templates/calendar.php:32 +#: lib/object.php:386 templates/lAfix.php:6 msgid "Thursday" msgstr "Torsdag" -#: templates/calendar.php:32 +#: lib/object.php:387 templates/lAfix.php:7 msgid "Friday" msgstr "Fredag" -#: templates/calendar.php:32 +#: lib/object.php:388 templates/lAfix.php:8 msgid "Saturday" msgstr "Lørdag" -#: templates/calendar.php:33 -msgid "Sun." -msgstr "Søn." +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "øndag" -#: templates/calendar.php:33 -msgid "Mon." -msgstr "Man." +#: lib/object.php:396 +msgid "events week of month" +msgstr "begivenhedens uge i måneden" -#: templates/calendar.php:33 -msgid "Tue." -msgstr "Tir." +#: lib/object.php:397 +msgid "first" +msgstr "første" -#: templates/calendar.php:33 -msgid "Wed." -msgstr "Ons." +#: lib/object.php:398 +msgid "second" +msgstr "anden" -#: templates/calendar.php:33 -msgid "Thu." -msgstr "Tor." +#: lib/object.php:399 +msgid "third" +msgstr "tredje" -#: templates/calendar.php:33 -msgid "Fri." -msgstr "Fre." +#: lib/object.php:400 +msgid "fourth" +msgstr "fjerde" -#: templates/calendar.php:33 -msgid "Sat." -msgstr "Lør." +#: lib/object.php:401 +msgid "fifth" +msgstr "femte" -#: templates/calendar.php:34 +#: lib/object.php:402 +msgid "last" +msgstr "sidste" + +#: lib/object.php:424 templates/lAfix.php:16 msgid "January" msgstr "Januar" -#: templates/calendar.php:34 +#: lib/object.php:425 templates/lAfix.php:17 msgid "February" msgstr "Februar" -#: templates/calendar.php:34 +#: lib/object.php:426 templates/lAfix.php:18 msgid "March" msgstr "Marts" -#: templates/calendar.php:34 +#: lib/object.php:427 templates/lAfix.php:19 msgid "April" msgstr "April" -#: templates/calendar.php:34 +#: lib/object.php:428 templates/lAfix.php:20 msgid "May" msgstr "Maj" -#: templates/calendar.php:34 +#: lib/object.php:429 templates/lAfix.php:21 msgid "June" msgstr "Juni" -#: templates/calendar.php:34 +#: lib/object.php:430 templates/lAfix.php:22 msgid "July" msgstr "Juli" -#: templates/calendar.php:34 +#: lib/object.php:431 templates/lAfix.php:23 msgid "August" msgstr "August" -#: templates/calendar.php:34 +#: lib/object.php:432 templates/lAfix.php:24 msgid "September" msgstr "September" -#: templates/calendar.php:34 +#: lib/object.php:433 templates/lAfix.php:25 msgid "October" msgstr "Oktober" -#: templates/calendar.php:34 +#: lib/object.php:434 templates/lAfix.php:26 msgid "November" msgstr "November" -#: templates/calendar.php:34 +#: lib/object.php:435 templates/lAfix.php:27 msgid "December" msgstr "December" -#: templates/calendar.php:35 -msgid "Jan." -msgstr "Jan." +#: lib/object.php:441 +msgid "by events date" +msgstr "efter begivenheders dato" -#: templates/calendar.php:35 -msgid "Feb." -msgstr "Feb." +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "efter dag(e) i året" -#: templates/calendar.php:35 -msgid "Mar." -msgstr "Mar." +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "efter ugenummer/-numre" -#: templates/calendar.php:35 -msgid "Apr." -msgstr "Apr." +#: lib/object.php:444 +msgid "by day and month" +msgstr "efter dag og måned" -#: templates/calendar.php:35 -msgid "May." -msgstr "Maj." +#: lib/object.php:467 +msgid "Not an array" +msgstr "Ikke en array" -#: templates/calendar.php:35 -msgid "Jun." -msgstr "Jun." +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "Dato" -#: templates/calendar.php:35 -msgid "Jul." -msgstr "Jul." +#: lib/search.php:40 +msgid "Cal." +msgstr "Kal." -#: templates/calendar.php:35 -msgid "Aug." -msgstr "Aug." +#: templates/calendar.php:10 +msgid "All day" +msgstr "Hele dagen" -#: templates/calendar.php:35 -msgid "Sep." -msgstr "Sep." +#: templates/calendar.php:11 templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "Ny Kalender" -#: templates/calendar.php:35 -msgid "Oct." -msgstr "Oct." +#: templates/calendar.php:12 +msgid "Missing fields" +msgstr "Manglende felter" -#: templates/calendar.php:35 -msgid "Nov." -msgstr "Nov." +#: templates/calendar.php:13 templates/part.eventform.php:3 +msgid "Title" +msgstr "Titel" -#: templates/calendar.php:35 -msgid "Dec." -msgstr "Dec." +#: templates/calendar.php:15 +msgid "From Date" +msgstr "Fra dato" -#: templates/calendar.php:36 templates/calendar.php:50 -#: templates/calendar.php:116 +#: templates/calendar.php:16 +msgid "From Time" +msgstr "Fra tidspunkt" + +#: templates/calendar.php:17 +msgid "To Date" +msgstr "Til dato" + +#: templates/calendar.php:18 +msgid "To Time" +msgstr "Til tidspunkt" + +#: templates/calendar.php:19 +msgid "The event ends before it starts" +msgstr "Begivenheden slutter, inden den begynder" + +#: templates/calendar.php:20 +msgid "There was a database fail" +msgstr "Der var en fejl i databasen" + +#: templates/calendar.php:38 msgid "Week" msgstr "Uge" -#: templates/calendar.php:37 templates/calendar.php:51 -msgid "Weeks" -msgstr "Uger" - -#: templates/calendar.php:38 -msgid "More before {startdate}" -msgstr "Mere før {startdate}" - #: templates/calendar.php:39 -msgid "More after {enddate}" -msgstr "Mere efter {enddate}" - -#: templates/calendar.php:49 -msgid "Day" -msgstr "Dag" - -#: templates/calendar.php:52 msgid "Month" msgstr "Måned" -#: templates/calendar.php:53 +#: templates/calendar.php:40 msgid "List" msgstr "Liste" -#: templates/calendar.php:58 +#: templates/calendar.php:46 msgid "Today" msgstr "I dag" -#: templates/calendar.php:59 +#: templates/calendar.php:47 msgid "Calendars" msgstr "Kalendere" -#: templates/calendar.php:76 templates/calendar.php:94 -msgid "Time" -msgstr "Tid" - -#: templates/calendar.php:169 +#: templates/calendar.php:65 msgid "There was a fail, while parsing the file." msgstr "Der opstod en fejl under gennemlæsning af filen." +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "Søn." + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "Man." + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "Tir." + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "Ons." + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "Tor." + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "Fre." + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "Lør." + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "Jan." + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "Feb." + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "Mar." + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "Apr." + +#: templates/lAfix.php:32 +msgid "May." +msgstr "Maj." + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "Jun." + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "Jul." + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "Aug." + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "Sept." + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "Okt." + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "Nov." + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "Dec." + #: templates/part.choosecalendar.php:1 msgid "Choose active calendars" -msgstr "Vælg aktiv kalendere" - -#: templates/part.choosecalendar.php:15 -msgid "New Calendar" -msgstr "Ny Kalender" +msgstr "Vælg aktive kalendere" #: templates/part.choosecalendar.php:20 #: templates/part.choosecalendar.rowfields.php:4 msgid "CalDav Link" -msgstr "CalDav Link" +msgstr "CalDav-link" #: templates/part.choosecalendar.rowfields.php:4 msgid "Download" msgstr "Hent" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.eventinfo.php:64 msgid "Edit" msgstr "Rediger" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.editevent.php:8 +#: templates/part.editevent.php:9 msgid "Delete" -msgstr "" +msgstr "Slet" #: templates/part.editcalendar.php:9 msgid "New calendar" @@ -371,96 +453,187 @@ msgstr "Rediger kalender" #: templates/part.editcalendar.php:12 msgid "Displayname" -msgstr "Visningsnavn" +msgstr "Vist navn" #: templates/part.editcalendar.php:23 msgid "Active" msgstr "Aktiv" -#: templates/part.editcalendar.php:29 templates/part.eventform.php:88 -#: templates/part.eventinfo.php:58 -msgid "Description" -msgstr "Beskrivelse" - -#: templates/part.editcalendar.php:35 +#: templates/part.editcalendar.php:29 msgid "Calendar color" -msgstr "Kalender farve" +msgstr "Kalenderfarve" -#: templates/part.editcalendar.php:41 +#: templates/part.editcalendar.php:42 msgid "Save" msgstr "Gem" -#: templates/part.editcalendar.php:41 templates/part.editevent.php:7 +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 #: templates/part.newevent.php:6 msgid "Submit" msgstr "Send" -#: templates/part.editcalendar.php:42 +#: templates/part.editcalendar.php:43 msgid "Cancel" -msgstr "Annullér" +msgstr "Annuller" -#: templates/part.editevent.php:1 templates/part.eventinfo.php:1 +#: templates/part.editevent.php:1 msgid "Edit an event" msgstr "Redigér en begivenhed" -#: templates/part.eventform.php:3 templates/part.eventinfo.php:4 -msgid "Title" -msgstr "Titel" +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "Eksporter" #: templates/part.eventform.php:5 msgid "Title of the Event" msgstr "Titel på begivenheden" -#: templates/part.eventform.php:9 templates/part.eventinfo.php:9 -msgid "Location" -msgstr "Sted" - #: templates/part.eventform.php:11 -msgid "Location of the Event" -msgstr "Placering af begivenheden" - -#: templates/part.eventform.php:17 templates/part.eventinfo.php:16 msgid "Category" msgstr "Kategori" -#: templates/part.eventform.php:19 +#: templates/part.eventform.php:13 msgid "Select category" msgstr "Vælg kategori" -#: templates/part.eventform.php:45 templates/part.eventinfo.php:28 +#: templates/part.eventform.php:37 msgid "All Day Event" msgstr "Heldagsarrangement" -#: templates/part.eventform.php:49 templates/part.eventinfo.php:31 +#: templates/part.eventform.php:41 msgid "From" msgstr "Fra" -#: templates/part.eventform.php:57 templates/part.eventinfo.php:38 +#: templates/part.eventform.php:49 msgid "To" msgstr "Til" -#: templates/part.eventform.php:65 templates/part.eventinfo.php:44 +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "Avancerede indstillinger" + +#: templates/part.eventform.php:61 msgid "Repeat" msgstr "Gentag" -#: templates/part.eventform.php:81 templates/part.eventinfo.php:51 -msgid "Attendees" -msgstr "Deltagere" +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "Avanceret" -#: templates/part.eventform.php:89 +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "Vælg ugedage" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "Vælg dage" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "og begivenhedens dag i året." + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "og begivenhedens sag på måneden" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "Vælg måneder" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "Vælg uger" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "og begivenhedens uge i året." + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "Interval" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "Afslutning" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "forekomster" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Sted" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Placering af begivenheden" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Beskrivelse" + +#: templates/part.eventform.php:218 msgid "Description of the Event" msgstr "Beskrivelse af begivenheden" -#: templates/part.eventinfo.php:63 -msgid "Close" -msgstr "Luk" +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "Importer en kalenderfil" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "Vælg venligst kalender" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "opret en ny kalender" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "Navn på ny kalender" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "Importer" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "Importerer kalender" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "Kalender importeret korrekt" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "Luk dialog" #: templates/part.newevent.php:1 msgid "Create a new event" msgstr "Opret en ny begivenhed" -#: templates/settings.php:11 +#: templates/settings.php:13 msgid "Timezone" msgstr "Tidszone" +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "Check altid efter ændringer i tidszone" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "Tidsformat" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24T" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12T" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "Synkroniseringsadresse til CalDAV:" + diff --git a/l10n/da/contacts.po b/l10n/da/contacts.po index c65bf62822a..b8891a85cc9 100644 --- a/l10n/da/contacts.po +++ b/l10n/da/contacts.po @@ -3,14 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2011. +# Morten Juhl-Johansen Zölde-Fejér , 2011, 2012. # Pascal d'Hermilly , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 20:41+0000\n" -"Last-Translator: pascal_a \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" "Language-Team: Danish (http://www.transifex.net/projects/p/owncloud/team/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,164 +20,265 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 -#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 -#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 -#: ajax/showsetproperty.php:32 photo.php:32 -msgid "You need to log in." -msgstr "Du skal logge ind." +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." +msgstr "Fejl ved (de)aktivering af adressebogen" -#: ajax/addcard.php:37 +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "Der opstod en fejl ved tilføjelse af kontaktpersonen." + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "Kan ikke tilføje en egenskab uden indhold." + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "Der skal udfyldes mindst et adressefelt." + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "Fejl ved tilføjelse af egenskab." + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "Fejl ved tilføjelse af adressebog." + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "Fejl ved aktivering af adressebog." + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "Fejl ved sletning af egenskab for kontaktperson." + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "Fejl ved opdatering af egenskab for kontaktperson." + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "Fejl ved opdatering af adressebog" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "Kontaktpersoner" + +#: lib/app.php:52 msgid "This is not your addressbook." msgstr "Dette er ikke din adressebog." -#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 -#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 -#: ajax/showsetproperty.php:38 photo.php:39 +#: lib/app.php:61 photo.php:36 msgid "Contact could not be found." -msgstr "Kontakt kunne ikke findes." +msgstr "Kontaktperson kunne ikke findes." -#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 -#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 -#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 -msgid "This is not your contact." -msgstr "Dette er ikke din kontakt." - -#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 -#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 -msgid "vCard could not be read." -msgstr "Kunne ikke læse vCard." - -#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 -#: ajax/showsetproperty.php:62 +#: lib/app.php:89 msgid "Information about vCard is incorrect. Please reload the page." msgstr "Informationen om vCard er forkert. Genindlæs siden." -#: photo.php:53 -msgid "This card is not RFC compatible." -msgstr "Dette kort er ikke RFC-kompatibelt." - -#: photo.php:90 -msgid "This card does not contain a photo." -msgstr "Dette kort indeholder ikke et foto." - -#: templates/index.php:8 -msgid "Add Contact" -msgstr "Tilføj kontakt" - -#: templates/part.addcardform.php:5 -msgid "Group" -msgstr "Gruppe" - -#: templates/part.addcardform.php:12 templates/part.property.php:3 -msgid "Name" -msgstr "Navn" - -#: templates/part.addcardform.php:14 -msgid "Create Contact" -msgstr "Ny Kontakt" - -#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 msgid "Address" msgstr "Adresse" -#: templates/part.addpropertyform.php:5 +#: lib/app.php:102 templates/part.addcardform.php:43 msgid "Telephone" msgstr "Telefon" -#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 msgid "Email" msgstr "Email" -#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 msgid "Organization" msgstr "Organisation" -#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +#: lib/app.php:116 lib/app.php:123 msgid "Work" msgstr "Arbejde" -#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +#: lib/app.php:117 lib/app.php:121 msgid "Home" -msgstr "Hjem" +msgstr "Hjemme" -#: templates/part.addpropertyform.php:20 templates/part.property.php:48 -#: templates/part.setpropertyform.php:5 -msgid "PO Box" -msgstr "Postboks" - -#: templates/part.addpropertyform.php:21 templates/part.property.php:51 -#: templates/part.setpropertyform.php:6 -msgid "Extended" -msgstr "Udvidet" - -#: templates/part.addpropertyform.php:22 templates/part.property.php:54 -#: templates/part.setpropertyform.php:7 -msgid "Street" -msgstr "Vej" - -#: templates/part.addpropertyform.php:23 templates/part.property.php:57 -#: templates/part.setpropertyform.php:8 -msgid "City" -msgstr "By" - -#: templates/part.addpropertyform.php:24 templates/part.property.php:60 -#: templates/part.setpropertyform.php:9 -msgid "Region" -msgstr "Region" - -#: templates/part.addpropertyform.php:25 templates/part.property.php:63 -#: templates/part.setpropertyform.php:10 -msgid "Zipcode" -msgstr "Postnummer" - -#: templates/part.addpropertyform.php:26 templates/part.property.php:66 -#: templates/part.setpropertyform.php:11 -msgid "Country" -msgstr "Land" - -#: templates/part.addpropertyform.php:31 +#: lib/app.php:122 msgid "Mobile" msgstr "Mobil" -#: templates/part.addpropertyform.php:33 +#: lib/app.php:124 msgid "Text" msgstr "SMS" -#: templates/part.addpropertyform.php:34 +#: lib/app.php:125 msgid "Voice" msgstr "Telefonsvarer" -#: templates/part.addpropertyform.php:35 +#: lib/app.php:126 msgid "Fax" msgstr "Fax" -#: templates/part.addpropertyform.php:36 +#: lib/app.php:127 msgid "Video" msgstr "Video" -#: templates/part.addpropertyform.php:37 +#: lib/app.php:128 msgid "Pager" msgstr "Personsøger" -#: templates/part.details.php:31 +#: lib/search.php:22 +msgid "Contact" +msgstr "Kontaktperson" + +#: photo.php:42 +msgid "This is not your contact." +msgstr "Dette er ikke din kontaktperson." + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Tilføj kontaktperson" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "Adressebøger" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "Adressebog" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Navn" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "Type" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "Postboks" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Udvidet" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Vej" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "By" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Region" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "Postnummer" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "Land" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Ny kontaktperson" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "Vælg aktive adressebøger" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "Ny adressebog" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "CardDav-link" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "Download" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Rediger" + +#: templates/part.chooseaddressbook.rowfields.php:5 msgid "Delete" msgstr "Slet" -#: templates/part.details.php:32 -msgid "Add Property" -msgstr "Tilføj Egenskab" +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "Download kontaktperson" -#: templates/part.property.php:9 +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "Slet kontaktperson" + +#: templates/part.details.php:34 +msgid "Add" +msgstr "Tilføj" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "Ny adressebog" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "Rediger adressebog" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "Vist navn" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "Aktiv" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "Gem" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "Gem" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "Fortryd" + +#: templates/part.property.php:3 msgid "Birthday" msgstr "Fødselsdag" -#: templates/part.property.php:29 +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "Foretrukken" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 msgid "Phone" msgstr "Telefon" -#: templates/part.setpropertyform.php:17 -msgid "Edit" -msgstr "Redigér" +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "Opdater" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "Synkroniseringsadresse for CardDAV:" diff --git a/l10n/da/core.po b/l10n/da/core.po index 90f79622ab2..f24a20c6b16 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -4,14 +4,15 @@ # # Translators: # , 2011. +# Morten Juhl-Johansen Zölde-Fejér , 2011, 2012. # Pascal d'Hermilly , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-14 07:41+0000\n" -"Last-Translator: mikkel_ilu \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-13 22:14+0000\n" +"Last-Translator: Morten Juhl-Johansen Zölde-Fejér \n" "Language-Team: Danish (http://www.transifex.net/projects/p/owncloud/team/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +20,51 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "Nulstil adgangskode til Owncloud" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "Anvend følgende link til at nulstille din adgangskode: {link}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "Du vil modtage et link til at nulstille dit kodeord via email." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Forespugt" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Login fejlede!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Brugernavn" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Anmod om nulstilling" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Dit kodeord blev nulstillet" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "Til login-side" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Nyt kodeord" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Nulstil kodeord" + #: strings.php:5 msgid "Personal" msgstr "Personlig" @@ -45,56 +91,52 @@ msgstr "Sky ikke fundet" #: templates/installation.php:20 msgid "Create an admin account" -msgstr "Lav en administrator konto" +msgstr "Opret en administratorkonto" -#: templates/installation.php:21 -msgid "Username" -msgstr "Brugernavn" - -#: templates/installation.php:22 +#: templates/installation.php:26 templates/login.php:12 msgid "Password" msgstr "Kodeord" -#: templates/installation.php:27 -msgid "Configure the database" -msgstr "Konfigurer databasen" - -#: templates/installation.php:32 templates/installation.php:43 -#: templates/installation.php:53 -msgid "will be used" -msgstr "vil blive brugt" - -#: templates/installation.php:64 -msgid "Database user" -msgstr "Database-bruger" - -#: templates/installation.php:65 -msgid "Database password" -msgstr "Database-kodeord" - -#: templates/installation.php:66 -msgid "Database name" -msgstr "Database-navn" - -#: templates/installation.php:72 +#: templates/installation.php:32 msgid "Advanced" msgstr "Avanceret" -#: templates/installation.php:75 -msgid "Database host" -msgstr "Database host" - -#: templates/installation.php:76 +#: templates/installation.php:34 msgid "Data folder" -msgstr "Data mappe" +msgstr "Datamappe" + +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Konfigurer databasen" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "vil blive brugt" #: templates/installation.php:79 +msgid "Database user" +msgstr "Databasebruger" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Databasekodeord" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Navn på database" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Databasehost" + +#: templates/installation.php:98 msgid "Finish setup" -msgstr "Afslut installation" +msgstr "Afslut opsætning" #: templates/layout.guest.php:35 -msgid "gives you freedom and control over your own data" -msgstr "giver dig frihed og kontrol over dine egne data" +msgid "web services under your control" +msgstr "Webtjenester under din kontrol" #: templates/layout.user.php:34 msgid "Log out" @@ -104,37 +146,21 @@ msgstr "Log ud" msgid "Settings" msgstr "Indstillinger" -#: templates/login.php:4 +#: templates/login.php:5 msgid "Lost your password?" msgstr "Mistet dit kodeord?" -#: templates/login.php:9 templates/login.php:13 +#: templates/login.php:15 msgid "remember" msgstr "husk" +#: templates/login.php:16 +msgid "Log in" +msgstr "Log ind" + #: templates/logout.php:1 msgid "You are logged out." -msgstr "Du er nu logget ud" - -#: templates/lostpassword.php:3 -msgid "You will receive a link to reset your password via Email." -msgstr "Du vil modtage et link til at nulstille din adgangskode via e-mail." - -#: templates/lostpassword.php:5 -msgid "Requested" -msgstr "Anmodet" - -#: templates/lostpassword.php:8 -msgid "Login failed!" -msgstr "Login mislykkedes!" - -#: templates/lostpassword.php:10 -msgid "Username or Email" -msgstr "Brugernavn eller E-mail" - -#: templates/lostpassword.php:11 -msgid "Request reset" -msgstr "Anmod om nulstilling" +msgstr "Du er nu logget ud." #: templates/part.pagenavi.php:3 msgid "prev" @@ -144,16 +170,4 @@ msgstr "forrige" msgid "next" msgstr "næste" -#: templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "Din adgangskode blev nulstillet" - -#: templates/resetpassword.php:6 -msgid "New password" -msgstr "Ny adgangskode" - -#: templates/resetpassword.php:7 -msgid "Reset password" -msgstr "Nulstil adgangskode" - diff --git a/l10n/da/files.po b/l10n/da/files.po index ac9da46eefa..c7fc915834a 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Morten Juhl-Johansen Zölde-Fejér , 2011, 2012. # Pascal d'Hermilly , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-13 22:05+0000\n" +"Last-Translator: Morten Juhl-Johansen Zölde-Fejér \n" "Language-Team: Danish (http://www.transifex.net/projects/p/owncloud/team/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,33 +19,36 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:24 +#: ajax/upload.php:19 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "Der er ingen fejl, filen blev uploadet med success" -#: ajax/upload.php:25 +#: ajax/upload.php:20 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "" +"Den uploadede fil overskrider upload_max_filesize direktivet i php.ini" -#: ajax/upload.php:26 +#: ajax/upload.php:21 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" +"Den uploadede fil overskrider MAX_FILE_SIZE -direktivet som er specificeret " +"i HTML-formularen" -#: ajax/upload.php:27 +#: ajax/upload.php:22 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "Den uploadede file blev kun delvist uploadet" -#: ajax/upload.php:28 +#: ajax/upload.php:23 msgid "No file was uploaded" -msgstr "" +msgstr "Ingen fil blev uploadet" -#: ajax/upload.php:29 +#: ajax/upload.php:24 msgid "Missing a temporary folder" -msgstr "" +msgstr "Mangler en midlertidig mappe" -#: appinfo/app.php:7 +#: appinfo/app.php:8 msgid "Files" msgstr "Filer" @@ -52,48 +56,60 @@ msgstr "Filer" msgid "Maximum upload size" msgstr "Maksimal upload-størrelse" +#: templates/index.php:7 +msgid "New" +msgstr "Ny" + #: templates/index.php:10 +msgid "Text file" +msgstr "Tekstfil" + +#: templates/index.php:11 +msgid "Folder" +msgstr "Mappe" + +#: templates/index.php:12 +msgid "From the web" +msgstr "Fra nettet" + +#: templates/index.php:22 msgid "Upload" msgstr "Upload" -#: templates/index.php:17 -msgid "New Folder" -msgstr "Ny Mappe" - -#: templates/index.php:31 +#: templates/index.php:35 msgid "Nothing in here. Upload something!" msgstr "Her er tomt. Upload noget!" -#: templates/index.php:39 +#: templates/index.php:43 msgid "Name" msgstr "Navn" -#: templates/index.php:41 +#: templates/index.php:45 msgid "Download" msgstr "Download" -#: templates/index.php:45 +#: templates/index.php:49 msgid "Size" msgstr "Størrelse" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Modified" msgstr "Ændret" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Delete" msgstr "Slet" -#: templates/index.php:54 +#: templates/index.php:58 msgid "Upload too large" msgstr "Upload for stor" -#: templates/index.php:56 +#: templates/index.php:60 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -"Filerne du prøver at uploade er større end den maksimale størrelse for fil-" -"upload på denne server." +"Filerne, du prøver at uploade, er større end den maksimale størrelse for " +"fil-upload på denne server." diff --git a/l10n/da/gallery.po b/l10n/da/gallery.po new file mode 100644 index 00000000000..ebc0e072ceb --- /dev/null +++ b/l10n/da/gallery.po @@ -0,0 +1,53 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Morten Juhl-Johansen Zölde-Fejér , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-24 08:34+0000\n" +"Last-Translator: Morten Juhl-Johansen Zölde-Fejér \n" +"Language-Team: Danish (http://www.transifex.net/projects/p/owncloud/team/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "Galleri" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "Gennemgår mapper" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "Ingen billeder fundet" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "Danner miniaturer" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "Ønsker du at fjerne albummet" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "Indtast navn på nyt galleri" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "Genindlæs" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "Tilbage" + + diff --git a/l10n/da/media.po b/l10n/da/media.po index 7c12df9653a..b73d59a6cfd 100644 --- a/l10n/da/media.po +++ b/l10n/da/media.po @@ -2,14 +2,16 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# Translators: +# Morten Juhl-Johansen Zölde-Fejér , 2011. # Pascal d'Hermilly , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-08-20 05:08+0200\n" -"PO-Revision-Date: 2011-08-20 03:08+0000\n" -"Last-Translator: JanCBorchardt \n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Danish (http://www.transifex.net/projects/p/owncloud/team/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,39 +19,35 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: appinfo/app.php:31 +#: appinfo/app.php:32 msgid "Music" msgstr "Musik" -#: templates/music.php:3 +#: templates/music.php:3 templates/player.php:13 msgid "Play" -msgstr "" +msgstr "Afspil" -#: templates/music.php:4 templates/music.php:30 +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 msgid "Pause" msgstr "Pause" #: templates/music.php:5 msgid "Previous" -msgstr "" +msgstr "Forrige" -#: templates/music.php:6 +#: templates/music.php:6 templates/player.php:15 msgid "Next" -msgstr "" +msgstr "Næste" #: templates/music.php:7 msgid "Mute" -msgstr "" +msgstr "Lydløs" #: templates/music.php:8 msgid "Unmute" -msgstr "" +msgstr "Lyd til" -#: templates/music.php:28 -msgid "Songs scanned" -msgstr "Sange skannet" - -#: templates/music.php:29 +#: templates/music.php:25 msgid "Rescan Collection" msgstr "Genskan Samling" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 7921a74708a..4e8a3c7fffd 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -2,14 +2,18 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# Translators: +# , 2012. +# , 2011. +# Morten Juhl-Johansen Zölde-Fejér , 2011, 2012. # Pascal d'Hermilly , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-08-28 01:11+0200\n" -"PO-Revision-Date: 2011-08-26 13:49+0000\n" -"Last-Translator: pascal_a \n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:25+0100\n" +"PO-Revision-Date: 2012-01-24 08:35+0000\n" +"Last-Translator: Morten Juhl-Johansen Zölde-Fejér \n" "Language-Team: Danish (http://www.transifex.net/projects/p/owncloud/team/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,22 +21,30 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/openid.php:13 ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Godkendelsesfejl" +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "email ændret" -#: ajax/openid.php:21 -msgid "OpenID Changed" -msgstr "OpenID ændret" - -#: ajax/openid.php:23 ajax/setlanguage.php:23 +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 msgid "Invalid request" msgstr "Ugyldig forespørgsel" -#: ajax/setlanguage.php:21 +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID ændret" + +#: ajax/setlanguage.php:14 msgid "Language changed" msgstr "Sprog ændret" +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "Dansk" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "Log-niveau" + #: templates/apps.php:8 msgid "Add your application" msgstr "Tilføj dit program" @@ -53,15 +65,15 @@ msgstr "af" msgid "Ask a question" msgstr "Stil et spørgsmål" -#: templates/help.php:17 +#: templates/help.php:20 msgid "Problems connecting to help database." -msgstr "Problemer med at forbinde til hjælpe-databasen" +msgstr "Problemer med at forbinde til hjælpe-databasen." -#: templates/help.php:18 +#: templates/help.php:21 msgid "Go there manually." msgstr "Gå derhen manuelt." -#: templates/help.php:26 +#: templates/help.php:29 msgid "Answer" msgstr "Svar" @@ -77,6 +89,10 @@ msgstr "af det tilgængelige" msgid "Your password got changed" msgstr "Din adgangskode er blevet ændret" +#: templates/personal.php:14 +msgid "Unable to change your password" +msgstr "Ude af stand til at ændre dit kodeord" + #: templates/personal.php:15 msgid "Current password" msgstr "Nuværende adgangskode" @@ -91,37 +107,53 @@ msgstr "vis" #: templates/personal.php:18 msgid "Change password" -msgstr "Skift password" +msgstr "Skift kodeord" #: templates/personal.php:24 +msgid "Email" +msgstr "Email" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "Din emailadresse" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "Indtast en emailadresse for at kunne få påmindelse om adgangskode" + +#: templates/personal.php:32 templates/personal.php:33 msgid "Language" msgstr "Sprog" -#: templates/personal.php:30 -msgid "Help translating" -msgstr "Hjælp med at oversætte" +#: templates/personal.php:38 +msgid "Help translate" +msgstr "Hjælp med oversættelsen" -#: templates/personal.php:36 +#: templates/personal.php:45 msgid "use this address to connect to your ownCloud in your file manager" msgstr "benyt denne adresse til at forbinde til din ownCloud i din filbrowser" -#: templates/users.php:16 +#: templates/users.php:15 templates/users.php:30 msgid "Name" msgstr "Navn" -#: templates/users.php:17 +#: templates/users.php:16 templates/users.php:31 msgid "Password" msgstr "Kodeord" -#: templates/users.php:18 templates/users.php:36 +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 msgid "Groups" msgstr "Grupper" -#: templates/users.php:24 +#: templates/users.php:23 msgid "Create" msgstr "Ny" -#: templates/users.php:48 +#: templates/users.php:33 +msgid "Quota" +msgstr "Kvote" + +#: templates/users.php:58 msgid "Delete" msgstr "Slet" diff --git a/l10n/de/calendar.po b/l10n/de/calendar.po index a75ca864a1b..bca2bf109ad 100644 --- a/l10n/de/calendar.po +++ b/l10n/de/calendar.po @@ -3,15 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2011, 2012. +# , 2011, 2012. # Jan-Christoph Borchardt , 2011. # Jan-Christoph Borchardt , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-16 16:51+0000\n" +"Last-Translator: goeck \n" "Language-Team: German (http://www.transifex.net/projects/p/owncloud/team/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,329 +21,411 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/createcalendar.php:18 ajax/settimezone.php:19 -#: ajax/updatecalendar.php:18 -msgid "Authentication error" -msgstr "Anmeldefehler" +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "Neue Zeitzone:" -#: ajax/editeventform.php:25 -msgid "Wrong calendar" -msgstr "Falscher Kalender" - -#: ajax/settimezone.php:27 +#: ajax/settimezone.php:22 msgid "Timezone changed" msgstr "Zeitzone geändert" -#: ajax/settimezone.php:29 +#: ajax/settimezone.php:24 msgid "Invalid request" msgstr "Anfragefehler" -#: appinfo/app.php:19 templates/part.eventform.php:27 -#: templates/part.eventinfo.php:18 +#: appinfo/app.php:20 templates/calendar.php:14 +#: templates/part.eventform.php:20 msgid "Calendar" msgstr "Kalender" -#: lib/object.php:292 +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Falscher Kalender" + +#: lib/app.php:60 lib/object.php:332 msgid "Birthday" msgstr "Geburtstag" -#: lib/object.php:293 +#: lib/app.php:61 lib/object.php:333 msgid "Business" msgstr "Geschäftlich" -#: lib/object.php:294 +#: lib/app.php:62 lib/object.php:334 msgid "Call" msgstr "Anruf" -#: lib/object.php:295 +#: lib/app.php:63 lib/object.php:335 msgid "Clients" msgstr "Kunden" -#: lib/object.php:296 +#: lib/app.php:64 lib/object.php:336 msgid "Deliverer" msgstr "Lieferant" -#: lib/object.php:297 +#: lib/app.php:65 lib/object.php:337 msgid "Holidays" msgstr "Urlaub" -#: lib/object.php:298 +#: lib/app.php:66 lib/object.php:338 msgid "Ideas" msgstr "Ideen" -#: lib/object.php:299 +#: lib/app.php:67 lib/object.php:339 msgid "Journey" msgstr "Reise" -#: lib/object.php:300 +#: lib/app.php:68 lib/object.php:340 msgid "Jubilee" msgstr "Jubiläum" -#: lib/object.php:301 +#: lib/app.php:69 lib/object.php:341 msgid "Meeting" msgstr "Treffen" -#: lib/object.php:302 +#: lib/app.php:70 lib/object.php:342 msgid "Other" msgstr "Anderes" -#: lib/object.php:303 +#: lib/app.php:71 lib/object.php:343 msgid "Personal" msgstr "Persönlich" -#: lib/object.php:304 +#: lib/app.php:72 lib/object.php:344 msgid "Projects" msgstr "Projekte" -#: lib/object.php:305 +#: lib/app.php:73 lib/object.php:345 msgid "Questions" msgstr "Fragen" -#: lib/object.php:306 +#: lib/app.php:74 lib/object.php:346 msgid "Work" msgstr "Arbeit" -#: lib/object.php:313 +#: lib/object.php:353 msgid "Does not repeat" msgstr "einmalig" -#: lib/object.php:314 +#: lib/object.php:354 msgid "Daily" msgstr "täglich" -#: lib/object.php:315 +#: lib/object.php:355 msgid "Weekly" msgstr "wöchentlich" -#: lib/object.php:316 +#: lib/object.php:356 msgid "Every Weekday" msgstr "jeden Wochentag" -#: lib/object.php:317 +#: lib/object.php:357 msgid "Bi-Weekly" msgstr "jede zweite Woche" -#: lib/object.php:318 +#: lib/object.php:358 msgid "Monthly" msgstr "monatlich" -#: lib/object.php:319 +#: lib/object.php:359 msgid "Yearly" msgstr "jährlich" -#: lib/object.php:337 -msgid "Not an array" -msgstr "Kein Feld" +#: lib/object.php:366 +msgid "never" +msgstr "niemals" -#: templates/calendar.php:3 -msgid "All day" -msgstr "Ganztags" +#: lib/object.php:367 +msgid "by occurrences" +msgstr "nach Vorkommen" -#: templates/calendar.php:32 -msgid "Sunday" -msgstr "Sonntag" +#: lib/object.php:368 +msgid "by date" +msgstr "nach Datum" -#: templates/calendar.php:32 +#: lib/object.php:375 +msgid "by monthday" +msgstr "an einem Monatstag" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "an einem Wochentag" + +#: lib/object.php:383 templates/lAfix.php:3 msgid "Monday" msgstr "Montag" -#: templates/calendar.php:32 +#: lib/object.php:384 templates/lAfix.php:4 msgid "Tuesday" msgstr "Dienstag" -#: templates/calendar.php:32 +#: lib/object.php:385 templates/lAfix.php:5 msgid "Wednesday" msgstr "Mittwoch" -#: templates/calendar.php:32 +#: lib/object.php:386 templates/lAfix.php:6 msgid "Thursday" msgstr "Donnerstag" -#: templates/calendar.php:32 +#: lib/object.php:387 templates/lAfix.php:7 msgid "Friday" msgstr "Freitag" -#: templates/calendar.php:32 +#: lib/object.php:388 templates/lAfix.php:8 msgid "Saturday" msgstr "Samstag" -#: templates/calendar.php:33 -msgid "Sun." -msgstr "Son." +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "Sonntag" -#: templates/calendar.php:33 -msgid "Mon." -msgstr "Mon." +#: lib/object.php:396 +msgid "events week of month" +msgstr "Woche des Monats vom Termin" -#: templates/calendar.php:33 -msgid "Tue." -msgstr "Die." +#: lib/object.php:397 +msgid "first" +msgstr "erste" -#: templates/calendar.php:33 -msgid "Wed." -msgstr "Mit." +#: lib/object.php:398 +msgid "second" +msgstr "zweite" -#: templates/calendar.php:33 -msgid "Thu." -msgstr "Don." +#: lib/object.php:399 +msgid "third" +msgstr "dritte" -#: templates/calendar.php:33 -msgid "Fri." -msgstr "Fre." +#: lib/object.php:400 +msgid "fourth" +msgstr "vierte" -#: templates/calendar.php:33 -msgid "Sat." -msgstr "Sam." +#: lib/object.php:401 +msgid "fifth" +msgstr "fünfte" -#: templates/calendar.php:34 +#: lib/object.php:402 +msgid "last" +msgstr "letzte" + +#: lib/object.php:424 templates/lAfix.php:16 msgid "January" msgstr "Januar" -#: templates/calendar.php:34 +#: lib/object.php:425 templates/lAfix.php:17 msgid "February" msgstr "Februar" -#: templates/calendar.php:34 +#: lib/object.php:426 templates/lAfix.php:18 msgid "March" msgstr "März" -#: templates/calendar.php:34 +#: lib/object.php:427 templates/lAfix.php:19 msgid "April" msgstr "April" -#: templates/calendar.php:34 +#: lib/object.php:428 templates/lAfix.php:20 msgid "May" msgstr "Mai" -#: templates/calendar.php:34 +#: lib/object.php:429 templates/lAfix.php:21 msgid "June" msgstr "Juni" -#: templates/calendar.php:34 +#: lib/object.php:430 templates/lAfix.php:22 msgid "July" msgstr "Juli" -#: templates/calendar.php:34 +#: lib/object.php:431 templates/lAfix.php:23 msgid "August" msgstr "August" -#: templates/calendar.php:34 +#: lib/object.php:432 templates/lAfix.php:24 msgid "September" msgstr "September" -#: templates/calendar.php:34 +#: lib/object.php:433 templates/lAfix.php:25 msgid "October" msgstr "Oktober" -#: templates/calendar.php:34 +#: lib/object.php:434 templates/lAfix.php:26 msgid "November" msgstr "November" -#: templates/calendar.php:34 +#: lib/object.php:435 templates/lAfix.php:27 msgid "December" msgstr "Dezember" -#: templates/calendar.php:35 -msgid "Jan." -msgstr "Jan." +#: lib/object.php:441 +msgid "by events date" +msgstr "bei Tag des Termins" -#: templates/calendar.php:35 -msgid "Feb." -msgstr "Feb." +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "an einem Tag des Jahres" -#: templates/calendar.php:35 -msgid "Mar." -msgstr "Mär." +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "an einer Wochennummer" -#: templates/calendar.php:35 -msgid "Apr." -msgstr "Apr." +#: lib/object.php:444 +msgid "by day and month" +msgstr "an einer Tag und Monats Kombination" -#: templates/calendar.php:35 -msgid "May." -msgstr "Mai" +#: lib/object.php:467 +msgid "Not an array" +msgstr "Kein Feld" -#: templates/calendar.php:35 -msgid "Jun." -msgstr "Jun." +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "Datum" -#: templates/calendar.php:35 -msgid "Jul." -msgstr "Jul." +#: lib/search.php:40 +msgid "Cal." +msgstr "Kal." -#: templates/calendar.php:35 -msgid "Aug." -msgstr "Aug." +#: templates/calendar.php:10 +msgid "All day" +msgstr "Ganztags" -#: templates/calendar.php:35 -msgid "Sep." -msgstr "Sep." +#: templates/calendar.php:11 templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "Neuer Kalender" -#: templates/calendar.php:35 -msgid "Oct." -msgstr "Okt." +#: templates/calendar.php:12 +msgid "Missing fields" +msgstr "fehlende Felder" -#: templates/calendar.php:35 -msgid "Nov." -msgstr "Nov." +#: templates/calendar.php:13 templates/part.eventform.php:3 +msgid "Title" +msgstr "Titel" -#: templates/calendar.php:35 -msgid "Dec." -msgstr "Dez." +#: templates/calendar.php:15 +msgid "From Date" +msgstr "Startdatum" -#: templates/calendar.php:36 templates/calendar.php:50 -#: templates/calendar.php:116 +#: templates/calendar.php:16 +msgid "From Time" +msgstr "Startzeit" + +#: templates/calendar.php:17 +msgid "To Date" +msgstr "Enddatum" + +#: templates/calendar.php:18 +msgid "To Time" +msgstr "Endzeit" + +#: templates/calendar.php:19 +msgid "The event ends before it starts" +msgstr "Der Termin hört auf, bevor er angefangen hat." + +#: templates/calendar.php:20 +msgid "There was a database fail" +msgstr "Datenbankfehler" + +#: templates/calendar.php:38 msgid "Week" msgstr "Woche" -#: templates/calendar.php:37 templates/calendar.php:51 -msgid "Weeks" -msgstr "Wochen" - -#: templates/calendar.php:38 -msgid "More before {startdate}" -msgstr "Mehr vor {startdate}" - #: templates/calendar.php:39 -msgid "More after {enddate}" -msgstr "Mehr nach {enddate}" - -#: templates/calendar.php:49 -msgid "Day" -msgstr "Tag" - -#: templates/calendar.php:52 msgid "Month" msgstr "Monat" -#: templates/calendar.php:53 +#: templates/calendar.php:40 msgid "List" msgstr "Liste" -#: templates/calendar.php:58 +#: templates/calendar.php:46 msgid "Today" msgstr "Heute" -#: templates/calendar.php:59 +#: templates/calendar.php:47 msgid "Calendars" msgstr "Kalender" -#: templates/calendar.php:76 templates/calendar.php:94 -msgid "Time" -msgstr "Zeit" - -#: templates/calendar.php:169 +#: templates/calendar.php:65 msgid "There was a fail, while parsing the file." msgstr "Fehler beim Einlesen der Datei." +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "So" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "Mo" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "Di" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "Mi" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "Do" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "Fr" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "Sa" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "Jan" + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "Feb" + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "März" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "Apr" + +#: templates/lAfix.php:32 +msgid "May." +msgstr "Mai" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "Juni" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "Juli" + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "Aug" + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "Sep" + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "Okt" + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "Nov" + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "Dez" + #: templates/part.choosecalendar.php:1 msgid "Choose active calendars" msgstr "Aktive Kalender wählen" -#: templates/part.choosecalendar.php:15 -msgid "New Calendar" -msgstr "Neuer Kalender" - #: templates/part.choosecalendar.php:20 #: templates/part.choosecalendar.rowfields.php:4 msgid "CalDav Link" @@ -352,14 +436,13 @@ msgid "Download" msgstr "Herunterladen" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.eventinfo.php:64 msgid "Edit" msgstr "Bearbeiten" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.editevent.php:8 +#: templates/part.editevent.php:9 msgid "Delete" -msgstr "" +msgstr "Löschen" #: templates/part.editcalendar.php:9 msgid "New calendar" @@ -377,90 +460,181 @@ msgstr "Anzeigename" msgid "Active" msgstr "Aktiv" -#: templates/part.editcalendar.php:29 templates/part.eventform.php:88 -#: templates/part.eventinfo.php:58 -msgid "Description" -msgstr "Beschreibung" - -#: templates/part.editcalendar.php:35 +#: templates/part.editcalendar.php:29 msgid "Calendar color" msgstr "Kalenderfarbe" -#: templates/part.editcalendar.php:41 +#: templates/part.editcalendar.php:42 msgid "Save" msgstr "Speichern" -#: templates/part.editcalendar.php:41 templates/part.editevent.php:7 +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 #: templates/part.newevent.php:6 msgid "Submit" msgstr "Bestätigen" -#: templates/part.editcalendar.php:42 +#: templates/part.editcalendar.php:43 msgid "Cancel" msgstr "Abbrechen" -#: templates/part.editevent.php:1 templates/part.eventinfo.php:1 +#: templates/part.editevent.php:1 msgid "Edit an event" msgstr "Ereignis bearbeiten" -#: templates/part.eventform.php:3 templates/part.eventinfo.php:4 -msgid "Title" -msgstr "Titel" +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "Exportieren" #: templates/part.eventform.php:5 msgid "Title of the Event" msgstr "Name" -#: templates/part.eventform.php:9 templates/part.eventinfo.php:9 -msgid "Location" -msgstr "Ort" - #: templates/part.eventform.php:11 -msgid "Location of the Event" -msgstr "Ort" - -#: templates/part.eventform.php:17 templates/part.eventinfo.php:16 msgid "Category" msgstr "Kategorie" -#: templates/part.eventform.php:19 +#: templates/part.eventform.php:13 msgid "Select category" msgstr "Kategorie auswählen" -#: templates/part.eventform.php:45 templates/part.eventinfo.php:28 +#: templates/part.eventform.php:37 msgid "All Day Event" msgstr "Ganztägiges Ereignis" -#: templates/part.eventform.php:49 templates/part.eventinfo.php:31 +#: templates/part.eventform.php:41 msgid "From" msgstr "von" -#: templates/part.eventform.php:57 templates/part.eventinfo.php:38 +#: templates/part.eventform.php:49 msgid "To" msgstr "bis" -#: templates/part.eventform.php:65 templates/part.eventinfo.php:44 +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "Erweiterte Optionen" + +#: templates/part.eventform.php:61 msgid "Repeat" msgstr "wiederholen" -#: templates/part.eventform.php:81 templates/part.eventinfo.php:51 -msgid "Attendees" -msgstr "Teilnehmer" +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "Erweitert" -#: templates/part.eventform.php:89 +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "Wochentage auswählen" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "Tage auswählen" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "und den Tag des Jahres vom Termin" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "und den Tag des Monats vom Termin" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "Monate auswählen" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "Wochen auswählen" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "und den Tag des Jahres vom Termin" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "Intervall" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "Ende" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "Vorkommen" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Ort" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Ort" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Beschreibung" + +#: templates/part.eventform.php:218 msgid "Description of the Event" msgstr "Beschreibung" -#: templates/part.eventinfo.php:63 -msgid "Close" -msgstr "Schließen" +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "Kalender Datei Importieren" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "Bitte wählen Sie den Kalender." + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "Neuen Kalender anlegen" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "Kalendername" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "Importieren" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "Kalender wird importiert." + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "Kalender erfolgreich importiert" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "Dialog schließen" #: templates/part.newevent.php:1 msgid "Create a new event" msgstr "Neues Ereignis" -#: templates/settings.php:11 +#: templates/settings.php:13 msgid "Timezone" msgstr "Zeitzone" +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "immer die Zeitzone überprüfen" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "Zeitformat" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24h" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12h" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "Kalender CalDAV Synchronisationsadresse:" + diff --git a/l10n/de/contacts.po b/l10n/de/contacts.po index 75f737b0135..84f23b5bd1f 100644 --- a/l10n/de/contacts.po +++ b/l10n/de/contacts.po @@ -3,14 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. +# , 2011. # Jan-Christoph Borchardt , 2011. +# Jan-Christoph Borchardt , 2011. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 20:10+0200\n" -"PO-Revision-Date: 2011-09-23 18:11+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" "Language-Team: German (http://www.transifex.net/projects/p/owncloud/team/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,164 +22,266 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 -#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 -#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 -#: ajax/showsetproperty.php:32 photo.php:32 -msgid "You need to log in." -msgstr "" +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." +msgstr "(De-)Aktivierung des Adressbuches fehlgeschlagen" -#: ajax/addcard.php:37 +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "Erstellen des Kontakts fehlgeschlagen" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "Feld darf nicht leer sein." + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "Mindestens eines der Adressfelder muss ausgefüllt werden." + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "Kontakt ändern fehlgeschlagen" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "Adressbuch hinzufügen fehlgeschlagen" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "Adressbuchaktivierung fehlgeschlagen" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "Kontakteigenschaft löschen fehlgeschlagen" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "Kontakteigenschaft aktualisieren fehlgeschlagen" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "Adressbuch aktualisieren fehlgeschlagen" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "Kontakte" + +#: lib/app.php:52 msgid "This is not your addressbook." -msgstr "" +msgstr "Dies ist nicht dein Adressbuch." -#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 -#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 -#: ajax/showsetproperty.php:38 photo.php:39 +#: lib/app.php:61 photo.php:36 msgid "Contact could not be found." -msgstr "" +msgstr "Kontakt konnte nicht gefunden werden." -#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 -#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 -#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 -msgid "This is not your contact." -msgstr "" - -#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 -#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 -msgid "vCard could not be read." -msgstr "" - -#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 -#: ajax/showsetproperty.php:62 +#: lib/app.php:89 msgid "Information about vCard is incorrect. Please reload the page." msgstr "" +"Die Information der vCard ist fehlerhaft. Bitte aktualisiere die Seite." -#: photo.php:53 -msgid "This card is not RFC compatible." -msgstr "" - -#: photo.php:90 -msgid "This card does not contain a photo." -msgstr "" - -#: templates/index.php:8 -msgid "Add Contact" -msgstr "" - -#: templates/part.addcardform.php:5 -msgid "Group" -msgstr "" - -#: templates/part.addcardform.php:12 templates/part.property.php:3 -msgid "Name" -msgstr "" - -#: templates/part.addcardform.php:14 -msgid "Create Contact" -msgstr "" - -#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 msgid "Address" -msgstr "" +msgstr "Adresse" -#: templates/part.addpropertyform.php:5 +#: lib/app.php:102 templates/part.addcardform.php:43 msgid "Telephone" -msgstr "" +msgstr "Telefon" -#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 msgid "Email" -msgstr "" +msgstr "Email" -#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 msgid "Organization" -msgstr "" +msgstr "Organisation" -#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +#: lib/app.php:116 lib/app.php:123 msgid "Work" -msgstr "" +msgstr "Arbeit" -#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +#: lib/app.php:117 lib/app.php:121 msgid "Home" -msgstr "" +msgstr "Zuhause" -#: templates/part.addpropertyform.php:20 templates/part.property.php:48 -#: templates/part.setpropertyform.php:5 -msgid "PO Box" -msgstr "" - -#: templates/part.addpropertyform.php:21 templates/part.property.php:51 -#: templates/part.setpropertyform.php:6 -msgid "Extended" -msgstr "" - -#: templates/part.addpropertyform.php:22 templates/part.property.php:54 -#: templates/part.setpropertyform.php:7 -msgid "Street" -msgstr "" - -#: templates/part.addpropertyform.php:23 templates/part.property.php:57 -#: templates/part.setpropertyform.php:8 -msgid "City" -msgstr "" - -#: templates/part.addpropertyform.php:24 templates/part.property.php:60 -#: templates/part.setpropertyform.php:9 -msgid "Region" -msgstr "" - -#: templates/part.addpropertyform.php:25 templates/part.property.php:63 -#: templates/part.setpropertyform.php:10 -msgid "Zipcode" -msgstr "" - -#: templates/part.addpropertyform.php:26 templates/part.property.php:66 -#: templates/part.setpropertyform.php:11 -msgid "Country" -msgstr "" - -#: templates/part.addpropertyform.php:31 +#: lib/app.php:122 msgid "Mobile" msgstr "Mobil" -#: templates/part.addpropertyform.php:33 +#: lib/app.php:124 msgid "Text" msgstr "Text" -#: templates/part.addpropertyform.php:34 +#: lib/app.php:125 msgid "Voice" -msgstr "" +msgstr "Anruf" -#: templates/part.addpropertyform.php:35 +#: lib/app.php:126 msgid "Fax" msgstr "Fax" -#: templates/part.addpropertyform.php:36 +#: lib/app.php:127 msgid "Video" msgstr "Video" -#: templates/part.addpropertyform.php:37 +#: lib/app.php:128 msgid "Pager" msgstr "Pager" -#: templates/part.details.php:33 -msgid "Delete" -msgstr "" +#: lib/search.php:22 +msgid "Contact" +msgstr "Kontakt" -#: templates/part.details.php:34 -msgid "Add Property" -msgstr "" +#: photo.php:42 +msgid "This is not your contact." +msgstr "Dies ist nicht dein Kontakt." -#: templates/part.property.php:9 -msgid "Birthday" -msgstr "Geburtstag" +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Kontakt hinzufügen" -#: templates/part.property.php:29 -msgid "Phone" -msgstr "" +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "Adressbücher" -#: templates/part.setpropertyform.php:17 +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "Adressbuch" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Name" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "Typ" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "Postfach" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Erweitert" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Straße" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Stadt" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Region" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "Postleitzahl" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "Land" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Kontakt erstellen" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "Aktive Adressbücher auswählen" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "Neues Adressbuch" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "CardDav Link" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "Herunterladen" + +#: templates/part.chooseaddressbook.rowfields.php:5 msgid "Edit" msgstr "Bearbeiten" +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Delete" +msgstr "Löschen" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "Kontakt herunterladen" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "Kontakt löschen" + +#: templates/part.details.php:34 +msgid "Add" +msgstr "Hinzufügen" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "Neues Adressbuch" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "Adressbuch editieren" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "Anzeigename" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "Aktiv" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "Speichern" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "Eintragen" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "Abbrechen" + +#: templates/part.property.php:3 +msgid "Birthday" +msgstr "Geburtstag" + +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "Bevorzugt" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 +msgid "Phone" +msgstr "Telefon" + +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "Aktualisieren" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "CardDAV Sync-Adresse:" + diff --git a/l10n/de/core.po b/l10n/de/core.po index 893b8acc4a7..59452deae0c 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2011, 2012. # , 2011. # , 2011. # Jan-Christoph Borchardt , 2011. @@ -10,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-07 22:59+0000\n" -"Last-Translator: infinity8 \n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-16 17:46+0000\n" +"Last-Translator: goeck \n" "Language-Team: German (http://www.transifex.net/projects/p/owncloud/team/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,6 +21,51 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "OwnCloud Passwort zurücksetzen" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "Nutze folgenden Link, um dein Passwort zurückzusetzen: {link}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "Sie erhalten einen Link, um Ihr Passwort per E-Mail zurückzusetzen." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Angefragt" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Login fehlgeschlagen!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Nutzername" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Anfrage zurückgesetzt" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Ihr Passwort wurde zurückgesetzt." + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "Zur Login-Seite" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Neues Passwort" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Passwort zurücksetzen" + #: strings.php:5 msgid "Personal" msgstr "Persönlich" @@ -48,54 +94,50 @@ msgstr "Cloud nicht verfügbar" msgid "Create an admin account" msgstr "Admin-Konto anlegen" -#: templates/installation.php:21 -msgid "Username" -msgstr "Nutzername" - -#: templates/installation.php:22 +#: templates/installation.php:26 templates/login.php:12 msgid "Password" msgstr "Passwort" -#: templates/installation.php:27 -msgid "Configure the database" -msgstr "Datenbank einrichten" - -#: templates/installation.php:32 templates/installation.php:43 -#: templates/installation.php:53 -msgid "will be used" -msgstr "wird genutzt" - -#: templates/installation.php:64 -msgid "Database user" -msgstr "Datenbanknutzer" - -#: templates/installation.php:65 -msgid "Database password" -msgstr "Datenbankpasswort" - -#: templates/installation.php:66 -msgid "Database name" -msgstr "Datenbankname" - -#: templates/installation.php:72 +#: templates/installation.php:32 msgid "Advanced" msgstr "Erweitert" -#: templates/installation.php:75 -msgid "Database host" -msgstr "Datenbank-Host" - -#: templates/installation.php:76 +#: templates/installation.php:34 msgid "Data folder" msgstr "Datenverzeichnis" +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Datenbank einrichten" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "wird genutzt" + #: templates/installation.php:79 +msgid "Database user" +msgstr "Datenbanknutzer" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Datenbankpasswort" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Datenbankname" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Datenbank-Host" + +#: templates/installation.php:98 msgid "Finish setup" msgstr "Installation abschließen" #: templates/layout.guest.php:35 -msgid "gives you freedom and control over your own data" -msgstr "gibt dir Freiheit und Kontrolle über deine eigenen Daten" +msgid "web services under your control" +msgstr "web services under your control" #: templates/layout.user.php:34 msgid "Log out" @@ -105,39 +147,22 @@ msgstr "Abmelden" msgid "Settings" msgstr "Einstellungen" -#: templates/login.php:4 +#: templates/login.php:5 msgid "Lost your password?" msgstr "Passwort vergessen?" -#: templates/login.php:9 templates/login.php:13 +#: templates/login.php:15 msgid "remember" msgstr "merken" +#: templates/login.php:16 +msgid "Log in" +msgstr "Einloggen" + #: templates/logout.php:1 msgid "You are logged out." msgstr "Abgemeldet" -#: templates/lostpassword.php:3 -msgid "You will receive a link to reset your password via Email." -msgstr "" -"Du wirst per Email einen Link zum Zurücksetzen deines Passworts erhalten." - -#: templates/lostpassword.php:5 -msgid "Requested" -msgstr "zurückgesetzt" - -#: templates/lostpassword.php:8 -msgid "Login failed!" -msgstr "Anmeldung fehlgeschlagen!" - -#: templates/lostpassword.php:10 -msgid "Username or Email" -msgstr "Nutzername oder Email" - -#: templates/lostpassword.php:11 -msgid "Request reset" -msgstr "Zurücksetzen" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "Zurück" @@ -146,16 +171,4 @@ msgstr "Zurück" msgid "next" msgstr "Weiter" -#: templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "Dein Passwort wurde zurückgesetzt." - -#: templates/resetpassword.php:6 -msgid "New password" -msgstr "Neues Passwort" - -#: templates/resetpassword.php:7 -msgid "Reset password" -msgstr "Zurücksetzen" - diff --git a/l10n/de/files.po b/l10n/de/files.po index b0d31fb286c..1c7517eafd6 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -3,14 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # Jan-Christoph Borchardt , 2011. +# Jan-Christoph Borchardt , 2011. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-16 17:48+0000\n" +"Last-Translator: goeck \n" "Language-Team: German (http://www.transifex.net/projects/p/owncloud/team/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,33 +21,33 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:24 +#: ajax/upload.php:19 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "Datei hochgeladen." -#: ajax/upload.php:25 +#: ajax/upload.php:20 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" +msgstr "Die hochgeladene Datei ist zu groß." -#: ajax/upload.php:26 +#: ajax/upload.php:21 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "" +msgstr "Die hochgeladene Datei ist zu groß." -#: ajax/upload.php:27 +#: ajax/upload.php:22 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "Die Datei wurde nur teilweise hochgeladen." -#: ajax/upload.php:28 +#: ajax/upload.php:23 msgid "No file was uploaded" -msgstr "" +msgstr "Es wurde keine Datei hochgeladen." -#: ajax/upload.php:29 +#: ajax/upload.php:24 msgid "Missing a temporary folder" -msgstr "" +msgstr "Temporärer Ordner fehlt." -#: appinfo/app.php:7 +#: appinfo/app.php:8 msgid "Files" msgstr "Dateien" @@ -52,43 +55,55 @@ msgstr "Dateien" msgid "Maximum upload size" msgstr "Maximale Größe" +#: templates/index.php:7 +msgid "New" +msgstr "Neu" + #: templates/index.php:10 +msgid "Text file" +msgstr "Text Datei" + +#: templates/index.php:11 +msgid "Folder" +msgstr "Ordner" + +#: templates/index.php:12 +msgid "From the web" +msgstr "Aus dem Netz" + +#: templates/index.php:22 msgid "Upload" msgstr "Hochladen" -#: templates/index.php:17 -msgid "New Folder" -msgstr "Neuer Ordner" - -#: templates/index.php:31 +#: templates/index.php:35 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Lad’ was hoch!" -#: templates/index.php:39 +#: templates/index.php:43 msgid "Name" msgstr "Name" -#: templates/index.php:41 +#: templates/index.php:45 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:45 +#: templates/index.php:49 msgid "Size" msgstr "Größe" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Modified" msgstr "Bearbeitet" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Delete" msgstr "Löschen" -#: templates/index.php:54 +#: templates/index.php:58 msgid "Upload too large" msgstr "Upload zu groß" -#: templates/index.php:56 +#: templates/index.php:60 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." diff --git a/l10n/de/gallery.po b/l10n/de/gallery.po new file mode 100644 index 00000000000..b805076b5d5 --- /dev/null +++ b/l10n/de/gallery.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2012. +# Bartek , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-25 19:47+0000\n" +"Last-Translator: Bartek \n" +"Language-Team: German (http://www.transifex.net/projects/p/owncloud/team/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "Galerie" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "Ordner werden durchsucht." + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "Keine Fotos gefunden" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "Thumbnails werden erstellt." + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "Soll das Album entfernt werden?" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "Gib den Albumnamen ein." + +#: templates/index.php:10 +msgid "Rescan" +msgstr "Rescan" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "Zurück" + + diff --git a/l10n/de/media.po b/l10n/de/media.po index 437d50939d7..6e4584a979d 100644 --- a/l10n/de/media.po +++ b/l10n/de/media.po @@ -2,14 +2,16 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# Translators: +# , 2011. # Jan-Christoph Borchardt , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-08-20 05:08+0200\n" -"PO-Revision-Date: 2011-08-20 03:08+0000\n" -"Last-Translator: JanCBorchardt \n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: German (http://www.transifex.net/projects/p/owncloud/team/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,41 +19,37 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: appinfo/app.php:31 +#: appinfo/app.php:32 msgid "Music" msgstr "Musik" -#: templates/music.php:3 +#: templates/music.php:3 templates/player.php:13 msgid "Play" -msgstr "" +msgstr "Abspielen" -#: templates/music.php:4 templates/music.php:30 +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 msgid "Pause" msgstr "Pause" #: templates/music.php:5 msgid "Previous" -msgstr "" +msgstr "Vorheriges" -#: templates/music.php:6 +#: templates/music.php:6 templates/player.php:15 msgid "Next" -msgstr "" +msgstr "Nächstes" #: templates/music.php:7 msgid "Mute" -msgstr "" +msgstr "Ton aus" #: templates/music.php:8 msgid "Unmute" -msgstr "" +msgstr "Ton an" -#: templates/music.php:28 -msgid "Songs scanned" -msgstr "Lieder gescannt" - -#: templates/music.php:29 +#: templates/music.php:25 msgid "Rescan Collection" -msgstr "Sammlung scannen" +msgstr "Sammlung noch einmal scannen" #: templates/music.php:37 msgid "Artist" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 2998d93e0f7..edb81adcdb8 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -2,14 +2,18 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# Translators: +# , 2011, 2012. +# , 2012. # Jan-Christoph Borchardt , 2011. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-08-28 01:13+0200\n" -"PO-Revision-Date: 2011-08-27 23:13+0000\n" -"Last-Translator: JanCBorchardt \n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-16 17:54+0000\n" +"Last-Translator: goeck \n" "Language-Team: German (http://www.transifex.net/projects/p/owncloud/team/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,22 +21,30 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/openid.php:13 ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Berechtigungsfehler" +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "E-Mail wurde geändert" -#: ajax/openid.php:21 -msgid "OpenID Changed" -msgstr "OpenID geändert" - -#: ajax/openid.php:23 ajax/setlanguage.php:23 +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 msgid "Invalid request" msgstr "Ungültige Anfrage" -#: ajax/setlanguage.php:21 +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID geändert" + +#: ajax/setlanguage.php:14 msgid "Language changed" msgstr "Sprache geändert" +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "Deutsch" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "Log Level" + #: templates/apps.php:8 msgid "Add your application" msgstr "Eigene Anwendung hinzufügen" @@ -53,15 +65,15 @@ msgstr "von" msgid "Ask a question" msgstr "Stell eine Frage" -#: templates/help.php:17 +#: templates/help.php:20 msgid "Problems connecting to help database." msgstr "Probleme bei der Verbindung zur Hilfe-Datenbank." -#: templates/help.php:18 +#: templates/help.php:21 msgid "Go there manually." msgstr "Datenbank direkt besuchen." -#: templates/help.php:26 +#: templates/help.php:29 msgid "Answer" msgstr "Antwort" @@ -75,11 +87,11 @@ msgstr "der verfügbaren" #: templates/personal.php:13 msgid "Your password got changed" -msgstr "Dein Passwort wurde geändert" +msgstr "Dein Passwort wurde geändert." #: templates/personal.php:14 msgid "Unable to change your password" -msgstr "" +msgstr "Passwort konnte nicht geändert werden" #: templates/personal.php:15 msgid "Current password" @@ -98,36 +110,54 @@ msgid "Change password" msgstr "Passwort ändern" #: templates/personal.php:24 +msgid "Email" +msgstr "E-Mail" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "Ihre E-Mail Adresse" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" +"Trage eine E-Mail Adresse ein, um die Passwort-Wiederherstellung zu " +"aktivieren." + +#: templates/personal.php:32 templates/personal.php:33 msgid "Language" msgstr "Sprache" -#: templates/personal.php:30 -msgid "Help translating" -msgstr "Hilf bei der Übersetzung" +#: templates/personal.php:38 +msgid "Help translate" +msgstr "Hilf bei der Übersetzung!" -#: templates/personal.php:36 +#: templates/personal.php:45 msgid "use this address to connect to your ownCloud in your file manager" msgstr "" -"benutze diese Adresse, um deine ownCloud mit deinem Dateiverwalter zu " -"verbinden" +"Benutze diese Adresse, um deine ownCloud mit deinem Dateiverwalter zu " +"verbinden." -#: templates/users.php:16 +#: templates/users.php:15 templates/users.php:30 msgid "Name" msgstr "Name" -#: templates/users.php:17 +#: templates/users.php:16 templates/users.php:31 msgid "Password" msgstr "Passwort" -#: templates/users.php:18 templates/users.php:36 +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 msgid "Groups" msgstr "Gruppen" -#: templates/users.php:24 +#: templates/users.php:23 msgid "Create" msgstr "Anlegen" -#: templates/users.php:48 +#: templates/users.php:33 +msgid "Quota" +msgstr "Quota" + +#: templates/users.php:58 msgid "Delete" msgstr "Löschen" diff --git a/l10n/de_DE/calendar.po b/l10n/de_DE/calendar.po new file mode 100644 index 00000000000..cc381094ca5 --- /dev/null +++ b/l10n/de_DE/calendar.po @@ -0,0 +1,636 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2011-09-03 16:52+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "" + +#: ajax/settimezone.php:22 +msgid "Timezone changed" +msgstr "" + +#: ajax/settimezone.php:24 +msgid "Invalid request" +msgstr "" + +#: appinfo/app.php:20 templates/calendar.php:14 +#: templates/part.eventform.php:20 +msgid "Calendar" +msgstr "" + +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "" + +#: lib/app.php:60 lib/object.php:332 +msgid "Birthday" +msgstr "" + +#: lib/app.php:61 lib/object.php:333 +msgid "Business" +msgstr "" + +#: lib/app.php:62 lib/object.php:334 +msgid "Call" +msgstr "" + +#: lib/app.php:63 lib/object.php:335 +msgid "Clients" +msgstr "" + +#: lib/app.php:64 lib/object.php:336 +msgid "Deliverer" +msgstr "" + +#: lib/app.php:65 lib/object.php:337 +msgid "Holidays" +msgstr "" + +#: lib/app.php:66 lib/object.php:338 +msgid "Ideas" +msgstr "" + +#: lib/app.php:67 lib/object.php:339 +msgid "Journey" +msgstr "" + +#: lib/app.php:68 lib/object.php:340 +msgid "Jubilee" +msgstr "" + +#: lib/app.php:69 lib/object.php:341 +msgid "Meeting" +msgstr "" + +#: lib/app.php:70 lib/object.php:342 +msgid "Other" +msgstr "" + +#: lib/app.php:71 lib/object.php:343 +msgid "Personal" +msgstr "" + +#: lib/app.php:72 lib/object.php:344 +msgid "Projects" +msgstr "" + +#: lib/app.php:73 lib/object.php:345 +msgid "Questions" +msgstr "" + +#: lib/app.php:74 lib/object.php:346 +msgid "Work" +msgstr "" + +#: lib/object.php:353 +msgid "Does not repeat" +msgstr "" + +#: lib/object.php:354 +msgid "Daily" +msgstr "" + +#: lib/object.php:355 +msgid "Weekly" +msgstr "" + +#: lib/object.php:356 +msgid "Every Weekday" +msgstr "" + +#: lib/object.php:357 +msgid "Bi-Weekly" +msgstr "" + +#: lib/object.php:358 +msgid "Monthly" +msgstr "" + +#: lib/object.php:359 +msgid "Yearly" +msgstr "" + +#: lib/object.php:366 +msgid "never" +msgstr "" + +#: lib/object.php:367 +msgid "by occurrences" +msgstr "" + +#: lib/object.php:368 +msgid "by date" +msgstr "" + +#: lib/object.php:375 +msgid "by monthday" +msgstr "" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "" + +#: lib/object.php:383 templates/lAfix.php:3 +msgid "Monday" +msgstr "" + +#: lib/object.php:384 templates/lAfix.php:4 +msgid "Tuesday" +msgstr "" + +#: lib/object.php:385 templates/lAfix.php:5 +msgid "Wednesday" +msgstr "" + +#: lib/object.php:386 templates/lAfix.php:6 +msgid "Thursday" +msgstr "" + +#: lib/object.php:387 templates/lAfix.php:7 +msgid "Friday" +msgstr "" + +#: lib/object.php:388 templates/lAfix.php:8 +msgid "Saturday" +msgstr "" + +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "" + +#: lib/object.php:396 +msgid "events week of month" +msgstr "" + +#: lib/object.php:397 +msgid "first" +msgstr "" + +#: lib/object.php:398 +msgid "second" +msgstr "" + +#: lib/object.php:399 +msgid "third" +msgstr "" + +#: lib/object.php:400 +msgid "fourth" +msgstr "" + +#: lib/object.php:401 +msgid "fifth" +msgstr "" + +#: lib/object.php:402 +msgid "last" +msgstr "" + +#: lib/object.php:424 templates/lAfix.php:16 +msgid "January" +msgstr "" + +#: lib/object.php:425 templates/lAfix.php:17 +msgid "February" +msgstr "" + +#: lib/object.php:426 templates/lAfix.php:18 +msgid "March" +msgstr "" + +#: lib/object.php:427 templates/lAfix.php:19 +msgid "April" +msgstr "" + +#: lib/object.php:428 templates/lAfix.php:20 +msgid "May" +msgstr "" + +#: lib/object.php:429 templates/lAfix.php:21 +msgid "June" +msgstr "" + +#: lib/object.php:430 templates/lAfix.php:22 +msgid "July" +msgstr "" + +#: lib/object.php:431 templates/lAfix.php:23 +msgid "August" +msgstr "" + +#: lib/object.php:432 templates/lAfix.php:24 +msgid "September" +msgstr "" + +#: lib/object.php:433 templates/lAfix.php:25 +msgid "October" +msgstr "" + +#: lib/object.php:434 templates/lAfix.php:26 +msgid "November" +msgstr "" + +#: lib/object.php:435 templates/lAfix.php:27 +msgid "December" +msgstr "" + +#: lib/object.php:441 +msgid "by events date" +msgstr "" + +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "" + +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "" + +#: lib/object.php:444 +msgid "by day and month" +msgstr "" + +#: lib/object.php:467 +msgid "Not an array" +msgstr "" + +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "" + +#: lib/search.php:40 +msgid "Cal." +msgstr "" + +#: templates/calendar.php:10 +msgid "All day" +msgstr "" + +#: templates/calendar.php:11 templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "" + +#: templates/calendar.php:12 +msgid "Missing fields" +msgstr "" + +#: templates/calendar.php:13 templates/part.eventform.php:3 +msgid "Title" +msgstr "" + +#: templates/calendar.php:15 +msgid "From Date" +msgstr "" + +#: templates/calendar.php:16 +msgid "From Time" +msgstr "" + +#: templates/calendar.php:17 +msgid "To Date" +msgstr "" + +#: templates/calendar.php:18 +msgid "To Time" +msgstr "" + +#: templates/calendar.php:19 +msgid "The event ends before it starts" +msgstr "" + +#: templates/calendar.php:20 +msgid "There was a database fail" +msgstr "" + +#: templates/calendar.php:38 +msgid "Week" +msgstr "" + +#: templates/calendar.php:39 +msgid "Month" +msgstr "" + +#: templates/calendar.php:40 +msgid "List" +msgstr "" + +#: templates/calendar.php:46 +msgid "Today" +msgstr "" + +#: templates/calendar.php:47 +msgid "Calendars" +msgstr "" + +#: templates/calendar.php:65 +msgid "There was a fail, while parsing the file." +msgstr "" + +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "" + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "" + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "" + +#: templates/lAfix.php:32 +msgid "May." +msgstr "" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "" + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "" + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "" + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "" + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "" + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "" + +#: templates/part.choosecalendar.php:1 +msgid "Choose active calendars" +msgstr "" + +#: templates/part.choosecalendar.php:20 +#: templates/part.choosecalendar.rowfields.php:4 +msgid "CalDav Link" +msgstr "" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Download" +msgstr "" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Edit" +msgstr "" + +#: templates/part.choosecalendar.rowfields.php:4 +#: templates/part.editevent.php:9 +msgid "Delete" +msgstr "" + +#: templates/part.editcalendar.php:9 +msgid "New calendar" +msgstr "" + +#: templates/part.editcalendar.php:9 +msgid "Edit calendar" +msgstr "" + +#: templates/part.editcalendar.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editcalendar.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editcalendar.php:29 +msgid "Calendar color" +msgstr "" + +#: templates/part.editcalendar.php:42 +msgid "Save" +msgstr "" + +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 +#: templates/part.newevent.php:6 +msgid "Submit" +msgstr "" + +#: templates/part.editcalendar.php:43 +msgid "Cancel" +msgstr "" + +#: templates/part.editevent.php:1 +msgid "Edit an event" +msgstr "" + +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "" + +#: templates/part.eventform.php:5 +msgid "Title of the Event" +msgstr "" + +#: templates/part.eventform.php:11 +msgid "Category" +msgstr "" + +#: templates/part.eventform.php:13 +msgid "Select category" +msgstr "" + +#: templates/part.eventform.php:37 +msgid "All Day Event" +msgstr "" + +#: templates/part.eventform.php:41 +msgid "From" +msgstr "" + +#: templates/part.eventform.php:49 +msgid "To" +msgstr "" + +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "" + +#: templates/part.eventform.php:61 +msgid "Repeat" +msgstr "" + +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "" + +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "" + +#: templates/part.eventform.php:218 +msgid "Description of the Event" +msgstr "" + +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "" + +#: templates/part.newevent.php:1 +msgid "Create a new event" +msgstr "" + +#: templates/settings.php:13 +msgid "Timezone" +msgstr "" + +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "" + +#: templates/settings.php:34 +msgid "24h" +msgstr "" + +#: templates/settings.php:35 +msgid "12h" +msgstr "" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "" + + diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po new file mode 100644 index 00000000000..22a83603b4c --- /dev/null +++ b/l10n/de_DE/core.po @@ -0,0 +1,170 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:25+0100\n" +"PO-Revision-Date: 2011-07-25 16:05+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "" + +#: templates/installation.php:20 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:26 templates/login.php:12 +msgid "Password" +msgstr "" + +#: templates/installation.php:32 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:34 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "" + +#: templates/installation.php:79 +msgid "Database user" +msgstr "" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "" + +#: templates/installation.php:98 +msgid "Finish setup" +msgstr "" + +#: templates/layout.guest.php:35 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:34 +msgid "Log out" +msgstr "" + +#: templates/layout.user.php:46 templates/layout.user.php:47 +msgid "Settings" +msgstr "" + +#: templates/login.php:5 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:15 +msgid "remember" +msgstr "" + +#: templates/login.php:16 +msgid "Log in" +msgstr "" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "" + + diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po new file mode 100644 index 00000000000..b9201beb1d8 --- /dev/null +++ b/l10n/de_DE/files.po @@ -0,0 +1,108 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:25+0100\n" +"PO-Revision-Date: 2011-08-13 02:19+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/upload.php:19 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:20 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "" + +#: ajax/upload.php:21 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:22 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:23 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:24 +msgid "Missing a temporary folder" +msgstr "" + +#: appinfo/app.php:8 +msgid "Files" +msgstr "" + +#: templates/admin.php:5 +msgid "Maximum upload size" +msgstr "" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:11 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From the web" +msgstr "" + +#: templates/index.php:22 +msgid "Upload" +msgstr "" + +#: templates/index.php:35 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:43 +msgid "Name" +msgstr "" + +#: templates/index.php:45 +msgid "Download" +msgstr "" + +#: templates/index.php:49 +msgid "Size" +msgstr "" + +#: templates/index.php:50 +msgid "Modified" +msgstr "" + +#: templates/index.php:50 +msgid "Delete" +msgstr "" + +#: templates/index.php:58 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:60 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + + diff --git a/l10n/de_DE/media.po b/l10n/de_DE/media.po new file mode 100644 index 00000000000..0e994abde23 --- /dev/null +++ b/l10n/de_DE/media.po @@ -0,0 +1,64 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:25+0100\n" +"PO-Revision-Date: 2011-08-13 02:19+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:32 templates/player.php:9 +msgid "Music" +msgstr "" + +#: templates/music.php:3 templates/player.php:13 +msgid "Play" +msgstr "" + +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 +msgid "Pause" +msgstr "" + +#: templates/music.php:5 +msgid "Previous" +msgstr "" + +#: templates/music.php:6 templates/player.php:15 +msgid "Next" +msgstr "" + +#: templates/music.php:7 +msgid "Mute" +msgstr "" + +#: templates/music.php:8 +msgid "Unmute" +msgstr "" + +#: templates/music.php:25 +msgid "Rescan Collection" +msgstr "" + +#: templates/music.php:37 +msgid "Artist" +msgstr "" + +#: templates/music.php:38 +msgid "Album" +msgstr "" + +#: templates/music.php:39 +msgid "Title" +msgstr "" + + diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po new file mode 100644 index 00000000000..53aba4cebaf --- /dev/null +++ b/l10n/de_DE/settings.po @@ -0,0 +1,156 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:25+0100\n" +"PO-Revision-Date: 2011-07-25 16:05+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "" + +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 +msgid "Invalid request" +msgstr "" + +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "" + +#: ajax/setlanguage.php:14 +msgid "Language changed" +msgstr "" + +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "" + +#: templates/apps.php:8 +msgid "Add your application" +msgstr "" + +#: templates/apps.php:21 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:23 +msgid "-licensed" +msgstr "" + +#: templates/apps.php:23 +msgid "by" +msgstr "" + +#: templates/help.php:8 +msgid "Ask a question" +msgstr "" + +#: templates/help.php:20 +msgid "Problems connecting to help database." +msgstr "" + +#: templates/help.php:21 +msgid "Go there manually." +msgstr "" + +#: templates/help.php:29 +msgid "Answer" +msgstr "" + +#: templates/personal.php:8 +msgid "You use" +msgstr "" + +#: templates/personal.php:8 +msgid "of the available" +msgstr "" + +#: templates/personal.php:13 +msgid "Your password got changed" +msgstr "" + +#: templates/personal.php:14 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:15 +msgid "Current password" +msgstr "" + +#: templates/personal.php:16 +msgid "New password" +msgstr "" + +#: templates/personal.php:17 +msgid "show" +msgstr "" + +#: templates/personal.php:18 +msgid "Change password" +msgstr "" + +#: templates/personal.php:24 +msgid "Email" +msgstr "" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:32 templates/personal.php:33 +msgid "Language" +msgstr "" + +#: templates/personal.php:38 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:45 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/users.php:15 templates/users.php:30 +msgid "Name" +msgstr "" + +#: templates/users.php:16 templates/users.php:31 +msgid "Password" +msgstr "" + +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 +msgid "Groups" +msgstr "" + +#: templates/users.php:23 +msgid "Create" +msgstr "" + +#: templates/users.php:33 +msgid "Quota" +msgstr "" + +#: templates/users.php:58 +msgid "Delete" +msgstr "" + + diff --git a/l10n/el/calendar.po b/l10n/el/calendar.po index 15e4e959f34..0b1acf524eb 100644 --- a/l10n/el/calendar.po +++ b/l10n/el/calendar.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Petros Kyladitis , 2011. +# , 2011. +# Petros Kyladitis , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-19 00:56+0000\n" +"Last-Translator: Petros Kyladitis \n" "Language-Team: Greek (http://www.transifex.net/projects/p/owncloud/team/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,347 +19,428 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/createcalendar.php:18 ajax/settimezone.php:19 -#: ajax/updatecalendar.php:18 -msgid "Authentication error" -msgstr "Σφάλμα ταυτοποίησης" +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "Νέα ζώνη ώρας:" -#: ajax/editeventform.php:25 -msgid "Wrong calendar" -msgstr "Λάθος ημερολόγιο" - -#: ajax/settimezone.php:27 +#: ajax/settimezone.php:22 msgid "Timezone changed" msgstr "Η ζώνη ώρας άλλαξε" -#: ajax/settimezone.php:29 +#: ajax/settimezone.php:24 msgid "Invalid request" msgstr "Μη έγκυρο αίτημα" -#: appinfo/app.php:19 templates/part.eventform.php:27 -#: templates/part.eventinfo.php:18 +#: appinfo/app.php:20 templates/calendar.php:14 +#: templates/part.eventform.php:20 msgid "Calendar" msgstr "Ημερολόγιο" -#: lib/object.php:292 +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Λάθος ημερολόγιο" + +#: lib/app.php:60 lib/object.php:332 msgid "Birthday" msgstr "Γενέθλια" -#: lib/object.php:293 +#: lib/app.php:61 lib/object.php:333 msgid "Business" msgstr "Επιχείρηση" -#: lib/object.php:294 +#: lib/app.php:62 lib/object.php:334 msgid "Call" msgstr "Κλήση" -#: lib/object.php:295 +#: lib/app.php:63 lib/object.php:335 msgid "Clients" msgstr "Πελάτες" -#: lib/object.php:296 +#: lib/app.php:64 lib/object.php:336 msgid "Deliverer" -msgstr "" +msgstr "Παραδώσας" -#: lib/object.php:297 +#: lib/app.php:65 lib/object.php:337 msgid "Holidays" msgstr "Διακοπές" -#: lib/object.php:298 +#: lib/app.php:66 lib/object.php:338 msgid "Ideas" msgstr "Ιδέες" -#: lib/object.php:299 +#: lib/app.php:67 lib/object.php:339 msgid "Journey" msgstr "Ταξίδι" -#: lib/object.php:300 +#: lib/app.php:68 lib/object.php:340 msgid "Jubilee" -msgstr "" +msgstr "Γιορτή" -#: lib/object.php:301 +#: lib/app.php:69 lib/object.php:341 msgid "Meeting" -msgstr "" +msgstr "Συνάντηση" -#: lib/object.php:302 +#: lib/app.php:70 lib/object.php:342 msgid "Other" msgstr "Άλλο" -#: lib/object.php:303 +#: lib/app.php:71 lib/object.php:343 msgid "Personal" msgstr "Προσωπικό" -#: lib/object.php:304 +#: lib/app.php:72 lib/object.php:344 msgid "Projects" msgstr "Έργα" -#: lib/object.php:305 +#: lib/app.php:73 lib/object.php:345 msgid "Questions" msgstr "Ερωτήσεις" -#: lib/object.php:306 +#: lib/app.php:74 lib/object.php:346 msgid "Work" msgstr "Εργασία" -#: lib/object.php:313 +#: lib/object.php:353 msgid "Does not repeat" msgstr "Μη επαναλαμβανόμενο" -#: lib/object.php:314 +#: lib/object.php:354 msgid "Daily" msgstr "Καθημερινά" -#: lib/object.php:315 +#: lib/object.php:355 msgid "Weekly" msgstr "Εβδομαδιαία" -#: lib/object.php:316 +#: lib/object.php:356 msgid "Every Weekday" msgstr "Κάθε μέρα" -#: lib/object.php:317 +#: lib/object.php:357 msgid "Bi-Weekly" msgstr "Δύο φορές την εβδομάδα" -#: lib/object.php:318 +#: lib/object.php:358 msgid "Monthly" msgstr "Μηνιαία" -#: lib/object.php:319 +#: lib/object.php:359 msgid "Yearly" msgstr "Ετήσια" -#: lib/object.php:337 -msgid "Not an array" -msgstr "Δεν είναι μια σειρά" +#: lib/object.php:366 +msgid "never" +msgstr "ποτέ" -#: templates/calendar.php:3 -msgid "All day" -msgstr "Ολοήμερο" +#: lib/object.php:367 +msgid "by occurrences" +msgstr "κατά συχνότητα πρόσβασης" -#: templates/calendar.php:32 -msgid "Sunday" -msgstr "Κυριακή" +#: lib/object.php:368 +msgid "by date" +msgstr "κατά ημερομηνία" -#: templates/calendar.php:32 +#: lib/object.php:375 +msgid "by monthday" +msgstr "κατά ημέρα" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "κατά εβδομάδα" + +#: lib/object.php:383 templates/lAfix.php:3 msgid "Monday" msgstr "Δευτέρα" -#: templates/calendar.php:32 +#: lib/object.php:384 templates/lAfix.php:4 msgid "Tuesday" msgstr "Τρίτη" -#: templates/calendar.php:32 +#: lib/object.php:385 templates/lAfix.php:5 msgid "Wednesday" msgstr "Τετάρτη" -#: templates/calendar.php:32 +#: lib/object.php:386 templates/lAfix.php:6 msgid "Thursday" msgstr "Πέμπτη" -#: templates/calendar.php:32 +#: lib/object.php:387 templates/lAfix.php:7 msgid "Friday" msgstr "Παρασκευή" -#: templates/calendar.php:32 +#: lib/object.php:388 templates/lAfix.php:8 msgid "Saturday" msgstr "Σάββατο" -#: templates/calendar.php:33 -msgid "Sun." -msgstr "Κυρ." +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "Κυριακή" -#: templates/calendar.php:33 -msgid "Mon." -msgstr "Δευτ." +#: lib/object.php:396 +msgid "events week of month" +msgstr "συμβάντα της εβδομάδας του μήνα" -#: templates/calendar.php:33 -msgid "Tue." -msgstr "Τρ." +#: lib/object.php:397 +msgid "first" +msgstr "πρώτο" -#: templates/calendar.php:33 -msgid "Wed." -msgstr "Τετ." +#: lib/object.php:398 +msgid "second" +msgstr "δεύτερο" -#: templates/calendar.php:33 -msgid "Thu." -msgstr "Πέμ." +#: lib/object.php:399 +msgid "third" +msgstr "τρίτο" -#: templates/calendar.php:33 -msgid "Fri." -msgstr "Παρ." +#: lib/object.php:400 +msgid "fourth" +msgstr "τέταρτο" -#: templates/calendar.php:33 -msgid "Sat." -msgstr "Σάβ." +#: lib/object.php:401 +msgid "fifth" +msgstr "πέμπτο" -#: templates/calendar.php:34 +#: lib/object.php:402 +msgid "last" +msgstr "τελευταίο" + +#: lib/object.php:424 templates/lAfix.php:16 msgid "January" msgstr "Ιανουάριος" -#: templates/calendar.php:34 +#: lib/object.php:425 templates/lAfix.php:17 msgid "February" msgstr "Φεβρουάριος" -#: templates/calendar.php:34 +#: lib/object.php:426 templates/lAfix.php:18 msgid "March" msgstr "Μάρτιος" -#: templates/calendar.php:34 +#: lib/object.php:427 templates/lAfix.php:19 msgid "April" msgstr "Απρίλιος" -#: templates/calendar.php:34 +#: lib/object.php:428 templates/lAfix.php:20 msgid "May" -msgstr "Μάιος" +msgstr "Μάϊος" -#: templates/calendar.php:34 +#: lib/object.php:429 templates/lAfix.php:21 msgid "June" msgstr "Ιούνιος" -#: templates/calendar.php:34 +#: lib/object.php:430 templates/lAfix.php:22 msgid "July" msgstr "Ιούλιος" -#: templates/calendar.php:34 +#: lib/object.php:431 templates/lAfix.php:23 msgid "August" msgstr "Αύγουστος" -#: templates/calendar.php:34 +#: lib/object.php:432 templates/lAfix.php:24 msgid "September" msgstr "Σεπτέμβριος" -#: templates/calendar.php:34 +#: lib/object.php:433 templates/lAfix.php:25 msgid "October" msgstr "Οκτώβριος" -#: templates/calendar.php:34 +#: lib/object.php:434 templates/lAfix.php:26 msgid "November" msgstr "Νοέμβριος" -#: templates/calendar.php:34 +#: lib/object.php:435 templates/lAfix.php:27 msgid "December" msgstr "Δεκέμβριος" -#: templates/calendar.php:35 -msgid "Jan." -msgstr "Ιαν." +#: lib/object.php:441 +msgid "by events date" +msgstr "κατά ημερομηνία συμβάντων" -#: templates/calendar.php:35 -msgid "Feb." -msgstr "Φεβ." +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "κατά ημέρα(ες) του έτους" -#: templates/calendar.php:35 -msgid "Mar." -msgstr "Μαρ." +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "κατά εβδομάδα(ες)" -#: templates/calendar.php:35 -msgid "Apr." -msgstr "Απρ." +#: lib/object.php:444 +msgid "by day and month" +msgstr "κατά ημέρα και μήνα" -#: templates/calendar.php:35 -msgid "May." -msgstr "" +#: lib/object.php:467 +msgid "Not an array" +msgstr "Δεν είναι μια σειρά" -#: templates/calendar.php:35 -msgid "Jun." -msgstr "Ιούν." +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "Ημερομηνία" -#: templates/calendar.php:35 -msgid "Jul." -msgstr "Ιούλ." +#: lib/search.php:40 +msgid "Cal." +msgstr "Ημερ." -#: templates/calendar.php:35 -msgid "Aug." -msgstr "Αύγ." +#: templates/calendar.php:10 +msgid "All day" +msgstr "Ολοήμερο" -#: templates/calendar.php:35 -msgid "Sep." -msgstr "Σεπ." +#: templates/calendar.php:11 templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "Νέα Ημερολόγιο" -#: templates/calendar.php:35 -msgid "Oct." -msgstr "Οκτ." +#: templates/calendar.php:12 +msgid "Missing fields" +msgstr "Πεδία που λείπουν" -#: templates/calendar.php:35 -msgid "Nov." -msgstr "Νοέ." +#: templates/calendar.php:13 templates/part.eventform.php:3 +msgid "Title" +msgstr "Τίτλος" -#: templates/calendar.php:35 -msgid "Dec." -msgstr "Δεκ." +#: templates/calendar.php:15 +msgid "From Date" +msgstr "Από Ημερομηνία" -#: templates/calendar.php:36 templates/calendar.php:50 -#: templates/calendar.php:116 +#: templates/calendar.php:16 +msgid "From Time" +msgstr "Από Ώρα" + +#: templates/calendar.php:17 +msgid "To Date" +msgstr "Έως Ημερομηνία" + +#: templates/calendar.php:18 +msgid "To Time" +msgstr "Έως Ώρα" + +#: templates/calendar.php:19 +msgid "The event ends before it starts" +msgstr "Το γεγονός ολοκληρώνεται πριν από την έναρξή του" + +#: templates/calendar.php:20 +msgid "There was a database fail" +msgstr "Υπήρξε σφάλμα στη βάση δεδομένων" + +#: templates/calendar.php:38 msgid "Week" msgstr "Εβδομάδα" -#: templates/calendar.php:37 templates/calendar.php:51 -msgid "Weeks" -msgstr "Εβδομάδες" - -#: templates/calendar.php:38 -msgid "More before {startdate}" -msgstr "" - #: templates/calendar.php:39 -msgid "More after {enddate}" -msgstr "" - -#: templates/calendar.php:49 -msgid "Day" -msgstr "Ημέρα" - -#: templates/calendar.php:52 msgid "Month" msgstr "Μήνας" -#: templates/calendar.php:53 +#: templates/calendar.php:40 msgid "List" msgstr "Λίστα" -#: templates/calendar.php:58 +#: templates/calendar.php:46 msgid "Today" msgstr "Σήμερα" -#: templates/calendar.php:59 +#: templates/calendar.php:47 msgid "Calendars" msgstr "Ημερολόγια" -#: templates/calendar.php:76 templates/calendar.php:94 -msgid "Time" -msgstr "Ώρα" - -#: templates/calendar.php:169 +#: templates/calendar.php:65 msgid "There was a fail, while parsing the file." -msgstr "Υπήρχε μια αποτυχία, κατά την ανάλυση του αρχείου." +msgstr "Υπήρξε μια αποτυχία, κατά την αξιολόγηση του αρχείου." + +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "Κυρ." + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "Δευτ." + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "Τρι." + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "Τετ." + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "Πέμ." + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "Παρ." + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "Σαβ." + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "Ιαν." + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "Φεβ." + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "Μαρ." + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "Απρ." + +#: templates/lAfix.php:32 +msgid "May." +msgstr "Μάϊ." + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "Ιον." + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "Ιολ." + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "Αύγ." + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "Σεπ." + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "Οκτ." + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "Νοε." + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "Δεκ." #: templates/part.choosecalendar.php:1 msgid "Choose active calendars" msgstr "Επιλέξτε τα ενεργά ημερολόγια" -#: templates/part.choosecalendar.php:15 -msgid "New Calendar" -msgstr "Νέα Ημερολόγιο" - #: templates/part.choosecalendar.php:20 #: templates/part.choosecalendar.rowfields.php:4 msgid "CalDav Link" -msgstr "" +msgstr "Σύνδεση CalDAV" #: templates/part.choosecalendar.rowfields.php:4 msgid "Download" msgstr "Λήψη" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.eventinfo.php:64 msgid "Edit" msgstr "Επεξεργασία" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.editevent.php:8 +#: templates/part.editevent.php:9 msgid "Delete" -msgstr "" +msgstr "Διαγραφή" #: templates/part.editcalendar.php:9 msgid "New calendar" @@ -376,90 +458,181 @@ msgstr "Προβολή ονόματος" msgid "Active" msgstr "Ενεργό" -#: templates/part.editcalendar.php:29 templates/part.eventform.php:88 -#: templates/part.eventinfo.php:58 -msgid "Description" -msgstr "Περιγραφή" - -#: templates/part.editcalendar.php:35 +#: templates/part.editcalendar.php:29 msgid "Calendar color" msgstr "Χρώμα ημερολογίου" -#: templates/part.editcalendar.php:41 +#: templates/part.editcalendar.php:42 msgid "Save" -msgstr "" +msgstr "Αποθήκευση" -#: templates/part.editcalendar.php:41 templates/part.editevent.php:7 +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 #: templates/part.newevent.php:6 msgid "Submit" msgstr "Υποβολή" -#: templates/part.editcalendar.php:42 +#: templates/part.editcalendar.php:43 msgid "Cancel" msgstr "Ακύρωση" -#: templates/part.editevent.php:1 templates/part.eventinfo.php:1 +#: templates/part.editevent.php:1 msgid "Edit an event" msgstr "Επεξεργασία ενός γεγονότος" -#: templates/part.eventform.php:3 templates/part.eventinfo.php:4 -msgid "Title" -msgstr "Τίτλος" +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "Εξαγωγή" #: templates/part.eventform.php:5 msgid "Title of the Event" msgstr "Τίτλος συμβάντος" -#: templates/part.eventform.php:9 templates/part.eventinfo.php:9 -msgid "Location" -msgstr "Τοποθεσία" - #: templates/part.eventform.php:11 -msgid "Location of the Event" -msgstr "Τοποθεσία συμβάντος" - -#: templates/part.eventform.php:17 templates/part.eventinfo.php:16 msgid "Category" msgstr "Κατηγορία" -#: templates/part.eventform.php:19 +#: templates/part.eventform.php:13 msgid "Select category" msgstr "Επιλέξτε κατηγορία" -#: templates/part.eventform.php:45 templates/part.eventinfo.php:28 +#: templates/part.eventform.php:37 msgid "All Day Event" msgstr "Ολοήμερο συμβάν" -#: templates/part.eventform.php:49 templates/part.eventinfo.php:31 +#: templates/part.eventform.php:41 msgid "From" msgstr "Από" -#: templates/part.eventform.php:57 templates/part.eventinfo.php:38 +#: templates/part.eventform.php:49 msgid "To" msgstr "Έως" -#: templates/part.eventform.php:65 templates/part.eventinfo.php:44 +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "Επιλογές για προχωρημένους" + +#: templates/part.eventform.php:61 msgid "Repeat" msgstr "Επαναλαμβανόμενο" -#: templates/part.eventform.php:81 templates/part.eventinfo.php:51 -msgid "Attendees" -msgstr "Παρευρισκόμενοι" +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "Για προχωρημένους" -#: templates/part.eventform.php:89 +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "Επιλογή ημερών εβδομάδας" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "Επιλογή ημερών" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "και των ημερών του χρόνου που υπάρχουν συμβάντα." + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "και των ημερών του μήνα που υπάρχουν συμβάντα." + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "Επιλογή μηνών" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "Επιλογή εβδομάδων" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "και των εβδομάδων του χρόνου που υπάρουν συμβάντα." + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "Διάστημα" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "Τέλος" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "περιστατικά" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Τοποθεσία" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Τοποθεσία συμβάντος" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Περιγραφή" + +#: templates/part.eventform.php:218 msgid "Description of the Event" msgstr "Περιγραφή του συμβάντος" -#: templates/part.eventinfo.php:63 -msgid "Close" -msgstr "Κλείσιμο" +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "Εισαγωγή αρχείου ημερολογίου" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "Παρακαλώ επιλέξτε το ημερολόγιο" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "δημιουργία νέου ημερολογίου" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "Όνομα νέου ημερολογίου" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "Εισαγωγή" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "Εισαγωγή ημερολογίου" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "Το ημερολόγιο εισήχθει επιτυχώς" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "Κλείσιμο Διαλόγου" #: templates/part.newevent.php:1 msgid "Create a new event" msgstr "Δημιουργήστε ένα νέο συμβάν" -#: templates/settings.php:11 +#: templates/settings.php:13 msgid "Timezone" msgstr "Ζώνη ώρας" +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "Έλεγοχς πάντα για τις αλλαγές της ζώνης ώρας" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "Μορφή ώρας" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24ω" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12ω" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "Διεύθυνση για το συγχρονισμού του ημερολογίου CalDAV:" + diff --git a/l10n/el/contacts.po b/l10n/el/contacts.po index bdd775c8ba2..ecfb8c66b05 100644 --- a/l10n/el/contacts.po +++ b/l10n/el/contacts.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2011. +# Petros Kyladitis , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 20:10+0200\n" -"PO-Revision-Date: 2011-09-23 18:11+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" "Language-Team: Greek (http://www.transifex.net/projects/p/owncloud/team/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,164 +19,267 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 -#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 -#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 -#: ajax/showsetproperty.php:32 photo.php:32 -msgid "You need to log in." +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." msgstr "" -#: ajax/addcard.php:37 +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: lib/app.php:52 msgid "This is not your addressbook." -msgstr "" +msgstr "Αυτό δεν είναι βιβλίο διευθύνσεων σας." -#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 -#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 -#: ajax/showsetproperty.php:38 photo.php:39 +#: lib/app.php:61 photo.php:36 msgid "Contact could not be found." -msgstr "" +msgstr "Η επαφή δεν μπρόρεσε να βρεθεί." -#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 -#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 -#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 -msgid "This is not your contact." -msgstr "" - -#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 -#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 -msgid "vCard could not be read." -msgstr "" - -#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 -#: ajax/showsetproperty.php:62 +#: lib/app.php:89 msgid "Information about vCard is incorrect. Please reload the page." msgstr "" +"Οι πληροφορίες σχετικά με vCard είναι εσφαλμένες. Παρακαλώ επαναφορτώστε τη " +"σελίδα." -#: photo.php:53 -msgid "This card is not RFC compatible." -msgstr "" - -#: photo.php:90 -msgid "This card does not contain a photo." -msgstr "" - -#: templates/index.php:8 -msgid "Add Contact" -msgstr "" - -#: templates/part.addcardform.php:5 -msgid "Group" -msgstr "" - -#: templates/part.addcardform.php:12 templates/part.property.php:3 -msgid "Name" -msgstr "" - -#: templates/part.addcardform.php:14 -msgid "Create Contact" -msgstr "" - -#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 msgid "Address" -msgstr "" +msgstr "Διεύθυνση" -#: templates/part.addpropertyform.php:5 +#: lib/app.php:102 templates/part.addcardform.php:43 msgid "Telephone" -msgstr "" +msgstr "Τηλέφωνο" -#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 msgid "Email" -msgstr "" +msgstr "Email" -#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 msgid "Organization" -msgstr "" +msgstr "Οργανισμός" -#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +#: lib/app.php:116 lib/app.php:123 msgid "Work" -msgstr "" +msgstr "Εργασία" -#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +#: lib/app.php:117 lib/app.php:121 msgid "Home" -msgstr "" +msgstr "Σπίτι" -#: templates/part.addpropertyform.php:20 templates/part.property.php:48 -#: templates/part.setpropertyform.php:5 -msgid "PO Box" -msgstr "" - -#: templates/part.addpropertyform.php:21 templates/part.property.php:51 -#: templates/part.setpropertyform.php:6 -msgid "Extended" -msgstr "" - -#: templates/part.addpropertyform.php:22 templates/part.property.php:54 -#: templates/part.setpropertyform.php:7 -msgid "Street" -msgstr "" - -#: templates/part.addpropertyform.php:23 templates/part.property.php:57 -#: templates/part.setpropertyform.php:8 -msgid "City" -msgstr "" - -#: templates/part.addpropertyform.php:24 templates/part.property.php:60 -#: templates/part.setpropertyform.php:9 -msgid "Region" -msgstr "" - -#: templates/part.addpropertyform.php:25 templates/part.property.php:63 -#: templates/part.setpropertyform.php:10 -msgid "Zipcode" -msgstr "" - -#: templates/part.addpropertyform.php:26 templates/part.property.php:66 -#: templates/part.setpropertyform.php:11 -msgid "Country" -msgstr "" - -#: templates/part.addpropertyform.php:31 +#: lib/app.php:122 msgid "Mobile" -msgstr "" +msgstr "Κινητό" -#: templates/part.addpropertyform.php:33 +#: lib/app.php:124 msgid "Text" -msgstr "" +msgstr "Κείμενο" -#: templates/part.addpropertyform.php:34 +#: lib/app.php:125 msgid "Voice" -msgstr "" +msgstr "Φωνή" -#: templates/part.addpropertyform.php:35 +#: lib/app.php:126 msgid "Fax" -msgstr "" +msgstr "Φαξ" -#: templates/part.addpropertyform.php:36 +#: lib/app.php:127 msgid "Video" -msgstr "" +msgstr "Βίντεο" -#: templates/part.addpropertyform.php:37 +#: lib/app.php:128 msgid "Pager" +msgstr "Βομβητής" + +#: lib/search.php:22 +msgid "Contact" msgstr "" -#: templates/part.details.php:33 -msgid "Delete" +#: photo.php:42 +msgid "This is not your contact." +msgstr "Αυτή δεν είναι επαφή σας." + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Προσθήκη επαφής" + +#: templates/index.php:7 +msgid "Addressbooks" msgstr "" +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Όνομα" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "Τύπος" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "Ταχ. Θυρίδα" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Εκτεταμένη" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Οδός" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Πόλη" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Περιοχή" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "Τ.Κ." + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "Χώρα" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Δημιουργία επαφής" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "Επιλέξτε τα ενεργά βιβλία διευθύνσεων" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "Νέο βιβλίο διευθύνσεων" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "Σύνδεσμος CardDav" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "Μεταφόρτωση" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Επεξεργασία" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Delete" +msgstr "Διαγραφή" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "Διαγραφή επαφής" + #: templates/part.details.php:34 -msgid "Add Property" +msgid "Add" +msgstr "Προσθήκη" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" msgstr "" -#: templates/part.property.php:9 +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "Προβαλόμενο όνομα" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "Ενεργό" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "Αποθήκευση" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "Καταχώρηση" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "Ακύρωση" + +#: templates/part.property.php:3 msgid "Birthday" -msgstr "" +msgstr "Γενέθλια" -#: templates/part.property.php:29 +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "Προτιμώμενο" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 msgid "Phone" -msgstr "" +msgstr "Τηλέφωνο" -#: templates/part.setpropertyform.php:17 -msgid "Edit" +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "Ενημέρωση" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" msgstr "" diff --git a/l10n/el/core.po b/l10n/el/core.po index f7d9f565555..1b3f42e1e0b 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -4,14 +4,14 @@ # # Translators: # , 2011. -# Petros Kyladitis , 2011. +# Petros Kyladitis , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-07 09:13+0000\n" -"Last-Translator: multipetros \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-11 17:25+0000\n" +"Last-Translator: Petros Kyladitis \n" "Language-Team: Greek (http://www.transifex.net/projects/p/owncloud/team/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +19,54 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "Επανέκδοση κωδικού για το Qwncloud" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "" +"Χρησιμοποιήστε τον ακόλουθο σύνδεσμο για να επανεκδόσετε τον κωδικό: {link}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" +"Θα λάβετε ένα σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασής σας μέσω " +"ηλεκτρονικού ταχυδρομείου." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Ζητήθησαν" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Η σύνδεση απέτυχε!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Όνομα Χρήστη" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Επαναφορά αίτησης" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Ο κωδικός πρόσβασής σας επαναφέρθηκε" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "Σελίδα εισόδου" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Νέος κωδικός" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Επαναφορά κωδικού πρόσβασης" + #: strings.php:5 msgid "Personal" msgstr "Προσωπικά" @@ -47,54 +95,50 @@ msgstr "Δεν βρέθηκε σύννεφο" msgid "Create an admin account" msgstr "Δημιουργήστε έναν λογαριασμό διαχειριστή" -#: templates/installation.php:21 -msgid "Username" -msgstr "Όνομα Χρήστη" - -#: templates/installation.php:22 +#: templates/installation.php:26 templates/login.php:12 msgid "Password" msgstr "Κωδικός" -#: templates/installation.php:27 -msgid "Configure the database" -msgstr "Διαμόρφωση της βάσης δεδομένων" - -#: templates/installation.php:32 templates/installation.php:43 -#: templates/installation.php:53 -msgid "will be used" -msgstr "θα χρησιμοποιηθούν" - -#: templates/installation.php:64 -msgid "Database user" -msgstr "Χρήστης της βάσης δεδομένων" - -#: templates/installation.php:65 -msgid "Database password" -msgstr "Κωδικός πρόσβασης βάσης δεδομένων" - -#: templates/installation.php:66 -msgid "Database name" -msgstr "Όνομα βάσης δεδομένων" - -#: templates/installation.php:72 +#: templates/installation.php:32 msgid "Advanced" msgstr "Για προχωρημένους" -#: templates/installation.php:75 -msgid "Database host" -msgstr "Διακομιστής βάσης δεδομένων" - -#: templates/installation.php:76 +#: templates/installation.php:34 msgid "Data folder" msgstr "Φάκελος δεδομένων" +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Διαμόρφωση της βάσης δεδομένων" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "θα χρησιμοποιηθούν" + #: templates/installation.php:79 +msgid "Database user" +msgstr "Χρήστης της βάσης δεδομένων" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Κωδικός πρόσβασης βάσης δεδομένων" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Όνομα βάσης δεδομένων" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Διακομιστής βάσης δεδομένων" + +#: templates/installation.php:98 msgid "Finish setup" msgstr "Ολοκλήρωση εγκατάστασης" #: templates/layout.guest.php:35 -msgid "gives you freedom and control over your own data" -msgstr "σας δίνει την ελευθερία και τον έλεγχο επί των δικών σας δεδομένων" +msgid "web services under your control" +msgstr "Υπηρεσίες web υπό τον έλεγχό σας" #: templates/layout.user.php:34 msgid "Log out" @@ -104,40 +148,22 @@ msgstr "Αποσύνδεση" msgid "Settings" msgstr "Ρυθμίσεις" -#: templates/login.php:4 +#: templates/login.php:5 msgid "Lost your password?" msgstr "Ξεχάσατε τον κωδικό σας;" -#: templates/login.php:9 templates/login.php:13 +#: templates/login.php:15 msgid "remember" msgstr "να με θυμάσαι" +#: templates/login.php:16 +msgid "Log in" +msgstr "Είσοδος" + #: templates/logout.php:1 msgid "You are logged out." msgstr "Έχετε αποσυνδεθεί." -#: templates/lostpassword.php:3 -msgid "You will receive a link to reset your password via Email." -msgstr "" -"Θα λάβετε ένα σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασής σας, μέσω " -"ηλεκτρονικού ταχυδρομείου." - -#: templates/lostpassword.php:5 -msgid "Requested" -msgstr "Αιτήθησαν" - -#: templates/lostpassword.php:8 -msgid "Login failed!" -msgstr "Η σύνδεση απέτυχε!" - -#: templates/lostpassword.php:10 -msgid "Username or Email" -msgstr "Όνομα Χρήστη ή Email" - -#: templates/lostpassword.php:11 -msgid "Request reset" -msgstr "Επαναφοράς αίτησης" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "προηγούμενο" @@ -146,16 +172,4 @@ msgstr "προηγούμενο" msgid "next" msgstr "επόμενο" -#: templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "Έγινε επαναφορά του κωδικού πρόσβασής σας" - -#: templates/resetpassword.php:6 -msgid "New password" -msgstr "Νέος κωδικός" - -#: templates/resetpassword.php:7 -msgid "Reset password" -msgstr "Επαναφορά κωδικού πρόσβασης" - diff --git a/l10n/el/files.po b/l10n/el/files.po index da78a25356e..aa0c2bd13a4 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Petros Kyladitis , 2011. +# Petros Kyladitis , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-11 17:17+0000\n" +"Last-Translator: Petros Kyladitis \n" "Language-Team: Greek (http://www.transifex.net/projects/p/owncloud/team/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,33 +18,37 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:24 +#: ajax/upload.php:19 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "Δεν υπάρχει λάθος, το αρχείο που μεταφορτώθηκε επιτυχώς" -#: ajax/upload.php:25 +#: ajax/upload.php:20 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "" +"Το αρχείο που μεταφορτώθηκε υπερβαίνει την οδηγία μέγιστου επιτρεπτού " +"μεγέθους \"upload_max_filesize\" του php.ini" -#: ajax/upload.php:26 +#: ajax/upload.php:21 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" +"Το αρχείο υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους " +"\"MAX_FILE_SIZE\" που έχει οριστεί στην html φόρμα" -#: ajax/upload.php:27 +#: ajax/upload.php:22 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "Το αρχείο μεταφορώθηκε μόνο εν μέρει" -#: ajax/upload.php:28 +#: ajax/upload.php:23 msgid "No file was uploaded" -msgstr "" +msgstr "Το αρχείο δεν μεταφορτώθηκε" -#: ajax/upload.php:29 +#: ajax/upload.php:24 msgid "Missing a temporary folder" -msgstr "" +msgstr "Λείπει ένας προσωρινός φάκελος" -#: appinfo/app.php:7 +#: appinfo/app.php:8 msgid "Files" msgstr "Αρχεία" @@ -52,43 +56,55 @@ msgstr "Αρχεία" msgid "Maximum upload size" msgstr "Μέγιστο μέγεθος μεταφόρτωσης" +#: templates/index.php:7 +msgid "New" +msgstr "Νέο" + #: templates/index.php:10 +msgid "Text file" +msgstr "Αρχείο κειμένου" + +#: templates/index.php:11 +msgid "Folder" +msgstr "Φάκελος" + +#: templates/index.php:12 +msgid "From the web" +msgstr "Από τον ιστό" + +#: templates/index.php:22 msgid "Upload" msgstr "Μεταφόρτωση" -#: templates/index.php:17 -msgid "New Folder" -msgstr "Νέος φάκελος" - -#: templates/index.php:31 +#: templates/index.php:35 msgid "Nothing in here. Upload something!" msgstr "Δεν υπάρχει τίποτα εδώ. Ανέβασε κάτι!" -#: templates/index.php:39 +#: templates/index.php:43 msgid "Name" msgstr "Όνομα" -#: templates/index.php:41 +#: templates/index.php:45 msgid "Download" msgstr "Λήψη" -#: templates/index.php:45 +#: templates/index.php:49 msgid "Size" msgstr "Μέγεθος" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Modified" msgstr "Τροποποιήθηκε" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Delete" msgstr "Διαγραφή" -#: templates/index.php:54 +#: templates/index.php:58 msgid "Upload too large" msgstr "Πολύ μεγάλο το αρχείο προς μεταφόρτωση" -#: templates/index.php:56 +#: templates/index.php:60 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." diff --git a/l10n/el/gallery.po b/l10n/el/gallery.po new file mode 100644 index 00000000000..395f79389d0 --- /dev/null +++ b/l10n/el/gallery.po @@ -0,0 +1,52 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Greek (http://www.transifex.net/projects/p/owncloud/team/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" + + diff --git a/l10n/el/media.po b/l10n/el/media.po index c5bd96407cb..cb05fad3c96 100644 --- a/l10n/el/media.po +++ b/l10n/el/media.po @@ -2,14 +2,15 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# Translators: # Petros Kyladitis , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-08-23 11:09+0200\n" -"PO-Revision-Date: 2011-08-21 22:51+0000\n" -"Last-Translator: multipetros \n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Greek (http://www.transifex.net/projects/p/owncloud/team/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,15 +18,15 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: appinfo/app.php:31 +#: appinfo/app.php:32 msgid "Music" msgstr "Μουσική" -#: templates/music.php:3 +#: templates/music.php:3 templates/player.php:13 msgid "Play" msgstr "Αναπαραγωγή" -#: templates/music.php:4 templates/music.php:30 +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 msgid "Pause" msgstr "Παύση" @@ -33,7 +34,7 @@ msgstr "Παύση" msgid "Previous" msgstr "Προηγούμενο" -#: templates/music.php:6 +#: templates/music.php:6 templates/player.php:15 msgid "Next" msgstr "Επόμενο" @@ -45,11 +46,7 @@ msgstr "Σίγαση" msgid "Unmute" msgstr "Επαναφορά ήχου" -#: templates/music.php:28 -msgid "Songs scanned" -msgstr "Σαρωμένα τραγούγια" - -#: templates/music.php:29 +#: templates/music.php:25 msgid "Rescan Collection" msgstr "Επανασάρωση συλλογής" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 03240ac6c73..2c5d9245f1e 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -2,15 +2,17 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# Translators: +# , 2012. # , 2011. -# Petros Kyladitis , 2011. +# Petros Kyladitis , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-08-28 01:13+0200\n" -"PO-Revision-Date: 2011-08-27 23:13+0000\n" -"Last-Translator: JanCBorchardt \n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-19 12:47+0000\n" +"Last-Translator: icewind \n" "Language-Team: Greek (http://www.transifex.net/projects/p/owncloud/team/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,25 +20,33 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/openid.php:13 ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Σφάλμα ταυτοποίησης" +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "το email άλλαξε" -#: ajax/openid.php:21 -msgid "OpenID Changed" -msgstr "Το OpenID άλλαξε" - -#: ajax/openid.php:23 ajax/setlanguage.php:23 +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 msgid "Invalid request" msgstr "Άκυρα αίτημα" -#: ajax/setlanguage.php:21 +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "Το OpenID άλλαξε" + +#: ajax/setlanguage.php:14 msgid "Language changed" msgstr "Η γλώσσα άλλαξε" +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "Επίπεδο καταγραφής" + #: templates/apps.php:8 msgid "Add your application" -msgstr "" +msgstr "Προσθέστε την δική σας εφαρμογή" #: templates/apps.php:21 msgid "Select an App" @@ -54,15 +64,15 @@ msgstr "με" msgid "Ask a question" msgstr "Κάντε μια ερώτηση" -#: templates/help.php:17 +#: templates/help.php:20 msgid "Problems connecting to help database." msgstr "Προβλήματα κατά τη σύνδεση με τη βάση δεδομένων βοήθειας." -#: templates/help.php:18 +#: templates/help.php:21 msgid "Go there manually." msgstr "Χειροκίνητη μετάβαση." -#: templates/help.php:26 +#: templates/help.php:29 msgid "Answer" msgstr "Απάντηση" @@ -80,7 +90,7 @@ msgstr "Ο κωδικός πρόσβασής σας άλαλαξε" #: templates/personal.php:14 msgid "Unable to change your password" -msgstr "" +msgstr "Δεν ήταν δυνατή η αλλαγή του κωδικού πρόσβασης" #: templates/personal.php:15 msgid "Current password" @@ -99,36 +109,54 @@ msgid "Change password" msgstr "Αλλαγή κωδικού πρόσβασης" #: templates/personal.php:24 +msgid "Email" +msgstr "Email" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "Το διεύθυνση ηλεκτρονικού ταχυδρομείου σας" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" +"Συμπληρώστε μια διεύθυνση ηλεκτρονικού ταχυδρομείου για να ενεργοποιηθεί ή " +"ανάκτηση κωδικού πρόσβασης" + +#: templates/personal.php:32 templates/personal.php:33 msgid "Language" msgstr "Γλώσσα" -#: templates/personal.php:30 -msgid "Help translating" -msgstr "Βοηθήστε στη μετάφραση" +#: templates/personal.php:38 +msgid "Help translate" +msgstr "Βοηθήστε στην μετάφραση" -#: templates/personal.php:36 +#: templates/personal.php:45 msgid "use this address to connect to your ownCloud in your file manager" msgstr "" "χρησιμοποιήστε αυτή τη διεύθυνση για να συνδεθείτε στο ownCloud σας από το " "διαχειριστή αρχείων σας" -#: templates/users.php:16 +#: templates/users.php:15 templates/users.php:30 msgid "Name" msgstr "Όνομα" -#: templates/users.php:17 +#: templates/users.php:16 templates/users.php:31 msgid "Password" msgstr "Κωδικός" -#: templates/users.php:18 templates/users.php:36 +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 msgid "Groups" msgstr "Ομάδες" -#: templates/users.php:24 +#: templates/users.php:23 msgid "Create" msgstr "Δημιουργία" -#: templates/users.php:48 +#: templates/users.php:33 +msgid "Quota" +msgstr "Αναλογία χώρου" + +#: templates/users.php:58 msgid "Delete" msgstr "Διαγραφή" diff --git a/l10n/eo/calendar.po b/l10n/eo/calendar.po new file mode 100644 index 00000000000..94b0b0af305 --- /dev/null +++ b/l10n/eo/calendar.po @@ -0,0 +1,637 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011, 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-15 13:45+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Esperanto (http://www.transifex.net/projects/p/owncloud/team/eo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "Nova horzono:" + +#: ajax/settimezone.php:22 +msgid "Timezone changed" +msgstr "La horozono estas ŝanĝita" + +#: ajax/settimezone.php:24 +msgid "Invalid request" +msgstr "Nevalida peto" + +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 +msgid "Calendar" +msgstr "Kalendaro" + +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Malĝusta kalendaro" + +#: lib/app.php:60 lib/object.php:332 +msgid "Birthday" +msgstr "Naskiĝotago" + +#: lib/app.php:61 lib/object.php:333 +msgid "Business" +msgstr "Negoco" + +#: lib/app.php:62 lib/object.php:334 +msgid "Call" +msgstr "Voko" + +#: lib/app.php:63 lib/object.php:335 +msgid "Clients" +msgstr "Klientoj" + +#: lib/app.php:64 lib/object.php:336 +msgid "Deliverer" +msgstr "Livero" + +#: lib/app.php:65 lib/object.php:337 +msgid "Holidays" +msgstr "Ferioj" + +#: lib/app.php:66 lib/object.php:338 +msgid "Ideas" +msgstr "Ideoj" + +#: lib/app.php:67 lib/object.php:339 +msgid "Journey" +msgstr "Vojaĝo" + +#: lib/app.php:68 lib/object.php:340 +msgid "Jubilee" +msgstr "Jubileo" + +#: lib/app.php:69 lib/object.php:341 +msgid "Meeting" +msgstr "Rendevuo" + +#: lib/app.php:70 lib/object.php:342 +msgid "Other" +msgstr "Alia" + +#: lib/app.php:71 lib/object.php:343 +msgid "Personal" +msgstr "Persona" + +#: lib/app.php:72 lib/object.php:344 +msgid "Projects" +msgstr "Projektoj" + +#: lib/app.php:73 lib/object.php:345 +msgid "Questions" +msgstr "Demandoj" + +#: lib/app.php:74 lib/object.php:346 +msgid "Work" +msgstr "Laboro" + +#: lib/object.php:353 +msgid "Does not repeat" +msgstr "Ĉi tio ne ripetiĝas" + +#: lib/object.php:354 +msgid "Daily" +msgstr "Tage" + +#: lib/object.php:355 +msgid "Weekly" +msgstr "Semajne" + +#: lib/object.php:356 +msgid "Every Weekday" +msgstr "Tage" + +#: lib/object.php:357 +msgid "Bi-Weekly" +msgstr "Semajnduope" + +#: lib/object.php:358 +msgid "Monthly" +msgstr "Monate" + +#: lib/object.php:359 +msgid "Yearly" +msgstr "Jare" + +#: lib/object.php:366 +msgid "never" +msgstr "neniam" + +#: lib/object.php:367 +msgid "by occurrences" +msgstr "laŭ aperoj" + +#: lib/object.php:368 +msgid "by date" +msgstr "laŭ dato" + +#: lib/object.php:375 +msgid "by monthday" +msgstr "laŭ monattago" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "laŭ semajntago" + +#: lib/object.php:383 templates/lAfix.php:3 +msgid "Monday" +msgstr "lundo" + +#: lib/object.php:384 templates/lAfix.php:4 +msgid "Tuesday" +msgstr "mardo" + +#: lib/object.php:385 templates/lAfix.php:5 +msgid "Wednesday" +msgstr "merkredo" + +#: lib/object.php:386 templates/lAfix.php:6 +msgid "Thursday" +msgstr "ĵaŭdo" + +#: lib/object.php:387 templates/lAfix.php:7 +msgid "Friday" +msgstr "vendredo" + +#: lib/object.php:388 templates/lAfix.php:8 +msgid "Saturday" +msgstr "sabato" + +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "dimanĉo" + +#: lib/object.php:396 +msgid "events week of month" +msgstr "la monatsemajno de la okazaĵo" + +#: lib/object.php:397 +msgid "first" +msgstr "unua" + +#: lib/object.php:398 +msgid "second" +msgstr "dua" + +#: lib/object.php:399 +msgid "third" +msgstr "tria" + +#: lib/object.php:400 +msgid "fourth" +msgstr "kvara" + +#: lib/object.php:401 +msgid "fifth" +msgstr "kvina" + +#: lib/object.php:402 +msgid "last" +msgstr "lasta" + +#: lib/object.php:424 templates/lAfix.php:16 +msgid "January" +msgstr "Januaro" + +#: lib/object.php:425 templates/lAfix.php:17 +msgid "February" +msgstr "Februaro" + +#: lib/object.php:426 templates/lAfix.php:18 +msgid "March" +msgstr "Marto" + +#: lib/object.php:427 templates/lAfix.php:19 +msgid "April" +msgstr "Aprilo" + +#: lib/object.php:428 templates/lAfix.php:20 +msgid "May" +msgstr "Majo" + +#: lib/object.php:429 templates/lAfix.php:21 +msgid "June" +msgstr "Junio" + +#: lib/object.php:430 templates/lAfix.php:22 +msgid "July" +msgstr "Julio" + +#: lib/object.php:431 templates/lAfix.php:23 +msgid "August" +msgstr "Aŭgusto" + +#: lib/object.php:432 templates/lAfix.php:24 +msgid "September" +msgstr "Septembro" + +#: lib/object.php:433 templates/lAfix.php:25 +msgid "October" +msgstr "Oktobro" + +#: lib/object.php:434 templates/lAfix.php:26 +msgid "November" +msgstr "Novembro" + +#: lib/object.php:435 templates/lAfix.php:27 +msgid "December" +msgstr "Decembro" + +#: lib/object.php:441 +msgid "by events date" +msgstr "laŭ okazaĵdato" + +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "laŭ jartago(j)" + +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "laŭ semajnnumero(j)" + +#: lib/object.php:444 +msgid "by day and month" +msgstr "laŭ tago kaj monato" + +#: lib/object.php:467 +msgid "Not an array" +msgstr "Ĉi tio ne estas tabeltipa" + +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "Dato" + +#: lib/search.php:40 +msgid "Cal." +msgstr "Kal." + +#: templates/calendar.php:10 +msgid "All day" +msgstr "La tuta tago" + +#: templates/calendar.php:11 +msgid "Missing fields" +msgstr "Mankas iuj kampoj" + +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" +msgstr "Titolo" + +#: templates/calendar.php:14 +msgid "From Date" +msgstr "ekde la dato" + +#: templates/calendar.php:15 +msgid "From Time" +msgstr "ekde la horo" + +#: templates/calendar.php:16 +msgid "To Date" +msgstr "ĝis la dato" + +#: templates/calendar.php:17 +msgid "To Time" +msgstr "ĝis la horo" + +#: templates/calendar.php:18 +msgid "The event ends before it starts" +msgstr "La okazaĵo finas antaŭ komenci" + +#: templates/calendar.php:19 +msgid "There was a database fail" +msgstr "Datumbaza malsukceso okazis" + +#: templates/calendar.php:52 +msgid "Week" +msgstr "Semajno" + +#: templates/calendar.php:53 +msgid "Month" +msgstr "Monato" + +#: templates/calendar.php:54 +msgid "List" +msgstr "Listo" + +#: templates/calendar.php:59 +msgid "Today" +msgstr "Hodiaŭ" + +#: templates/calendar.php:60 +msgid "Calendars" +msgstr "Kalendaroj" + +#: templates/calendar.php:78 +msgid "There was a fail, while parsing the file." +msgstr "Malsukceso okazis dum analizo de la dosiero." + +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "" + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "" + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "" + +#: templates/lAfix.php:32 +msgid "May." +msgstr "" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "" + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "" + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "" + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "" + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "" + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "" + +#: templates/part.choosecalendar.php:1 +msgid "Choose active calendars" +msgstr "Elektu aktivajn kalendarojn" + +#: templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "Nova kalendaro" + +#: templates/part.choosecalendar.php:20 +#: templates/part.choosecalendar.rowfields.php:4 +msgid "CalDav Link" +msgstr "CalDav-a ligilo" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Download" +msgstr "Elŝuti" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Edit" +msgstr "Redakti" + +#: templates/part.choosecalendar.rowfields.php:4 +#: templates/part.editevent.php:9 +msgid "Delete" +msgstr "Forigi" + +#: templates/part.editcalendar.php:9 +msgid "New calendar" +msgstr "Nova kalendaro" + +#: templates/part.editcalendar.php:9 +msgid "Edit calendar" +msgstr "Redakti la kalendaron" + +#: templates/part.editcalendar.php:12 +msgid "Displayname" +msgstr "Montrota nomo" + +#: templates/part.editcalendar.php:23 +msgid "Active" +msgstr "Aktiva" + +#: templates/part.editcalendar.php:29 +msgid "Calendar color" +msgstr "Kalendarokoloro" + +#: templates/part.editcalendar.php:42 +msgid "Save" +msgstr "Konservi" + +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 +#: templates/part.newevent.php:6 +msgid "Submit" +msgstr "Sendi" + +#: templates/part.editcalendar.php:43 +msgid "Cancel" +msgstr "Nuligi" + +#: templates/part.editevent.php:1 +msgid "Edit an event" +msgstr "Redakti okazaĵon" + +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "Elporti" + +#: templates/part.eventform.php:5 +msgid "Title of the Event" +msgstr "Okazaĵotitolo" + +#: templates/part.eventform.php:11 +msgid "Category" +msgstr "Kategorio" + +#: templates/part.eventform.php:13 +msgid "Select category" +msgstr "Elekti kategorion" + +#: templates/part.eventform.php:37 +msgid "All Day Event" +msgstr "La tuta tago" + +#: templates/part.eventform.php:41 +msgid "From" +msgstr "Ekde" + +#: templates/part.eventform.php:49 +msgid "To" +msgstr "Ĝis" + +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "Altnivela agordo" + +#: templates/part.eventform.php:61 +msgid "Repeat" +msgstr "Ripeti" + +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "Altnivelo" + +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "Elekti semajntagojn" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "Elekti tagojn" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "kaj la jartago de la okazaĵo." + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "kaj la monattago de la okazaĵo." + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "Elekti monatojn" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "Elekti semajnojn" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "kaj la jarsemajno de la okazaĵo." + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "Intervalo" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "Fino" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "aperoj" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Loko" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Okazaĵoloko" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Priskribo" + +#: templates/part.eventform.php:218 +msgid "Description of the Event" +msgstr "Okazaĵopriskribo" + +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "Bonvolu elekti kalendaron" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "Enporti" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "" + +#: templates/part.newevent.php:1 +msgid "Create a new event" +msgstr "Krei okazaĵon" + +#: templates/settings.php:13 +msgid "Timezone" +msgstr "Horozono" + +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "Ĉiam kontroli ĉu la horzono ŝanĝiĝis" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "Tempoformo" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24h" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12h" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "Adreso de kalendarosinkronigo per CalDAV:" + + diff --git a/l10n/eo/contacts.po b/l10n/eo/contacts.po new file mode 100644 index 00000000000..4bd4eeed285 --- /dev/null +++ b/l10n/eo/contacts.po @@ -0,0 +1,282 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Esperanto (http://www.transifex.net/projects/p/owncloud/team/eo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." +msgstr "" + +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: lib/app.php:52 +msgid "This is not your addressbook." +msgstr "Ĉi tiu ne estas via adresaro." + +#: lib/app.php:61 photo.php:36 +msgid "Contact could not be found." +msgstr "Ne eblis trovi la kontakton." + +#: lib/app.php:89 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "Informo pri vCard estas malĝusta. Bonvolu reŝargi la paĝon." + +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 +msgid "Address" +msgstr "Adreso" + +#: lib/app.php:102 templates/part.addcardform.php:43 +msgid "Telephone" +msgstr "Telefono" + +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 +msgid "Email" +msgstr "Retpoŝtadreso" + +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 +msgid "Organization" +msgstr "Organizaĵo" + +#: lib/app.php:116 lib/app.php:123 +msgid "Work" +msgstr "Laboro" + +#: lib/app.php:117 lib/app.php:121 +msgid "Home" +msgstr "Hejmo" + +#: lib/app.php:122 +msgid "Mobile" +msgstr "Poŝtelefono" + +#: lib/app.php:124 +msgid "Text" +msgstr "Teksto" + +#: lib/app.php:125 +msgid "Voice" +msgstr "Voĉo" + +#: lib/app.php:126 +msgid "Fax" +msgstr "Fakso" + +#: lib/app.php:127 +msgid "Video" +msgstr "Videaĵo" + +#: lib/app.php:128 +msgid "Pager" +msgstr "Televokilo" + +#: lib/search.php:22 +msgid "Contact" +msgstr "" + +#: photo.php:42 +msgid "This is not your contact." +msgstr "Tiu ĉi ne estas via kontakto." + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Aldoni kontakton" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Nomo" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "Abonkesto" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Etendita" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Strato" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Urbo" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Regiono" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "Poŝtokodo" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "Lando" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Krei kontakton" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Redakti" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Delete" +msgstr "Forigi" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "" + +#: templates/part.property.php:3 +msgid "Birthday" +msgstr "Naskiĝotago" + +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 +msgid "Phone" +msgstr "Telefono" + +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "" + + diff --git a/l10n/eo/core.po b/l10n/eo/core.po new file mode 100644 index 00000000000..af35e74b74e --- /dev/null +++ b/l10n/eo/core.po @@ -0,0 +1,171 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Esperanto (http://www.transifex.net/projects/p/owncloud/team/eo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "Vi ricevos ligilon retpoŝte por rekomencigi vian pasvorton." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Petita" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Ensaluto malsukcesis!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Uzantonomo" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Peti rekomencigon" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Via pasvorto rekomencis" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Nova pasvorto" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Rekomenci la pasvorton" + +#: strings.php:5 +msgid "Personal" +msgstr "Persona" + +#: strings.php:6 +msgid "Users" +msgstr "Uzantoj" + +#: strings.php:7 +msgid "Apps" +msgstr "Aplikaĵoj" + +#: strings.php:8 +msgid "Admin" +msgstr "Administranto" + +#: strings.php:9 +msgid "Help" +msgstr "Helpo" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "La nubo ne estas trovita" + +#: templates/installation.php:20 +msgid "Create an admin account" +msgstr "Krei administran konton" + +#: templates/installation.php:26 templates/login.php:12 +msgid "Password" +msgstr "Pasvorto" + +#: templates/installation.php:32 +msgid "Advanced" +msgstr "Porsperta" + +#: templates/installation.php:34 +msgid "Data folder" +msgstr "Datuma dosierujo" + +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Agordi la datumbazon" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "estos uzata" + +#: templates/installation.php:79 +msgid "Database user" +msgstr "Datumbaza uzanto" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Datumbaza pasvorto" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Datumbaza nomo" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Datumbaza gastigo" + +#: templates/installation.php:98 +msgid "Finish setup" +msgstr "Fini la instalon" + +#: templates/layout.guest.php:35 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:34 +msgid "Log out" +msgstr "Elsaluti" + +#: templates/layout.user.php:46 templates/layout.user.php:47 +msgid "Settings" +msgstr "Agordo" + +#: templates/login.php:5 +msgid "Lost your password?" +msgstr "Ĉu vi perdis vian pasvorton?" + +#: templates/login.php:15 +msgid "remember" +msgstr "memori" + +#: templates/login.php:16 +msgid "Log in" +msgstr "" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "Vi elsalutis." + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "maljena" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "jena" + + diff --git a/l10n/eo/files.po b/l10n/eo/files.po new file mode 100644 index 00000000000..9bfe7d92ab3 --- /dev/null +++ b/l10n/eo/files.po @@ -0,0 +1,113 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Esperanto (http://www.transifex.net/projects/p/owncloud/team/eo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/upload.php:19 +msgid "There is no error, the file uploaded with success" +msgstr "Ne estas eraro, la dosiero alŝutiĝis sukcese" + +#: ajax/upload.php:20 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "La dosiero alŝutita superas la regulon upload_max_filesize el php.ini" + +#: ajax/upload.php:21 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" +"La dosiero alŝutita superas laregulon MAX_FILE_SIZE, kiu estas difinita en " +"la HTML-formularo" + +#: ajax/upload.php:22 +msgid "The uploaded file was only partially uploaded" +msgstr "La alŝutita dosiero nur parte alŝutiĝis" + +#: ajax/upload.php:23 +msgid "No file was uploaded" +msgstr "Neniu dosiero estas alŝutita" + +#: ajax/upload.php:24 +msgid "Missing a temporary folder" +msgstr "Mankas tempa dosierujo" + +#: appinfo/app.php:8 +msgid "Files" +msgstr "Dosieroj" + +#: templates/admin.php:5 +msgid "Maximum upload size" +msgstr "Maksimuma alŝutogrando" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:11 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From the web" +msgstr "" + +#: templates/index.php:22 +msgid "Upload" +msgstr "Alŝuti" + +#: templates/index.php:35 +msgid "Nothing in here. Upload something!" +msgstr "Nenio estas ĉi tie. Alŝutu ion!" + +#: templates/index.php:43 +msgid "Name" +msgstr "Nomo" + +#: templates/index.php:45 +msgid "Download" +msgstr "Elŝuti" + +#: templates/index.php:49 +msgid "Size" +msgstr "Grando" + +#: templates/index.php:50 +msgid "Modified" +msgstr "Modifita" + +#: templates/index.php:50 +msgid "Delete" +msgstr "Forigi" + +#: templates/index.php:58 +msgid "Upload too large" +msgstr "Elŝuto tro larĝa" + +#: templates/index.php:60 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" +"La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por " +"dosieralŝutoj en ĉi tiu servilo." + + diff --git a/l10n/eo/gallery.po b/l10n/eo/gallery.po new file mode 100644 index 00000000000..e9f6eea3044 --- /dev/null +++ b/l10n/eo/gallery.po @@ -0,0 +1,52 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Esperanto (http://www.transifex.net/projects/p/owncloud/team/eo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" + + diff --git a/l10n/eo/media.po b/l10n/eo/media.po new file mode 100644 index 00000000000..c7eeddac865 --- /dev/null +++ b/l10n/eo/media.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Esperanto (http://www.transifex.net/projects/p/owncloud/team/eo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:32 +msgid "Music" +msgstr "Muziko" + +#: templates/music.php:3 templates/player.php:13 +msgid "Play" +msgstr "Ludi" + +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 +msgid "Pause" +msgstr "Paŭzi" + +#: templates/music.php:5 +msgid "Previous" +msgstr "Maljena" + +#: templates/music.php:6 templates/player.php:15 +msgid "Next" +msgstr "Jena" + +#: templates/music.php:7 +msgid "Mute" +msgstr "Silentigi" + +#: templates/music.php:8 +msgid "Unmute" +msgstr "Malsilentigi" + +#: templates/music.php:25 +msgid "Rescan Collection" +msgstr "Reskani la aron" + +#: templates/music.php:37 +msgid "Artist" +msgstr "Verkinto" + +#: templates/music.php:38 +msgid "Album" +msgstr "Albumo" + +#: templates/music.php:39 +msgid "Title" +msgstr "Titolo" + + diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po new file mode 100644 index 00000000000..d328f0e09ee --- /dev/null +++ b/l10n/eo/settings.po @@ -0,0 +1,158 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 16:32+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Esperanto (http://www.transifex.net/projects/p/owncloud/team/eo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "" + +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 +msgid "Invalid request" +msgstr "Nevalida peto" + +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "La agordo de OpenID estas ŝanĝita" + +#: ajax/setlanguage.php:14 +msgid "Language changed" +msgstr "La lingvo estas ŝanĝita" + +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "" + +#: templates/apps.php:8 +msgid "Add your application" +msgstr "Aldonu vian aplikaĵon" + +#: templates/apps.php:21 +msgid "Select an App" +msgstr "Elekti aplikaĵon" + +#: templates/apps.php:23 +msgid "-licensed" +msgstr "-permesila" + +#: templates/apps.php:23 +msgid "by" +msgstr "de" + +#: templates/help.php:8 +msgid "Ask a question" +msgstr "Faru demandon" + +#: templates/help.php:20 +msgid "Problems connecting to help database." +msgstr "Problemoj okazis dum konektado al la helpa datumbazo." + +#: templates/help.php:21 +msgid "Go there manually." +msgstr "Iri tien mane." + +#: templates/help.php:29 +msgid "Answer" +msgstr "Respondi" + +#: templates/personal.php:8 +msgid "You use" +msgstr "Vi uzas" + +#: templates/personal.php:8 +msgid "of the available" +msgstr "el la disponeblaj" + +#: templates/personal.php:13 +msgid "Your password got changed" +msgstr "Via pasvorto ŝanĝiĝis" + +#: templates/personal.php:14 +msgid "Unable to change your password" +msgstr "Ne eblis ŝanĝi vian pasvorton" + +#: templates/personal.php:15 +msgid "Current password" +msgstr "Nuna pasvorto" + +#: templates/personal.php:16 +msgid "New password" +msgstr "Nova pasvorto" + +#: templates/personal.php:17 +msgid "show" +msgstr "montri" + +#: templates/personal.php:18 +msgid "Change password" +msgstr "Ŝanĝi la pasvorton" + +#: templates/personal.php:24 +msgid "Email" +msgstr "" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:32 templates/personal.php:33 +msgid "Language" +msgstr "Lingvo" + +#: templates/personal.php:38 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:45 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "" +"uzu ĉi tiun adreson por konektiĝi al via ownCloud per via dosieradministrilo" + +#: templates/users.php:15 templates/users.php:30 +msgid "Name" +msgstr "Nomo" + +#: templates/users.php:16 templates/users.php:31 +msgid "Password" +msgstr "Pasvorto" + +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 +msgid "Groups" +msgstr "Grupoj" + +#: templates/users.php:23 +msgid "Create" +msgstr "Krei" + +#: templates/users.php:33 +msgid "Quota" +msgstr "" + +#: templates/users.php:58 +msgid "Delete" +msgstr "Forigi" + + diff --git a/l10n/es/calendar.po b/l10n/es/calendar.po index 6b98beb81a5..ef0102c6abf 100644 --- a/l10n/es/calendar.po +++ b/l10n/es/calendar.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011. -# , 2011. +# , 2011, 2012. +# , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-17 03:41+0000\n" +"Last-Translator: juanman \n" "Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/owncloud/team/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,347 +19,428 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/createcalendar.php:18 ajax/settimezone.php:19 -#: ajax/updatecalendar.php:18 -msgid "Authentication error" -msgstr "Error de autentificación" +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "Nueva zona horaria:" -#: ajax/editeventform.php:25 -msgid "Wrong calendar" -msgstr "Calendario incorrecto" - -#: ajax/settimezone.php:27 +#: ajax/settimezone.php:22 msgid "Timezone changed" msgstr "Zona horaria cambiada" -#: ajax/settimezone.php:29 +#: ajax/settimezone.php:24 msgid "Invalid request" msgstr "Petición no válida" -#: appinfo/app.php:19 templates/part.eventform.php:27 -#: templates/part.eventinfo.php:18 +#: appinfo/app.php:20 templates/calendar.php:14 +#: templates/part.eventform.php:20 msgid "Calendar" msgstr "Calendario" -#: lib/object.php:292 +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Calendario incorrecto" + +#: lib/app.php:60 lib/object.php:332 msgid "Birthday" msgstr "Cumpleaños" -#: lib/object.php:293 +#: lib/app.php:61 lib/object.php:333 msgid "Business" msgstr "Negocios" -#: lib/object.php:294 +#: lib/app.php:62 lib/object.php:334 msgid "Call" -msgstr "" +msgstr "LLamada" -#: lib/object.php:295 +#: lib/app.php:63 lib/object.php:335 msgid "Clients" msgstr "Clientes" -#: lib/object.php:296 +#: lib/app.php:64 lib/object.php:336 msgid "Deliverer" -msgstr "" +msgstr "Entrega" -#: lib/object.php:297 +#: lib/app.php:65 lib/object.php:337 msgid "Holidays" msgstr "Feriados" -#: lib/object.php:298 +#: lib/app.php:66 lib/object.php:338 msgid "Ideas" msgstr "Ideas" -#: lib/object.php:299 +#: lib/app.php:67 lib/object.php:339 msgid "Journey" msgstr "Viaje" -#: lib/object.php:300 +#: lib/app.php:68 lib/object.php:340 msgid "Jubilee" msgstr "Aniversario" -#: lib/object.php:301 +#: lib/app.php:69 lib/object.php:341 msgid "Meeting" msgstr "Reunión" -#: lib/object.php:302 +#: lib/app.php:70 lib/object.php:342 msgid "Other" msgstr "Otro" -#: lib/object.php:303 +#: lib/app.php:71 lib/object.php:343 msgid "Personal" msgstr "Personal" -#: lib/object.php:304 +#: lib/app.php:72 lib/object.php:344 msgid "Projects" -msgstr "Projectos" +msgstr "Proyectos" -#: lib/object.php:305 +#: lib/app.php:73 lib/object.php:345 msgid "Questions" msgstr "Preguntas" -#: lib/object.php:306 +#: lib/app.php:74 lib/object.php:346 msgid "Work" msgstr "Trabajo" -#: lib/object.php:313 +#: lib/object.php:353 msgid "Does not repeat" msgstr "No se repite" -#: lib/object.php:314 +#: lib/object.php:354 msgid "Daily" msgstr "Diariamente" -#: lib/object.php:315 +#: lib/object.php:355 msgid "Weekly" msgstr "Semanalmente" -#: lib/object.php:316 +#: lib/object.php:356 msgid "Every Weekday" -msgstr "Una vez a la semana" +msgstr "Días de semana laboral" -#: lib/object.php:317 +#: lib/object.php:357 msgid "Bi-Weekly" -msgstr "Dos veces a la semana" +msgstr "Cada 2 semanas" -#: lib/object.php:318 +#: lib/object.php:358 msgid "Monthly" msgstr "Mensualmente" -#: lib/object.php:319 +#: lib/object.php:359 msgid "Yearly" msgstr "Anualmente" -#: lib/object.php:337 -msgid "Not an array" -msgstr "" +#: lib/object.php:366 +msgid "never" +msgstr "nunca" -#: templates/calendar.php:3 -msgid "All day" -msgstr "Todo el día" +#: lib/object.php:367 +msgid "by occurrences" +msgstr "por ocurrencias" -#: templates/calendar.php:32 -msgid "Sunday" -msgstr "Domingo" +#: lib/object.php:368 +msgid "by date" +msgstr "por fecha" -#: templates/calendar.php:32 +#: lib/object.php:375 +msgid "by monthday" +msgstr "por día del mes" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "por día de la semana" + +#: lib/object.php:383 templates/lAfix.php:3 msgid "Monday" msgstr "Lunes" -#: templates/calendar.php:32 +#: lib/object.php:384 templates/lAfix.php:4 msgid "Tuesday" msgstr "Martes" -#: templates/calendar.php:32 +#: lib/object.php:385 templates/lAfix.php:5 msgid "Wednesday" msgstr "Miércoles" -#: templates/calendar.php:32 +#: lib/object.php:386 templates/lAfix.php:6 msgid "Thursday" msgstr "Jueves" -#: templates/calendar.php:32 +#: lib/object.php:387 templates/lAfix.php:7 msgid "Friday" msgstr "Viernes" -#: templates/calendar.php:32 +#: lib/object.php:388 templates/lAfix.php:8 msgid "Saturday" msgstr "Sábado" -#: templates/calendar.php:33 -msgid "Sun." -msgstr "Dom." +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "Domingo" -#: templates/calendar.php:33 -msgid "Mon." -msgstr "Lun." +#: lib/object.php:396 +msgid "events week of month" +msgstr "eventos de la semana del mes" -#: templates/calendar.php:33 -msgid "Tue." -msgstr "Mar." +#: lib/object.php:397 +msgid "first" +msgstr "primer" -#: templates/calendar.php:33 -msgid "Wed." -msgstr "Mie." +#: lib/object.php:398 +msgid "second" +msgstr "segundo" -#: templates/calendar.php:33 -msgid "Thu." -msgstr "Jue." +#: lib/object.php:399 +msgid "third" +msgstr "tercer" -#: templates/calendar.php:33 -msgid "Fri." -msgstr "Vie." +#: lib/object.php:400 +msgid "fourth" +msgstr "cuarto" -#: templates/calendar.php:33 -msgid "Sat." -msgstr "Sáb." +#: lib/object.php:401 +msgid "fifth" +msgstr "quinto" -#: templates/calendar.php:34 +#: lib/object.php:402 +msgid "last" +msgstr "último" + +#: lib/object.php:424 templates/lAfix.php:16 msgid "January" msgstr "Enero" -#: templates/calendar.php:34 +#: lib/object.php:425 templates/lAfix.php:17 msgid "February" msgstr "Febrero" -#: templates/calendar.php:34 +#: lib/object.php:426 templates/lAfix.php:18 msgid "March" msgstr "Marzo" -#: templates/calendar.php:34 +#: lib/object.php:427 templates/lAfix.php:19 msgid "April" msgstr "Abril" -#: templates/calendar.php:34 +#: lib/object.php:428 templates/lAfix.php:20 msgid "May" msgstr "Mayo" -#: templates/calendar.php:34 +#: lib/object.php:429 templates/lAfix.php:21 msgid "June" msgstr "Junio" -#: templates/calendar.php:34 +#: lib/object.php:430 templates/lAfix.php:22 msgid "July" msgstr "Julio" -#: templates/calendar.php:34 +#: lib/object.php:431 templates/lAfix.php:23 msgid "August" msgstr "Agosto" -#: templates/calendar.php:34 +#: lib/object.php:432 templates/lAfix.php:24 msgid "September" msgstr "Septiembre" -#: templates/calendar.php:34 +#: lib/object.php:433 templates/lAfix.php:25 msgid "October" msgstr "Octubre" -#: templates/calendar.php:34 +#: lib/object.php:434 templates/lAfix.php:26 msgid "November" msgstr "Noviembre" -#: templates/calendar.php:34 +#: lib/object.php:435 templates/lAfix.php:27 msgid "December" msgstr "Diciembre" -#: templates/calendar.php:35 -msgid "Jan." -msgstr "Ene." +#: lib/object.php:441 +msgid "by events date" +msgstr "por fecha de los eventos" -#: templates/calendar.php:35 -msgid "Feb." -msgstr "Feb." +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "por día(s) del año" -#: templates/calendar.php:35 -msgid "Mar." -msgstr "Mar." +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "por número(s) de semana" -#: templates/calendar.php:35 -msgid "Apr." -msgstr "Abr." +#: lib/object.php:444 +msgid "by day and month" +msgstr "por día y mes" -#: templates/calendar.php:35 -msgid "May." -msgstr "" +#: lib/object.php:467 +msgid "Not an array" +msgstr "No es una serie" -#: templates/calendar.php:35 -msgid "Jun." -msgstr "Jun." +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "Fecha" -#: templates/calendar.php:35 -msgid "Jul." -msgstr "Jul." +#: lib/search.php:40 +msgid "Cal." +msgstr "Cal." -#: templates/calendar.php:35 -msgid "Aug." -msgstr "Ago." +#: templates/calendar.php:10 +msgid "All day" +msgstr "Todo el día" -#: templates/calendar.php:35 -msgid "Sep." -msgstr "Sep." +#: templates/calendar.php:11 templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "Nuevo calendario" -#: templates/calendar.php:35 -msgid "Oct." -msgstr "Oct." +#: templates/calendar.php:12 +msgid "Missing fields" +msgstr "Los campos que faltan" -#: templates/calendar.php:35 -msgid "Nov." -msgstr "Nov." +#: templates/calendar.php:13 templates/part.eventform.php:3 +msgid "Title" +msgstr "Título" -#: templates/calendar.php:35 -msgid "Dec." -msgstr "Dic." +#: templates/calendar.php:15 +msgid "From Date" +msgstr "Desde la fecha" -#: templates/calendar.php:36 templates/calendar.php:50 -#: templates/calendar.php:116 +#: templates/calendar.php:16 +msgid "From Time" +msgstr "Desde la hora" + +#: templates/calendar.php:17 +msgid "To Date" +msgstr "Hasta la fecha" + +#: templates/calendar.php:18 +msgid "To Time" +msgstr "Hasta la hora" + +#: templates/calendar.php:19 +msgid "The event ends before it starts" +msgstr "El evento termina antes de que comience" + +#: templates/calendar.php:20 +msgid "There was a database fail" +msgstr "Hubo un error en la base de datos" + +#: templates/calendar.php:38 msgid "Week" msgstr "Semana" -#: templates/calendar.php:37 templates/calendar.php:51 -msgid "Weeks" -msgstr "Semanas" - -#: templates/calendar.php:38 -msgid "More before {startdate}" -msgstr "" - #: templates/calendar.php:39 -msgid "More after {enddate}" -msgstr "" - -#: templates/calendar.php:49 -msgid "Day" -msgstr "Día" - -#: templates/calendar.php:52 msgid "Month" msgstr "Mes" -#: templates/calendar.php:53 +#: templates/calendar.php:40 msgid "List" msgstr "Lista" -#: templates/calendar.php:58 +#: templates/calendar.php:46 msgid "Today" msgstr "Hoy" -#: templates/calendar.php:59 +#: templates/calendar.php:47 msgid "Calendars" msgstr "Calendarios" -#: templates/calendar.php:76 templates/calendar.php:94 -msgid "Time" -msgstr "Hora" - -#: templates/calendar.php:169 +#: templates/calendar.php:65 msgid "There was a fail, while parsing the file." msgstr "Hubo un fallo al analizar el archivo." +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "Dom." + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "Lun." + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "Mar." + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "Mié." + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "Jue." + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "Vie." + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "Sáb." + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "Ene." + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "Feb." + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "Mar." + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "Abr." + +#: templates/lAfix.php:32 +msgid "May." +msgstr "May." + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "Jun." + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "Jul." + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "Ago." + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "Sep." + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "Oct." + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "Nov." + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "Dic." + #: templates/part.choosecalendar.php:1 msgid "Choose active calendars" msgstr "Elige los calendarios activos" -#: templates/part.choosecalendar.php:15 -msgid "New Calendar" -msgstr "Nuevo calendario" - #: templates/part.choosecalendar.php:20 #: templates/part.choosecalendar.rowfields.php:4 msgid "CalDav Link" -msgstr "" +msgstr "Enlace a CalDav" #: templates/part.choosecalendar.rowfields.php:4 msgid "Download" msgstr "Descargar" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.eventinfo.php:64 msgid "Edit" msgstr "Editar" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.editevent.php:8 +#: templates/part.editevent.php:9 msgid "Delete" -msgstr "" +msgstr "Eliminar" #: templates/part.editcalendar.php:9 msgid "New calendar" @@ -377,90 +458,181 @@ msgstr "Nombre" msgid "Active" msgstr "Activo" -#: templates/part.editcalendar.php:29 templates/part.eventform.php:88 -#: templates/part.eventinfo.php:58 -msgid "Description" -msgstr "Descripción" - -#: templates/part.editcalendar.php:35 +#: templates/part.editcalendar.php:29 msgid "Calendar color" msgstr "Color del calendario" -#: templates/part.editcalendar.php:41 +#: templates/part.editcalendar.php:42 msgid "Save" msgstr "Guardar" -#: templates/part.editcalendar.php:41 templates/part.editevent.php:7 +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 #: templates/part.newevent.php:6 msgid "Submit" msgstr "Guardar" -#: templates/part.editcalendar.php:42 +#: templates/part.editcalendar.php:43 msgid "Cancel" msgstr "Cancelar" -#: templates/part.editevent.php:1 templates/part.eventinfo.php:1 +#: templates/part.editevent.php:1 msgid "Edit an event" msgstr "Editar un evento" -#: templates/part.eventform.php:3 templates/part.eventinfo.php:4 -msgid "Title" -msgstr "Título" +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "Exportar" #: templates/part.eventform.php:5 msgid "Title of the Event" msgstr "Título del evento" -#: templates/part.eventform.php:9 templates/part.eventinfo.php:9 -msgid "Location" -msgstr "Lugar" - #: templates/part.eventform.php:11 -msgid "Location of the Event" -msgstr "Lugar del Evento" - -#: templates/part.eventform.php:17 templates/part.eventinfo.php:16 msgid "Category" msgstr "Categoría" -#: templates/part.eventform.php:19 +#: templates/part.eventform.php:13 msgid "Select category" msgstr "Seleccionar categoría" -#: templates/part.eventform.php:45 templates/part.eventinfo.php:28 +#: templates/part.eventform.php:37 msgid "All Day Event" msgstr "Todo el día" -#: templates/part.eventform.php:49 templates/part.eventinfo.php:31 +#: templates/part.eventform.php:41 msgid "From" msgstr "Desde" -#: templates/part.eventform.php:57 templates/part.eventinfo.php:38 +#: templates/part.eventform.php:49 msgid "To" msgstr "Hasta" -#: templates/part.eventform.php:65 templates/part.eventinfo.php:44 +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "Opciones avanzadas" + +#: templates/part.eventform.php:61 msgid "Repeat" msgstr "Repetir" -#: templates/part.eventform.php:81 templates/part.eventinfo.php:51 -msgid "Attendees" -msgstr "Asistentes" +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "Avanzado" -#: templates/part.eventform.php:89 +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "Seleccionar días de la semana" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "Seleccionar días" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "y el día del año de los eventos." + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "y el día del mes de los eventos." + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "Seleccionar meses" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "Seleccionar semanas" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "y la semana del año de los eventos." + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "Intervalo" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "Fin" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "ocurrencias" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Lugar" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Lugar del Evento" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Descripción" + +#: templates/part.eventform.php:218 msgid "Description of the Event" msgstr "Descripción del evento" -#: templates/part.eventinfo.php:63 -msgid "Close" -msgstr "Cerrar" +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "Importar un archivo de calendario" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "Elija el calendario" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "Crear un nuevo calendario" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "Nombre del nuevo calendario" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "Importar" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "Importando calendario" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "Calendario importado exitosamente" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "Cerrar diálogo" #: templates/part.newevent.php:1 msgid "Create a new event" msgstr "Crear un nuevo evento" -#: templates/settings.php:11 +#: templates/settings.php:13 msgid "Timezone" msgstr "Zona horaria" +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "Comprobar siempre por cambios en la zona horaria" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "Formato de hora" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24h" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12h" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "Dirección de sincronización de calendario CalDAV:" + diff --git a/l10n/es/contacts.po b/l10n/es/contacts.po index 08f4ae29109..09e0ee8123a 100644 --- a/l10n/es/contacts.po +++ b/l10n/es/contacts.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2011, 2012. +# , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 20:10+0200\n" -"PO-Revision-Date: 2011-09-23 18:11+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" "Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/owncloud/team/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,164 +19,267 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 -#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 -#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 -#: ajax/showsetproperty.php:32 photo.php:32 -msgid "You need to log in." -msgstr "" +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." +msgstr "Error al (des)activar libreta de direcciones." -#: ajax/addcard.php:37 +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "Ocurrió un error al agregar el contacto." + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "No se puede agregar una propiedad vacía." + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "Al menos uno de los campos de direcciones tiene que ser llenado." + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "Error al agregar una propiedad del contacto." + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "Error al agregar la libreta de direcciones." + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "Error al activar la libreta de direcciones." + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "Error al borrar una propiedad del contacto." + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "Error al actualizar una propiedad del contacto." + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "Error al actualizar la libreta de direcciones." + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "Contactos" + +#: lib/app.php:52 msgid "This is not your addressbook." -msgstr "" +msgstr "Esta no es tu agenda de contactos." -#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 -#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 -#: ajax/showsetproperty.php:38 photo.php:39 +#: lib/app.php:61 photo.php:36 msgid "Contact could not be found." -msgstr "" +msgstr "No se pudo encontrar el contacto." -#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 -#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 -#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 -msgid "This is not your contact." -msgstr "" - -#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 -#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 -msgid "vCard could not be read." -msgstr "" - -#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 -#: ajax/showsetproperty.php:62 +#: lib/app.php:89 msgid "Information about vCard is incorrect. Please reload the page." msgstr "" +"La información sobre el vCard es incorrecta. Por favor vuelve a cargar la " +"página." -#: photo.php:53 -msgid "This card is not RFC compatible." -msgstr "" - -#: photo.php:90 -msgid "This card does not contain a photo." -msgstr "" - -#: templates/index.php:8 -msgid "Add Contact" -msgstr "" - -#: templates/part.addcardform.php:5 -msgid "Group" -msgstr "" - -#: templates/part.addcardform.php:12 templates/part.property.php:3 -msgid "Name" -msgstr "" - -#: templates/part.addcardform.php:14 -msgid "Create Contact" -msgstr "" - -#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 msgid "Address" -msgstr "" +msgstr "Dirección" -#: templates/part.addpropertyform.php:5 +#: lib/app.php:102 templates/part.addcardform.php:43 msgid "Telephone" -msgstr "" +msgstr "Teléfono" -#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 msgid "Email" -msgstr "" +msgstr "Correo electrónico" -#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 msgid "Organization" -msgstr "" +msgstr "Organización" -#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +#: lib/app.php:116 lib/app.php:123 msgid "Work" -msgstr "" +msgstr "Trabajo" -#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +#: lib/app.php:117 lib/app.php:121 msgid "Home" -msgstr "" +msgstr "Particular" -#: templates/part.addpropertyform.php:20 templates/part.property.php:48 -#: templates/part.setpropertyform.php:5 -msgid "PO Box" -msgstr "" - -#: templates/part.addpropertyform.php:21 templates/part.property.php:51 -#: templates/part.setpropertyform.php:6 -msgid "Extended" -msgstr "" - -#: templates/part.addpropertyform.php:22 templates/part.property.php:54 -#: templates/part.setpropertyform.php:7 -msgid "Street" -msgstr "" - -#: templates/part.addpropertyform.php:23 templates/part.property.php:57 -#: templates/part.setpropertyform.php:8 -msgid "City" -msgstr "" - -#: templates/part.addpropertyform.php:24 templates/part.property.php:60 -#: templates/part.setpropertyform.php:9 -msgid "Region" -msgstr "" - -#: templates/part.addpropertyform.php:25 templates/part.property.php:63 -#: templates/part.setpropertyform.php:10 -msgid "Zipcode" -msgstr "" - -#: templates/part.addpropertyform.php:26 templates/part.property.php:66 -#: templates/part.setpropertyform.php:11 -msgid "Country" -msgstr "" - -#: templates/part.addpropertyform.php:31 +#: lib/app.php:122 msgid "Mobile" -msgstr "" +msgstr "Móvil" -#: templates/part.addpropertyform.php:33 +#: lib/app.php:124 msgid "Text" -msgstr "" +msgstr "Texto" -#: templates/part.addpropertyform.php:34 +#: lib/app.php:125 msgid "Voice" -msgstr "" +msgstr "Voz" -#: templates/part.addpropertyform.php:35 +#: lib/app.php:126 msgid "Fax" -msgstr "" +msgstr "Fax" -#: templates/part.addpropertyform.php:36 +#: lib/app.php:127 msgid "Video" -msgstr "" +msgstr "Video" -#: templates/part.addpropertyform.php:37 +#: lib/app.php:128 msgid "Pager" -msgstr "" +msgstr "Localizador" -#: templates/part.details.php:33 +#: lib/search.php:22 +msgid "Contact" +msgstr "Contacto" + +#: photo.php:42 +msgid "This is not your contact." +msgstr "Este no es tu contacto." + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Agregar contacto" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "Libretas de direcciones" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "Libreta de direcciones" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Nombre" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "Tipo" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "Código postal" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Extendido" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Calle" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Ciudad" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Región" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "Código Postal" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "País" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Crear contacto" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "Elige libreta de direcciones activa" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "Nueva libreta de direcciones" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "Link Card Dav" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "Descargar" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Editar" + +#: templates/part.chooseaddressbook.rowfields.php:5 msgid "Delete" -msgstr "" +msgstr "Borrar" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "Descargar contacto" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "Eliminar contacto" #: templates/part.details.php:34 -msgid "Add Property" -msgstr "" +msgid "Add" +msgstr "Añadir" -#: templates/part.property.php:9 +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "Nueva libreta de direcciones" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "Editar libreta de direcciones" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "Nombre a mostrar" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "Activo" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "Guardar" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "Aceptar" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "Cancelar" + +#: templates/part.property.php:3 msgid "Birthday" -msgstr "" +msgstr "Cumpleaños" -#: templates/part.property.php:29 +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "Preferido" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 msgid "Phone" -msgstr "" +msgstr "Teléfono" -#: templates/part.setpropertyform.php:17 -msgid "Edit" -msgstr "" +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "Actualizar" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "Dirección de sincronización CardDAV:" diff --git a/l10n/es/core.po b/l10n/es/core.po index 2fe3fcaa783..fac043ed1e2 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2011, 2012. # , 2011. -# , 2011. +# , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-04 17:01+0000\n" -"Last-Translator: xsergiolpx \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-11 19:08+0000\n" +"Last-Translator: juanman \n" "Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/owncloud/team/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +20,52 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "Restablecer contraseña de ownCloud" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "Utiliza el siguiente enlace para restablecer tu contraseña: {link}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" +"Recibirás un enlace por correo electrónico para restablecer tu contraseña" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Pedido" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "¡Fallo al iniciar sesión!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Nombre de usuario" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Solicitar restablecimiento" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Tu contraseña se ha restablecido" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "A la página de inicio de sesión" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Nueva contraseña" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Restablecer contraseña" + #: strings.php:5 msgid "Personal" msgstr "Personal" @@ -47,54 +94,50 @@ msgstr "No se encontró la nube" msgid "Create an admin account" msgstr "Crea una cuenta de administrador" -#: templates/installation.php:21 -msgid "Username" -msgstr "Nombre de usuario" - -#: templates/installation.php:22 +#: templates/installation.php:26 templates/login.php:12 msgid "Password" msgstr "Contraseña" -#: templates/installation.php:27 -msgid "Configure the database" -msgstr "Configurar la base de datos" - -#: templates/installation.php:32 templates/installation.php:43 -#: templates/installation.php:53 -msgid "will be used" -msgstr "serán utilizados" - -#: templates/installation.php:64 -msgid "Database user" -msgstr "Usuario de la base de datos" - -#: templates/installation.php:65 -msgid "Database password" -msgstr "Contraseña de la base de datos" - -#: templates/installation.php:66 -msgid "Database name" -msgstr "Nombre de la base de datos" - -#: templates/installation.php:72 +#: templates/installation.php:32 msgid "Advanced" msgstr "Avanzado" -#: templates/installation.php:75 -msgid "Database host" -msgstr "Host de la base de datos" - -#: templates/installation.php:76 +#: templates/installation.php:34 msgid "Data folder" msgstr "Directorio de almacenamiento" +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Configurar la base de datos" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "serán utilizados" + #: templates/installation.php:79 +msgid "Database user" +msgstr "Usuario de la base de datos" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Contraseña de la base de datos" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Nombre de la base de datos" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Host de la base de datos" + +#: templates/installation.php:98 msgid "Finish setup" msgstr "Completar la instalación" #: templates/layout.guest.php:35 -msgid "gives you freedom and control over your own data" -msgstr "te da la libertad y el control sobre tus propios datos" +msgid "web services under your control" +msgstr "servicios web bajo tu control" #: templates/layout.user.php:34 msgid "Log out" @@ -104,38 +147,22 @@ msgstr "Salir" msgid "Settings" msgstr "Ajustes" -#: templates/login.php:4 +#: templates/login.php:5 msgid "Lost your password?" msgstr "¿Has perdido tu contraseña?" -#: templates/login.php:9 templates/login.php:13 +#: templates/login.php:15 msgid "remember" msgstr "recuérdame" +#: templates/login.php:16 +msgid "Log in" +msgstr "Entrar" + #: templates/logout.php:1 msgid "You are logged out." msgstr "Has cerrado sesión." -#: templates/lostpassword.php:3 -msgid "You will receive a link to reset your password via Email." -msgstr "Recibirás un link para restablecer tu contraseña vía Email." - -#: templates/lostpassword.php:5 -msgid "Requested" -msgstr "Solicitado" - -#: templates/lostpassword.php:8 -msgid "Login failed!" -msgstr "¡No se pudo iniciar sesión!" - -#: templates/lostpassword.php:10 -msgid "Username or Email" -msgstr "Nombre de usuario o Email" - -#: templates/lostpassword.php:11 -msgid "Request reset" -msgstr "Solicitar restablecimiento" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" @@ -144,16 +171,4 @@ msgstr "anterior" msgid "next" msgstr "siguiente" -#: templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "Tu contraseña se ha restablecido" - -#: templates/resetpassword.php:6 -msgid "New password" -msgstr "Nueva contraseña" - -#: templates/resetpassword.php:7 -msgid "Reset password" -msgstr "Restablecer contraseña" - diff --git a/l10n/es/files.po b/l10n/es/files.po index 2c2bed5cdc4..f58a6b308f5 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011. +# , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-11 18:52+0000\n" +"Last-Translator: xsergiolpx \n" "Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/owncloud/team/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,33 +18,37 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:24 +#: ajax/upload.php:19 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "No hubo ningún error, el archivo se subió con éxito" -#: ajax/upload.php:25 +#: ajax/upload.php:20 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "" +"El archivo que intentas subir sobrepasa el tamaño definido por la variable " +"upload_max_filesize en php.ini" -#: ajax/upload.php:26 +#: ajax/upload.php:21 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" +"El archivo que intentas subir sobrepasa el tamaño definido por la variable " +"MAX_FILE_SIZE especificada en el formulario HTML" -#: ajax/upload.php:27 +#: ajax/upload.php:22 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "El archivo que intentas subir solo se subió parcialmente" -#: ajax/upload.php:28 +#: ajax/upload.php:23 msgid "No file was uploaded" -msgstr "" +msgstr "No se subió ningún archivo" -#: ajax/upload.php:29 +#: ajax/upload.php:24 msgid "Missing a temporary folder" -msgstr "" +msgstr "Falta un directorio temporal" -#: appinfo/app.php:7 +#: appinfo/app.php:8 msgid "Files" msgstr "Archivos" @@ -52,43 +56,55 @@ msgstr "Archivos" msgid "Maximum upload size" msgstr "Tamaño máximo de subida" +#: templates/index.php:7 +msgid "New" +msgstr "Nuevo" + #: templates/index.php:10 +msgid "Text file" +msgstr "Archivo de texto" + +#: templates/index.php:11 +msgid "Folder" +msgstr "Carpeta" + +#: templates/index.php:12 +msgid "From the web" +msgstr "Desde la web" + +#: templates/index.php:22 msgid "Upload" msgstr "Subir" -#: templates/index.php:17 -msgid "New Folder" -msgstr "Crear Carpeta" - -#: templates/index.php:31 +#: templates/index.php:35 msgid "Nothing in here. Upload something!" msgstr "Aquí no hay nada. ¡Sube algo!" -#: templates/index.php:39 +#: templates/index.php:43 msgid "Name" msgstr "Nombre" -#: templates/index.php:41 +#: templates/index.php:45 msgid "Download" msgstr "Descargar" -#: templates/index.php:45 +#: templates/index.php:49 msgid "Size" msgstr "Tamaño" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Modified" msgstr "Modificado" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Delete" msgstr "Eliminado" -#: templates/index.php:54 +#: templates/index.php:58 msgid "Upload too large" msgstr "El archivo es demasiado grande" -#: templates/index.php:56 +#: templates/index.php:60 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." diff --git a/l10n/es/gallery.po b/l10n/es/gallery.po new file mode 100644 index 00000000000..602efbef7db --- /dev/null +++ b/l10n/es/gallery.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2012. +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-24 19:28+0000\n" +"Last-Translator: juanman \n" +"Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/owncloud/team/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "Galería" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "Escaneando directorios" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "No se encontraron fotos" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "Creando miniaturas" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "Quieres eliminar el álbum" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "Introduce el nuevo nombre de la galería" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "Refrescar" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "Atrás" + + diff --git a/l10n/es/media.po b/l10n/es/media.po index 3a159198a26..e03322be6ae 100644 --- a/l10n/es/media.po +++ b/l10n/es/media.po @@ -2,14 +2,15 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# Translators: # , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-08-23 11:09+0200\n" -"PO-Revision-Date: 2011-08-21 22:27+0000\n" -"Last-Translator: xsergiolpx \n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/owncloud/team/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,15 +18,15 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: appinfo/app.php:31 +#: appinfo/app.php:32 msgid "Music" msgstr "Música" -#: templates/music.php:3 +#: templates/music.php:3 templates/player.php:13 msgid "Play" msgstr "Reproducir" -#: templates/music.php:4 templates/music.php:30 +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 msgid "Pause" msgstr "Pausa" @@ -33,7 +34,7 @@ msgstr "Pausa" msgid "Previous" msgstr "Anterior" -#: templates/music.php:6 +#: templates/music.php:6 templates/player.php:15 msgid "Next" msgstr "Siguiente" @@ -45,11 +46,7 @@ msgstr "Silenciar" msgid "Unmute" msgstr "Sonar" -#: templates/music.php:28 -msgid "Songs scanned" -msgstr "Canciones encontradas" - -#: templates/music.php:29 +#: templates/music.php:25 msgid "Rescan Collection" msgstr "Buscar música nueva" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 27e14d97249..e8dc30bb7ee 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -2,15 +2,18 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # -# , 2011. +# Translators: +# , 2011, 2012. +# , 2011. # , 2011. +# , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-08-28 01:11+0200\n" -"PO-Revision-Date: 2011-08-24 23:20+0000\n" -"Last-Translator: xsergiolpx \n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-17 03:40+0000\n" +"Last-Translator: juanman \n" "Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/owncloud/team/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +21,30 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/openid.php:13 ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Error de autentificación" +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "Email actualizado" -#: ajax/openid.php:21 -msgid "OpenID Changed" -msgstr "OpenID Cambiado" - -#: ajax/openid.php:23 ajax/setlanguage.php:23 +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 msgid "Invalid request" msgstr "Solicitud no válida" -#: ajax/setlanguage.php:21 +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID Cambiado" + +#: ajax/setlanguage.php:14 msgid "Language changed" msgstr "Idioma cambiado" +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "Español" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "Nivel de log" + #: templates/apps.php:8 msgid "Add your application" msgstr "Añadir tu aplicación" @@ -54,15 +65,15 @@ msgstr "por" msgid "Ask a question" msgstr "Hacer una pregunta" -#: templates/help.php:17 +#: templates/help.php:20 msgid "Problems connecting to help database." msgstr "Problemas al conectar con la base de datos de ayuda." -#: templates/help.php:18 +#: templates/help.php:21 msgid "Go there manually." msgstr "Ir manualmente" -#: templates/help.php:26 +#: templates/help.php:29 msgid "Answer" msgstr "Respuesta" @@ -78,6 +89,10 @@ msgstr "del total disponible de" msgid "Your password got changed" msgstr "Tu contraseña ha sido cambiada" +#: templates/personal.php:14 +msgid "Unable to change your password" +msgstr "No se pudo cambiar su contraseña" + #: templates/personal.php:15 msgid "Current password" msgstr "Contraseña actual" @@ -95,35 +110,52 @@ msgid "Change password" msgstr "Cambiar contraseña" #: templates/personal.php:24 +msgid "Email" +msgstr "Email" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "Tu dirección de email" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "Escribe una dirección de email para restablecer la contraseña" + +#: templates/personal.php:32 templates/personal.php:33 msgid "Language" msgstr "Idioma" -#: templates/personal.php:30 -msgid "Help translating" -msgstr "Ayuda a traducir" +#: templates/personal.php:38 +msgid "Help translate" +msgstr "Ayudar a traducir" -#: templates/personal.php:36 +#: templates/personal.php:45 msgid "use this address to connect to your ownCloud in your file manager" msgstr "" -"usar esta dirección para conectar tu ownCloud en tu explorador de archivos" +"utiliza esta dirección para conectar a tu ownCloud desde tu explorador de " +"archivos" -#: templates/users.php:16 +#: templates/users.php:15 templates/users.php:30 msgid "Name" msgstr "Nombre" -#: templates/users.php:17 +#: templates/users.php:16 templates/users.php:31 msgid "Password" msgstr "Contraseña" -#: templates/users.php:18 templates/users.php:36 +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 msgid "Groups" msgstr "Grupos" -#: templates/users.php:24 +#: templates/users.php:23 msgid "Create" msgstr "Crear" -#: templates/users.php:48 +#: templates/users.php:33 +msgid "Quota" +msgstr "Cuota" + +#: templates/users.php:58 msgid "Delete" msgstr "Eliminar" diff --git a/l10n/et_EE/calendar.po b/l10n/et_EE/calendar.po index 8f1f95b962a..d012d5a9e46 100644 --- a/l10n/et_EE/calendar.po +++ b/l10n/et_EE/calendar.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Rivo Zängov , 2011. +# Rivo Zängov , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-18 11:14+0000\n" +"Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.net/projects/p/owncloud/team/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,351 +18,432 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/createcalendar.php:18 ajax/settimezone.php:19 -#: ajax/updatecalendar.php:18 -msgid "Authentication error" -msgstr "Autentimise viga" +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "Uus ajavöönd:" -#: ajax/editeventform.php:25 -msgid "Wrong calendar" -msgstr "" - -#: ajax/settimezone.php:27 +#: ajax/settimezone.php:22 msgid "Timezone changed" msgstr "Ajavöönd on muudetud" -#: ajax/settimezone.php:29 +#: ajax/settimezone.php:24 msgid "Invalid request" msgstr "Vigane päring" -#: appinfo/app.php:19 templates/part.eventform.php:27 -#: templates/part.eventinfo.php:18 +#: appinfo/app.php:20 templates/calendar.php:14 +#: templates/part.eventform.php:20 msgid "Calendar" msgstr "Kalender" -#: lib/object.php:292 +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Vale kalender" + +#: lib/app.php:60 lib/object.php:332 msgid "Birthday" -msgstr "" +msgstr "Sünnipäev" -#: lib/object.php:293 +#: lib/app.php:61 lib/object.php:333 msgid "Business" -msgstr "" +msgstr "Äri" -#: lib/object.php:294 +#: lib/app.php:62 lib/object.php:334 msgid "Call" -msgstr "" +msgstr "Helista" -#: lib/object.php:295 +#: lib/app.php:63 lib/object.php:335 msgid "Clients" -msgstr "" +msgstr "Kliendid" -#: lib/object.php:296 +#: lib/app.php:64 lib/object.php:336 msgid "Deliverer" -msgstr "" +msgstr "Kohaletoimetaja" -#: lib/object.php:297 +#: lib/app.php:65 lib/object.php:337 msgid "Holidays" -msgstr "" +msgstr "Pühad" -#: lib/object.php:298 +#: lib/app.php:66 lib/object.php:338 msgid "Ideas" -msgstr "" +msgstr "Ideed" -#: lib/object.php:299 +#: lib/app.php:67 lib/object.php:339 msgid "Journey" -msgstr "" +msgstr "Reis" -#: lib/object.php:300 +#: lib/app.php:68 lib/object.php:340 msgid "Jubilee" -msgstr "" +msgstr "Juubel" -#: lib/object.php:301 +#: lib/app.php:69 lib/object.php:341 msgid "Meeting" -msgstr "" +msgstr "Kohtumine" -#: lib/object.php:302 +#: lib/app.php:70 lib/object.php:342 msgid "Other" -msgstr "" +msgstr "Muu" -#: lib/object.php:303 +#: lib/app.php:71 lib/object.php:343 msgid "Personal" -msgstr "" +msgstr "Isiklik" -#: lib/object.php:304 +#: lib/app.php:72 lib/object.php:344 msgid "Projects" -msgstr "" +msgstr "Projektid" -#: lib/object.php:305 +#: lib/app.php:73 lib/object.php:345 msgid "Questions" -msgstr "" +msgstr "Küsimused" -#: lib/object.php:306 +#: lib/app.php:74 lib/object.php:346 msgid "Work" -msgstr "" +msgstr "Töö" -#: lib/object.php:313 +#: lib/object.php:353 msgid "Does not repeat" msgstr "Ei kordu" -#: lib/object.php:314 +#: lib/object.php:354 msgid "Daily" msgstr "Iga päev" -#: lib/object.php:315 +#: lib/object.php:355 msgid "Weekly" msgstr "Iga nädal" -#: lib/object.php:316 +#: lib/object.php:356 msgid "Every Weekday" msgstr "Igal nädalapäeval" -#: lib/object.php:317 +#: lib/object.php:357 msgid "Bi-Weekly" msgstr "Üle nädala" -#: lib/object.php:318 +#: lib/object.php:358 msgid "Monthly" msgstr "Igal kuul" -#: lib/object.php:319 +#: lib/object.php:359 msgid "Yearly" msgstr "Igal aastal" -#: lib/object.php:337 -msgid "Not an array" -msgstr "" +#: lib/object.php:366 +msgid "never" +msgstr "mitte kunagi" -#: templates/calendar.php:3 -msgid "All day" -msgstr "Kogu päev" +#: lib/object.php:367 +msgid "by occurrences" +msgstr "toimumiskordade järgi" -#: templates/calendar.php:32 -msgid "Sunday" -msgstr "Pühapäev" +#: lib/object.php:368 +msgid "by date" +msgstr "kuupäeva järgi" -#: templates/calendar.php:32 +#: lib/object.php:375 +msgid "by monthday" +msgstr "kuu päeva järgi" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "nädalapäeva järgi" + +#: lib/object.php:383 templates/lAfix.php:3 msgid "Monday" msgstr "Esmaspäev" -#: templates/calendar.php:32 +#: lib/object.php:384 templates/lAfix.php:4 msgid "Tuesday" msgstr "Teisipäev" -#: templates/calendar.php:32 +#: lib/object.php:385 templates/lAfix.php:5 msgid "Wednesday" msgstr "Kolmapäev" -#: templates/calendar.php:32 +#: lib/object.php:386 templates/lAfix.php:6 msgid "Thursday" msgstr "Neljapäev" -#: templates/calendar.php:32 +#: lib/object.php:387 templates/lAfix.php:7 msgid "Friday" msgstr "Reede" -#: templates/calendar.php:32 +#: lib/object.php:388 templates/lAfix.php:8 msgid "Saturday" msgstr "Laupäev" -#: templates/calendar.php:33 -msgid "Sun." -msgstr "Pü." +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "Pühapäev" -#: templates/calendar.php:33 -msgid "Mon." -msgstr "Esm." +#: lib/object.php:396 +msgid "events week of month" +msgstr "ürituse kuu nädal" -#: templates/calendar.php:33 -msgid "Tue." -msgstr "Teisip." +#: lib/object.php:397 +msgid "first" +msgstr "esimene" -#: templates/calendar.php:33 -msgid "Wed." -msgstr "Kolmap." +#: lib/object.php:398 +msgid "second" +msgstr "teine" -#: templates/calendar.php:33 -msgid "Thu." -msgstr "Neljap." +#: lib/object.php:399 +msgid "third" +msgstr "kolmas" -#: templates/calendar.php:33 -msgid "Fri." -msgstr "Reede" +#: lib/object.php:400 +msgid "fourth" +msgstr "neljas" -#: templates/calendar.php:33 -msgid "Sat." -msgstr "Laup." +#: lib/object.php:401 +msgid "fifth" +msgstr "viies" -#: templates/calendar.php:34 +#: lib/object.php:402 +msgid "last" +msgstr "viimane" + +#: lib/object.php:424 templates/lAfix.php:16 msgid "January" msgstr "Jaanuar" -#: templates/calendar.php:34 +#: lib/object.php:425 templates/lAfix.php:17 msgid "February" msgstr "Veebruar" -#: templates/calendar.php:34 +#: lib/object.php:426 templates/lAfix.php:18 msgid "March" msgstr "Märts" -#: templates/calendar.php:34 +#: lib/object.php:427 templates/lAfix.php:19 msgid "April" msgstr "Aprill" -#: templates/calendar.php:34 +#: lib/object.php:428 templates/lAfix.php:20 msgid "May" msgstr "Mai" -#: templates/calendar.php:34 +#: lib/object.php:429 templates/lAfix.php:21 msgid "June" msgstr "Juuni" -#: templates/calendar.php:34 +#: lib/object.php:430 templates/lAfix.php:22 msgid "July" msgstr "Juuli" -#: templates/calendar.php:34 +#: lib/object.php:431 templates/lAfix.php:23 msgid "August" msgstr "August" -#: templates/calendar.php:34 +#: lib/object.php:432 templates/lAfix.php:24 msgid "September" msgstr "September" -#: templates/calendar.php:34 +#: lib/object.php:433 templates/lAfix.php:25 msgid "October" msgstr "Oktoober" -#: templates/calendar.php:34 +#: lib/object.php:434 templates/lAfix.php:26 msgid "November" msgstr "November" -#: templates/calendar.php:34 +#: lib/object.php:435 templates/lAfix.php:27 msgid "December" msgstr "Detsember" -#: templates/calendar.php:35 -msgid "Jan." -msgstr "Jan." +#: lib/object.php:441 +msgid "by events date" +msgstr "ürituste kuupäeva järgi" -#: templates/calendar.php:35 -msgid "Feb." -msgstr "Veebr." +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "aasta päeva(de) järgi" -#: templates/calendar.php:35 -msgid "Mar." -msgstr "Märts" +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "nädala numbri(te) järgi" -#: templates/calendar.php:35 -msgid "Apr." -msgstr "Apr." +#: lib/object.php:444 +msgid "by day and month" +msgstr "kuu ja päeva järgi" -#: templates/calendar.php:35 -msgid "May." -msgstr "" +#: lib/object.php:467 +msgid "Not an array" +msgstr "Pole andmemassiiv" -#: templates/calendar.php:35 -msgid "Jun." -msgstr "Jun." +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "Kuupäev" -#: templates/calendar.php:35 -msgid "Jul." -msgstr "Jul." +#: lib/search.php:40 +msgid "Cal." +msgstr "Kal." -#: templates/calendar.php:35 -msgid "Aug." -msgstr "Aug." +#: templates/calendar.php:10 +msgid "All day" +msgstr "Kogu päev" -#: templates/calendar.php:35 -msgid "Sep." -msgstr "Sept." +#: templates/calendar.php:11 templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "Uus kalender" -#: templates/calendar.php:35 -msgid "Oct." -msgstr "Okt." +#: templates/calendar.php:12 +msgid "Missing fields" +msgstr "Puuduvad väljad" -#: templates/calendar.php:35 -msgid "Nov." -msgstr "Nov." +#: templates/calendar.php:13 templates/part.eventform.php:3 +msgid "Title" +msgstr "Pealkiri" -#: templates/calendar.php:35 -msgid "Dec." -msgstr "Dets." +#: templates/calendar.php:15 +msgid "From Date" +msgstr "Alates kuupäevast" -#: templates/calendar.php:36 templates/calendar.php:50 -#: templates/calendar.php:116 +#: templates/calendar.php:16 +msgid "From Time" +msgstr "Alates kellaajast" + +#: templates/calendar.php:17 +msgid "To Date" +msgstr "Kuni kuupäevani" + +#: templates/calendar.php:18 +msgid "To Time" +msgstr "Kuni kellaajani" + +#: templates/calendar.php:19 +msgid "The event ends before it starts" +msgstr "Üritus lõpeb enne, kui see algab" + +#: templates/calendar.php:20 +msgid "There was a database fail" +msgstr "Tekkis andmebaasi viga" + +#: templates/calendar.php:38 msgid "Week" msgstr "Nädal" -#: templates/calendar.php:37 templates/calendar.php:51 -msgid "Weeks" -msgstr "Nädalat" - -#: templates/calendar.php:38 -msgid "More before {startdate}" -msgstr "" - #: templates/calendar.php:39 -msgid "More after {enddate}" -msgstr "" - -#: templates/calendar.php:49 -msgid "Day" -msgstr "Päev" - -#: templates/calendar.php:52 msgid "Month" msgstr "Kuu" -#: templates/calendar.php:53 +#: templates/calendar.php:40 msgid "List" -msgstr "" +msgstr "Nimekiri" -#: templates/calendar.php:58 +#: templates/calendar.php:46 msgid "Today" msgstr "Täna" -#: templates/calendar.php:59 +#: templates/calendar.php:47 msgid "Calendars" msgstr "Kalendrid" -#: templates/calendar.php:76 templates/calendar.php:94 -msgid "Time" -msgstr "Kellaaeg" - -#: templates/calendar.php:169 +#: templates/calendar.php:65 msgid "There was a fail, while parsing the file." msgstr "Faili parsimisel tekkis viga." +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "Püh." + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "Esm." + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "Teisip." + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "Kolmap." + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "Meljap." + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "Reede" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "Laup." + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "Jan." + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "Veebr." + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "Mär." + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "Apr." + +#: templates/lAfix.php:32 +msgid "May." +msgstr "Mai" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "Jun." + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "Jul." + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "Aug." + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "Sept." + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "Okt." + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "Nov." + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "Dets." + #: templates/part.choosecalendar.php:1 msgid "Choose active calendars" msgstr "Vali aktiivsed kalendrid" -#: templates/part.choosecalendar.php:15 -msgid "New Calendar" -msgstr "" - #: templates/part.choosecalendar.php:20 #: templates/part.choosecalendar.rowfields.php:4 msgid "CalDav Link" -msgstr "" +msgstr "CalDav Link" #: templates/part.choosecalendar.rowfields.php:4 msgid "Download" msgstr "Lae alla" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.eventinfo.php:64 msgid "Edit" msgstr "Muuda" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.editevent.php:8 +#: templates/part.editevent.php:9 msgid "Delete" -msgstr "" +msgstr "Kustuta" #: templates/part.editcalendar.php:9 msgid "New calendar" -msgstr "" +msgstr "Uus kalender" #: templates/part.editcalendar.php:9 msgid "Edit calendar" @@ -376,90 +457,181 @@ msgstr "Näidatav nimi" msgid "Active" msgstr "Aktiivne" -#: templates/part.editcalendar.php:29 templates/part.eventform.php:88 -#: templates/part.eventinfo.php:58 -msgid "Description" -msgstr "Kirjeldus" - -#: templates/part.editcalendar.php:35 +#: templates/part.editcalendar.php:29 msgid "Calendar color" msgstr "Kalendri värv" -#: templates/part.editcalendar.php:41 +#: templates/part.editcalendar.php:42 msgid "Save" -msgstr "" +msgstr "Salvesta" -#: templates/part.editcalendar.php:41 templates/part.editevent.php:7 +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 #: templates/part.newevent.php:6 msgid "Submit" msgstr "OK" -#: templates/part.editcalendar.php:42 +#: templates/part.editcalendar.php:43 msgid "Cancel" -msgstr "" +msgstr "Loobu" -#: templates/part.editevent.php:1 templates/part.eventinfo.php:1 +#: templates/part.editevent.php:1 msgid "Edit an event" msgstr "Muuda sündmust" -#: templates/part.eventform.php:3 templates/part.eventinfo.php:4 -msgid "Title" -msgstr "Pealkiri" +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "Ekspordi" #: templates/part.eventform.php:5 msgid "Title of the Event" msgstr "Sündmuse pealkiri" -#: templates/part.eventform.php:9 templates/part.eventinfo.php:9 -msgid "Location" -msgstr "Asukoht" - #: templates/part.eventform.php:11 -msgid "Location of the Event" -msgstr "Sündmuse toimumiskoht" - -#: templates/part.eventform.php:17 templates/part.eventinfo.php:16 msgid "Category" msgstr "Kategooria" -#: templates/part.eventform.php:19 +#: templates/part.eventform.php:13 msgid "Select category" -msgstr "" +msgstr "Salvesta kategooria" -#: templates/part.eventform.php:45 templates/part.eventinfo.php:28 +#: templates/part.eventform.php:37 msgid "All Day Event" msgstr "Kogu päeva sündmus" -#: templates/part.eventform.php:49 templates/part.eventinfo.php:31 +#: templates/part.eventform.php:41 msgid "From" msgstr "Alates" -#: templates/part.eventform.php:57 templates/part.eventinfo.php:38 +#: templates/part.eventform.php:49 msgid "To" msgstr "Kuni" -#: templates/part.eventform.php:65 templates/part.eventinfo.php:44 +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "Lisavalikud" + +#: templates/part.eventform.php:61 msgid "Repeat" msgstr "Korda" -#: templates/part.eventform.php:81 templates/part.eventinfo.php:51 -msgid "Attendees" -msgstr "Osalejad" +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "Täpsem" -#: templates/part.eventform.php:89 +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "Vali nädalapäevad" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "Vali päevad" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "ja ürituse päev aastas." + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "ja ürituse päev kuus." + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "Vali kuud" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "Vali nädalad" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "ja ürituse nädal aastas." + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "Intervall" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "Lõpp" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "toimumiskordi" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Asukoht" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Sündmuse toimumiskoht" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Kirjeldus" + +#: templates/part.eventform.php:218 msgid "Description of the Event" msgstr "Sündmuse kirjeldus" -#: templates/part.eventinfo.php:63 -msgid "Close" -msgstr "Sulge" +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "Impordi kalendrifail" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "Palun vali kalender" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "loo uus kalender" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "Uue kalendri nimi" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "Impordi" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "Kalendri importimine" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "Kalender on imporditud" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "Sulge dialoogiaken" #: templates/part.newevent.php:1 msgid "Create a new event" msgstr "Loo sündmus" -#: templates/settings.php:11 +#: templates/settings.php:13 msgid "Timezone" msgstr "Ajavöönd" +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "Kontrolli alati muudatusi ajavööndis" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "Aja vorming" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24h" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12h" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "Kalendri CalDAV sünkroniseerimise aadress:" + diff --git a/l10n/et_EE/contacts.po b/l10n/et_EE/contacts.po index 119d01b09f0..3f416bd09f1 100644 --- a/l10n/et_EE/contacts.po +++ b/l10n/et_EE/contacts.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Rivo Zängov , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 20:10+0200\n" -"PO-Revision-Date: 2011-09-23 18:11+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" "Language-Team: Estonian (Estonia) (http://www.transifex.net/projects/p/owncloud/team/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,164 +18,265 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 -#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 -#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 -#: ajax/showsetproperty.php:32 photo.php:32 -msgid "You need to log in." -msgstr "" +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." +msgstr "Viga aadressiraamatu (de)aktiveerimisel." -#: ajax/addcard.php:37 +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "Konktakti lisamisel tekkis viga." + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "Tühja omadust ei saa lisada." + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "Vähemalt üks aadressiväljadest peab olema täidetud." + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "Viga konktakti korralikul lisamisel." + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "Viga aadressiraamatu lisamisel." + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "Viga aadressiraamatu aktiveerimisel." + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "Viga konktaki korralikul kustutamisel." + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "Viga konktaki korralikul uuendamisel." + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "Viga aadressiraamatu uuendamisel." + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "Kontaktid" + +#: lib/app.php:52 msgid "This is not your addressbook." -msgstr "" +msgstr "See pole sinu aadressiraamat." -#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 -#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 -#: ajax/showsetproperty.php:38 photo.php:39 +#: lib/app.php:61 photo.php:36 msgid "Contact could not be found." -msgstr "" +msgstr "Kontakti ei leitud." -#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 -#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 -#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 -msgid "This is not your contact." -msgstr "" - -#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 -#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 -msgid "vCard could not be read." -msgstr "" - -#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 -#: ajax/showsetproperty.php:62 +#: lib/app.php:89 msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" +msgstr "Visiitkaardi info pole korrektne. Palun lae leht uuesti." -#: photo.php:53 -msgid "This card is not RFC compatible." -msgstr "" - -#: photo.php:90 -msgid "This card does not contain a photo." -msgstr "" - -#: templates/index.php:8 -msgid "Add Contact" -msgstr "" - -#: templates/part.addcardform.php:5 -msgid "Group" -msgstr "" - -#: templates/part.addcardform.php:12 templates/part.property.php:3 -msgid "Name" -msgstr "" - -#: templates/part.addcardform.php:14 -msgid "Create Contact" -msgstr "" - -#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 msgid "Address" -msgstr "" +msgstr "Aadress" -#: templates/part.addpropertyform.php:5 +#: lib/app.php:102 templates/part.addcardform.php:43 msgid "Telephone" -msgstr "" +msgstr "Telefon" -#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 msgid "Email" -msgstr "" +msgstr "E-post" -#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 msgid "Organization" -msgstr "" +msgstr "Organisatsioon" -#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +#: lib/app.php:116 lib/app.php:123 msgid "Work" -msgstr "" +msgstr "Töö" -#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +#: lib/app.php:117 lib/app.php:121 msgid "Home" -msgstr "" +msgstr "Kodu" -#: templates/part.addpropertyform.php:20 templates/part.property.php:48 -#: templates/part.setpropertyform.php:5 -msgid "PO Box" -msgstr "" - -#: templates/part.addpropertyform.php:21 templates/part.property.php:51 -#: templates/part.setpropertyform.php:6 -msgid "Extended" -msgstr "" - -#: templates/part.addpropertyform.php:22 templates/part.property.php:54 -#: templates/part.setpropertyform.php:7 -msgid "Street" -msgstr "" - -#: templates/part.addpropertyform.php:23 templates/part.property.php:57 -#: templates/part.setpropertyform.php:8 -msgid "City" -msgstr "" - -#: templates/part.addpropertyform.php:24 templates/part.property.php:60 -#: templates/part.setpropertyform.php:9 -msgid "Region" -msgstr "" - -#: templates/part.addpropertyform.php:25 templates/part.property.php:63 -#: templates/part.setpropertyform.php:10 -msgid "Zipcode" -msgstr "" - -#: templates/part.addpropertyform.php:26 templates/part.property.php:66 -#: templates/part.setpropertyform.php:11 -msgid "Country" -msgstr "" - -#: templates/part.addpropertyform.php:31 +#: lib/app.php:122 msgid "Mobile" -msgstr "" +msgstr "Mobiil" -#: templates/part.addpropertyform.php:33 +#: lib/app.php:124 msgid "Text" -msgstr "" +msgstr "Tekst" -#: templates/part.addpropertyform.php:34 +#: lib/app.php:125 msgid "Voice" -msgstr "" +msgstr "Hääl" -#: templates/part.addpropertyform.php:35 +#: lib/app.php:126 msgid "Fax" -msgstr "" +msgstr "Faks" -#: templates/part.addpropertyform.php:36 +#: lib/app.php:127 msgid "Video" -msgstr "" +msgstr "Video" -#: templates/part.addpropertyform.php:37 +#: lib/app.php:128 msgid "Pager" -msgstr "" +msgstr "Piipar" -#: templates/part.details.php:33 +#: lib/search.php:22 +msgid "Contact" +msgstr "Kontakt" + +#: photo.php:42 +msgid "This is not your contact." +msgstr "See pole sinu kontakt." + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Lisa kontakt" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "Aadressiraamatud" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "Aadressiraamat" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Nimi" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "Tüüp" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "Postkontori postkast" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Laiendatud" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Tänav" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Linn" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Piirkond" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "Postiindeks" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "Riik" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Lisa kontakt" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "Vali aktiivsed aadressiraamatud" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "Uus aadressiraamat" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "CardDav link" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "Lae alla" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Muuda" + +#: templates/part.chooseaddressbook.rowfields.php:5 msgid "Delete" -msgstr "" +msgstr "Kustuta" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "Lae kontakt alla" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "Kustuta kontakt" #: templates/part.details.php:34 -msgid "Add Property" -msgstr "" +msgid "Add" +msgstr "Lisa" -#: templates/part.property.php:9 +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "Uus aadressiraamat" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "Muuda aadressiraamatut" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "Näidatav nimi" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "Aktiivne" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "Salvesta" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "Saada" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "Loobu" + +#: templates/part.property.php:3 msgid "Birthday" -msgstr "" +msgstr "Sünnipäev" -#: templates/part.property.php:29 +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "Eelistatud" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 msgid "Phone" -msgstr "" +msgstr "Telefon" -#: templates/part.setpropertyform.php:17 -msgid "Edit" -msgstr "" +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "Uuenda" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "CardDAV sünkroniseerimise aadress:" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 02b3782f220..55fd4b8d06a 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Rivo Zängov , 2011. +# Rivo Zängov , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-05 14:48+0000\n" -"Last-Translator: Eraser \n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-18 10:37+0000\n" +"Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.net/projects/p/owncloud/team/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,51 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "Owncloud parooli taastamine" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "Kasuta järgnevat linki oma parooli taastamiseks: {link}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "Sinu parooli taastamise link saadetakse sulle e-postile." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Kohustuslik" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Sisselogimine ebaõnnestus!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Kasutajanimi" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Päringu taastamine" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Sinu parool on taastatud" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "Sisselogimise lehele" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Uus parool" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Nulli parool" + #: strings.php:5 msgid "Personal" msgstr "isiklik" @@ -46,54 +91,50 @@ msgstr "Pilve ei leitud" msgid "Create an admin account" msgstr "Loo admini konto" -#: templates/installation.php:21 -msgid "Username" -msgstr "Kasutajanimi" - -#: templates/installation.php:22 +#: templates/installation.php:26 templates/login.php:12 msgid "Password" msgstr "Parool" -#: templates/installation.php:27 -msgid "Configure the database" -msgstr "Seadista andmebaasi" - -#: templates/installation.php:32 templates/installation.php:43 -#: templates/installation.php:53 -msgid "will be used" -msgstr "kasutatakse" - -#: templates/installation.php:64 -msgid "Database user" -msgstr "Andmebaasi kasutaja" - -#: templates/installation.php:65 -msgid "Database password" -msgstr "Andmebaasi parool" - -#: templates/installation.php:66 -msgid "Database name" -msgstr "Andmebasi nimi" - -#: templates/installation.php:72 +#: templates/installation.php:32 msgid "Advanced" msgstr "Lisavalikud" -#: templates/installation.php:75 -msgid "Database host" -msgstr "Andmebaasi host" - -#: templates/installation.php:76 +#: templates/installation.php:34 msgid "Data folder" msgstr "Andmete kaust" +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Seadista andmebaasi" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "kasutatakse" + #: templates/installation.php:79 +msgid "Database user" +msgstr "Andmebaasi kasutaja" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Andmebaasi parool" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Andmebasi nimi" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Andmebaasi host" + +#: templates/installation.php:98 msgid "Finish setup" msgstr "Lõpeta seadistamine" #: templates/layout.guest.php:35 -msgid "gives you freedom and control over your own data" -msgstr "Annab sulle vabaduse ja kontrolli sinu enda andmete üle" +msgid "web services under your control" +msgstr "veebiteenused sinu kontrolli all" #: templates/layout.user.php:34 msgid "Log out" @@ -103,39 +144,22 @@ msgstr "Logi välja" msgid "Settings" msgstr "Seaded" -#: templates/login.php:4 +#: templates/login.php:5 msgid "Lost your password?" msgstr "Kaotasid oma parooli?" -#: templates/login.php:9 templates/login.php:13 +#: templates/login.php:15 msgid "remember" msgstr "pea meeles" +#: templates/login.php:16 +msgid "Log in" +msgstr "Logi sisse" + #: templates/logout.php:1 msgid "You are logged out." msgstr "Sa oled välja loginud" -#: templates/lostpassword.php:3 -msgid "You will receive a link to reset your password via Email." -msgstr "" -"Sulle saadetakse e-postile link, millelt sa saad oma parooli taastada." - -#: templates/lostpassword.php:5 -msgid "Requested" -msgstr "Kohustuslik" - -#: templates/lostpassword.php:8 -msgid "Login failed!" -msgstr "Sisselogimine ebaõnnestus" - -#: templates/lostpassword.php:10 -msgid "Username or Email" -msgstr "Kasutajanimi või e-post" - -#: templates/lostpassword.php:11 -msgid "Request reset" -msgstr "Palu taastamist" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "eelm" @@ -144,16 +168,4 @@ msgstr "eelm" msgid "next" msgstr "järgm" -#: templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "Sinu parool on taastatud" - -#: templates/resetpassword.php:6 -msgid "New password" -msgstr "Uus parool" - -#: templates/resetpassword.php:7 -msgid "Reset password" -msgstr "Nulli parool" - diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 92f9fa8d855..bda98c95742 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Rivo Zängov , 2011. +# Rivo Zängov , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-18 10:38+0000\n" +"Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.net/projects/p/owncloud/team/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,33 +18,36 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:24 +#: ajax/upload.php:19 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "Ühtegi viga pole, fail on üles laetud" -#: ajax/upload.php:25 +#: ajax/upload.php:20 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "" +"Üles laetud faili suurus ületab php.ini määratud upload_max_filesize suuruse" -#: ajax/upload.php:26 +#: ajax/upload.php:21 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" +"Üles laetud faili suurus ületab HTML vormis määratud upload_max_filesize " +"suuruse" -#: ajax/upload.php:27 +#: ajax/upload.php:22 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "Fail laeti üles ainult osaliselt" -#: ajax/upload.php:28 +#: ajax/upload.php:23 msgid "No file was uploaded" -msgstr "" +msgstr "Ühtegi faili ei laetud üles" -#: ajax/upload.php:29 +#: ajax/upload.php:24 msgid "Missing a temporary folder" -msgstr "" +msgstr "Ajutiste failide kaust puudub" -#: appinfo/app.php:7 +#: appinfo/app.php:8 msgid "Files" msgstr "Failid" @@ -52,43 +55,55 @@ msgstr "Failid" msgid "Maximum upload size" msgstr "Maksimaalne üleslaadimise suurus" +#: templates/index.php:7 +msgid "New" +msgstr "Uus" + #: templates/index.php:10 +msgid "Text file" +msgstr "Tekstifail" + +#: templates/index.php:11 +msgid "Folder" +msgstr "Kaust" + +#: templates/index.php:12 +msgid "From the web" +msgstr "Veebist" + +#: templates/index.php:22 msgid "Upload" msgstr "Lae üles" -#: templates/index.php:17 -msgid "New Folder" -msgstr "Uus kaust" - -#: templates/index.php:31 +#: templates/index.php:35 msgid "Nothing in here. Upload something!" msgstr "Siin pole midagi. Lae midagi üles!" -#: templates/index.php:39 +#: templates/index.php:43 msgid "Name" msgstr "Nimi" -#: templates/index.php:41 +#: templates/index.php:45 msgid "Download" msgstr "Lae alla" -#: templates/index.php:45 +#: templates/index.php:49 msgid "Size" msgstr "Suurus" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Modified" msgstr "Muudetud" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Delete" msgstr "Kustuta" -#: templates/index.php:54 +#: templates/index.php:58 msgid "Upload too large" msgstr "Üleslaadimine on liiga suur" -#: templates/index.php:56 +#: templates/index.php:60 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." diff --git a/l10n/et_EE/gallery.po b/l10n/et_EE/gallery.po new file mode 100644 index 00000000000..97c7a893a5c --- /dev/null +++ b/l10n/et_EE/gallery.po @@ -0,0 +1,53 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Rivo Zängov , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Estonian (Estonia) (http://www.transifex.net/projects/p/owncloud/team/et_EE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: et_EE\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "Galerii" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "Skänni uuesti" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "Tagasi" + + diff --git a/l10n/et_EE/media.po b/l10n/et_EE/media.po index 7d40f8a4ffa..a0e33794bfd 100644 --- a/l10n/et_EE/media.po +++ b/l10n/et_EE/media.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-05 14:54+0000\n" -"Last-Translator: Eraser \n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Estonian (Estonia) (http://www.transifex.net/projects/p/owncloud/team/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,15 +18,15 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: appinfo/app.php:31 +#: appinfo/app.php:32 msgid "Music" msgstr "Muusika" -#: templates/music.php:3 +#: templates/music.php:3 templates/player.php:13 msgid "Play" msgstr "Esita" -#: templates/music.php:4 templates/music.php:30 +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 msgid "Pause" msgstr "Paus" @@ -34,7 +34,7 @@ msgstr "Paus" msgid "Previous" msgstr "Eelmine" -#: templates/music.php:6 +#: templates/music.php:6 templates/player.php:15 msgid "Next" msgstr "Järgmine" @@ -46,11 +46,7 @@ msgstr "Vaikseks" msgid "Unmute" msgstr "Hääl tagasi" -#: templates/music.php:28 -msgid "Songs scanned" -msgstr "Skännitud lood" - -#: templates/music.php:29 +#: templates/music.php:25 msgid "Rescan Collection" msgstr "Skänni kollekttsiooni uuesti" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 3fad92d9479..885415cc86a 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Rivo Zängov , 2011. +# , 2012. +# Rivo Zängov , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-05 14:59+0000\n" -"Last-Translator: Eraser \n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-18 22:29+0000\n" +"Last-Translator: icewind \n" "Language-Team: Estonian (Estonia) (http://www.transifex.net/projects/p/owncloud/team/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +19,30 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/openid.php:13 ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Autentimise viga" +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "e-posti on muudetud" -#: ajax/openid.php:21 -msgid "OpenID Changed" -msgstr "OpenID on muudetud" - -#: ajax/openid.php:23 ajax/setlanguage.php:23 +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 msgid "Invalid request" msgstr "Vigane päring" -#: ajax/setlanguage.php:21 +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID on muudetud" + +#: ajax/setlanguage.php:14 msgid "Language changed" msgstr "Keel on muudetud" +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "Eesti" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "Logi tase" + #: templates/apps.php:8 msgid "Add your application" msgstr "Lisa oma programm" @@ -54,15 +63,15 @@ msgstr "kelle poolt" msgid "Ask a question" msgstr "Küsi küsimus" -#: templates/help.php:17 +#: templates/help.php:20 msgid "Problems connecting to help database." msgstr "Probleemid abiinfo andmebaasiga ühendumisel." -#: templates/help.php:18 +#: templates/help.php:21 msgid "Go there manually." msgstr "Mine sinna käsitsi." -#: templates/help.php:26 +#: templates/help.php:29 msgid "Answer" msgstr "Vasta" @@ -98,35 +107,51 @@ msgstr "näita" msgid "Change password" msgstr "Muuda parooli" -#: templates/personal.php:24 templates/personal.php:25 +#: templates/personal.php:24 +msgid "Email" +msgstr "E-post" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "Sinu e-posti aadress" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "Parooli taastamise sisse lülitamiseks sisesta e-posti aadress" + +#: templates/personal.php:32 templates/personal.php:33 msgid "Language" msgstr "Keel" -#: templates/personal.php:30 -msgid "Help translating" -msgstr "Abiinfo tõlkimine" +#: templates/personal.php:38 +msgid "Help translate" +msgstr "Aita tõlkida" -#: templates/personal.php:37 +#: templates/personal.php:45 msgid "use this address to connect to your ownCloud in your file manager" msgstr "kasuta seda aadressi oma ownCloudiga ühendamiseks failihalduriga" -#: templates/users.php:16 +#: templates/users.php:15 templates/users.php:30 msgid "Name" msgstr "Nimi" -#: templates/users.php:17 +#: templates/users.php:16 templates/users.php:31 msgid "Password" msgstr "Parool" -#: templates/users.php:18 templates/users.php:36 +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 msgid "Groups" msgstr "Grupid" -#: templates/users.php:24 +#: templates/users.php:23 msgid "Create" msgstr "Lisa" -#: templates/users.php:48 +#: templates/users.php:33 +msgid "Quota" +msgstr "Mahupiir" + +#: templates/users.php:58 msgid "Delete" msgstr "Kustuta" diff --git a/l10n/eu/calendar.po b/l10n/eu/calendar.po new file mode 100644 index 00000000000..7ef03022a17 --- /dev/null +++ b/l10n/eu/calendar.po @@ -0,0 +1,637 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Asier Urio Larrea , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-15 13:45+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Basque (http://www.transifex.net/projects/p/owncloud/team/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "" + +#: ajax/settimezone.php:22 +msgid "Timezone changed" +msgstr "Ordu-zona aldatuta" + +#: ajax/settimezone.php:24 +msgid "Invalid request" +msgstr "Baligabeko eskaera" + +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 +msgid "Calendar" +msgstr "Egutegia" + +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Egutegi okerra" + +#: lib/app.php:60 lib/object.php:332 +msgid "Birthday" +msgstr "Jaioteguna" + +#: lib/app.php:61 lib/object.php:333 +msgid "Business" +msgstr "Negozioa" + +#: lib/app.php:62 lib/object.php:334 +msgid "Call" +msgstr "Deia" + +#: lib/app.php:63 lib/object.php:335 +msgid "Clients" +msgstr "Bezeroak" + +#: lib/app.php:64 lib/object.php:336 +msgid "Deliverer" +msgstr "Banatzailea" + +#: lib/app.php:65 lib/object.php:337 +msgid "Holidays" +msgstr "Oporrak" + +#: lib/app.php:66 lib/object.php:338 +msgid "Ideas" +msgstr "Ideiak" + +#: lib/app.php:67 lib/object.php:339 +msgid "Journey" +msgstr "Bidaia" + +#: lib/app.php:68 lib/object.php:340 +msgid "Jubilee" +msgstr "Urteurrena" + +#: lib/app.php:69 lib/object.php:341 +msgid "Meeting" +msgstr "Bilera" + +#: lib/app.php:70 lib/object.php:342 +msgid "Other" +msgstr "Bestelakoa" + +#: lib/app.php:71 lib/object.php:343 +msgid "Personal" +msgstr "Pertsonala" + +#: lib/app.php:72 lib/object.php:344 +msgid "Projects" +msgstr "Proiektuak" + +#: lib/app.php:73 lib/object.php:345 +msgid "Questions" +msgstr "Galderak" + +#: lib/app.php:74 lib/object.php:346 +msgid "Work" +msgstr "Lana" + +#: lib/object.php:353 +msgid "Does not repeat" +msgstr "Ez da errepikatzen" + +#: lib/object.php:354 +msgid "Daily" +msgstr "Egunero" + +#: lib/object.php:355 +msgid "Weekly" +msgstr "Astero" + +#: lib/object.php:356 +msgid "Every Weekday" +msgstr "Asteko egun guztietan" + +#: lib/object.php:357 +msgid "Bi-Weekly" +msgstr "Bi-Astero" + +#: lib/object.php:358 +msgid "Monthly" +msgstr "Hilabetero" + +#: lib/object.php:359 +msgid "Yearly" +msgstr "Urtero" + +#: lib/object.php:366 +msgid "never" +msgstr "" + +#: lib/object.php:367 +msgid "by occurrences" +msgstr "" + +#: lib/object.php:368 +msgid "by date" +msgstr "" + +#: lib/object.php:375 +msgid "by monthday" +msgstr "" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "" + +#: lib/object.php:383 templates/lAfix.php:3 +msgid "Monday" +msgstr "" + +#: lib/object.php:384 templates/lAfix.php:4 +msgid "Tuesday" +msgstr "" + +#: lib/object.php:385 templates/lAfix.php:5 +msgid "Wednesday" +msgstr "" + +#: lib/object.php:386 templates/lAfix.php:6 +msgid "Thursday" +msgstr "" + +#: lib/object.php:387 templates/lAfix.php:7 +msgid "Friday" +msgstr "" + +#: lib/object.php:388 templates/lAfix.php:8 +msgid "Saturday" +msgstr "" + +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "" + +#: lib/object.php:396 +msgid "events week of month" +msgstr "" + +#: lib/object.php:397 +msgid "first" +msgstr "" + +#: lib/object.php:398 +msgid "second" +msgstr "" + +#: lib/object.php:399 +msgid "third" +msgstr "" + +#: lib/object.php:400 +msgid "fourth" +msgstr "" + +#: lib/object.php:401 +msgid "fifth" +msgstr "" + +#: lib/object.php:402 +msgid "last" +msgstr "" + +#: lib/object.php:424 templates/lAfix.php:16 +msgid "January" +msgstr "" + +#: lib/object.php:425 templates/lAfix.php:17 +msgid "February" +msgstr "" + +#: lib/object.php:426 templates/lAfix.php:18 +msgid "March" +msgstr "" + +#: lib/object.php:427 templates/lAfix.php:19 +msgid "April" +msgstr "" + +#: lib/object.php:428 templates/lAfix.php:20 +msgid "May" +msgstr "" + +#: lib/object.php:429 templates/lAfix.php:21 +msgid "June" +msgstr "" + +#: lib/object.php:430 templates/lAfix.php:22 +msgid "July" +msgstr "" + +#: lib/object.php:431 templates/lAfix.php:23 +msgid "August" +msgstr "" + +#: lib/object.php:432 templates/lAfix.php:24 +msgid "September" +msgstr "" + +#: lib/object.php:433 templates/lAfix.php:25 +msgid "October" +msgstr "" + +#: lib/object.php:434 templates/lAfix.php:26 +msgid "November" +msgstr "" + +#: lib/object.php:435 templates/lAfix.php:27 +msgid "December" +msgstr "" + +#: lib/object.php:441 +msgid "by events date" +msgstr "" + +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "" + +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "" + +#: lib/object.php:444 +msgid "by day and month" +msgstr "" + +#: lib/object.php:467 +msgid "Not an array" +msgstr "Ez da bektore bat" + +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "" + +#: lib/search.php:40 +msgid "Cal." +msgstr "" + +#: templates/calendar.php:10 +msgid "All day" +msgstr "Egun guztia" + +#: templates/calendar.php:11 +msgid "Missing fields" +msgstr "Eremuak faltan" + +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" +msgstr "Izenburua" + +#: templates/calendar.php:14 +msgid "From Date" +msgstr "Hasierako Data" + +#: templates/calendar.php:15 +msgid "From Time" +msgstr "Hasierako Ordua" + +#: templates/calendar.php:16 +msgid "To Date" +msgstr "Bukaerako Data" + +#: templates/calendar.php:17 +msgid "To Time" +msgstr "Bukaerako Ordua" + +#: templates/calendar.php:18 +msgid "The event ends before it starts" +msgstr "Gertaera hasi baino lehen bukatzen da" + +#: templates/calendar.php:19 +msgid "There was a database fail" +msgstr "Datu baseak huts egin du" + +#: templates/calendar.php:52 +msgid "Week" +msgstr "Astea" + +#: templates/calendar.php:53 +msgid "Month" +msgstr "Hilabetea" + +#: templates/calendar.php:54 +msgid "List" +msgstr "Zerrenda" + +#: templates/calendar.php:59 +msgid "Today" +msgstr "Gaur" + +#: templates/calendar.php:60 +msgid "Calendars" +msgstr "Egutegiak" + +#: templates/calendar.php:78 +msgid "There was a fail, while parsing the file." +msgstr "Huts bat egon da, fitxategia aztertzen zen bitartea." + +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "" + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "" + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "" + +#: templates/lAfix.php:32 +msgid "May." +msgstr "" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "" + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "" + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "" + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "" + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "" + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "" + +#: templates/part.choosecalendar.php:1 +msgid "Choose active calendars" +msgstr "Aukeratu egutegi aktiboak" + +#: templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "Egutegi berria" + +#: templates/part.choosecalendar.php:20 +#: templates/part.choosecalendar.rowfields.php:4 +msgid "CalDav Link" +msgstr "CalDav Lotura" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Download" +msgstr "Deskargatu" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Edit" +msgstr "Editatu" + +#: templates/part.choosecalendar.rowfields.php:4 +#: templates/part.editevent.php:9 +msgid "Delete" +msgstr "Ezabatu" + +#: templates/part.editcalendar.php:9 +msgid "New calendar" +msgstr "Egutegi berria" + +#: templates/part.editcalendar.php:9 +msgid "Edit calendar" +msgstr "Editatu egutegia" + +#: templates/part.editcalendar.php:12 +msgid "Displayname" +msgstr "Bistaratzeko izena" + +#: templates/part.editcalendar.php:23 +msgid "Active" +msgstr "Aktiboa" + +#: templates/part.editcalendar.php:29 +msgid "Calendar color" +msgstr "Egutegiaren kolorea" + +#: templates/part.editcalendar.php:42 +msgid "Save" +msgstr "Gorde" + +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 +#: templates/part.newevent.php:6 +msgid "Submit" +msgstr "Bidali" + +#: templates/part.editcalendar.php:43 +msgid "Cancel" +msgstr "Ezeztatu" + +#: templates/part.editevent.php:1 +msgid "Edit an event" +msgstr "Editatu gertaera" + +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "Exportatu" + +#: templates/part.eventform.php:5 +msgid "Title of the Event" +msgstr "Gertaeraren izenburua" + +#: templates/part.eventform.php:11 +msgid "Category" +msgstr "Kategoria" + +#: templates/part.eventform.php:13 +msgid "Select category" +msgstr "Aukeratu kategoria" + +#: templates/part.eventform.php:37 +msgid "All Day Event" +msgstr "Egun osoko gertaera" + +#: templates/part.eventform.php:41 +msgid "From" +msgstr "Hasiera" + +#: templates/part.eventform.php:49 +msgid "To" +msgstr "Bukaera" + +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "Aukera aurreratuak" + +#: templates/part.eventform.php:61 +msgid "Repeat" +msgstr "Errepikatu" + +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "" + +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Kokalekua" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Gertaeraren kokalekua" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Deskribapena" + +#: templates/part.eventform.php:218 +msgid "Description of the Event" +msgstr "Gertaeraren deskribapena" + +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "Mesedez aukeratu egutegia" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "Importatu" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "" + +#: templates/part.newevent.php:1 +msgid "Create a new event" +msgstr "Sortu gertaera berria" + +#: templates/settings.php:13 +msgid "Timezone" +msgstr "Ordu-zona" + +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "Ordu formatua" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24h" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12h" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "Egutegiaren CalDAV sinkronizazio helbidea" + + diff --git a/l10n/eu/contacts.po b/l10n/eu/contacts.po new file mode 100644 index 00000000000..93710a2b352 --- /dev/null +++ b/l10n/eu/contacts.po @@ -0,0 +1,283 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Asier Urio Larrea , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Basque (http://www.transifex.net/projects/p/owncloud/team/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." +msgstr "" + +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: lib/app.php:52 +msgid "This is not your addressbook." +msgstr "Hau ez da zure helbide liburua." + +#: lib/app.php:61 photo.php:36 +msgid "Contact could not be found." +msgstr "Ezin izan da kontaktua aurkitu." + +#: lib/app.php:89 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" +"vCard-aren inguruko informazioa okerra da. Mesedez birkargatu orrialdea." + +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 +msgid "Address" +msgstr "Helbidea" + +#: lib/app.php:102 templates/part.addcardform.php:43 +msgid "Telephone" +msgstr "Telefonoa" + +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 +msgid "Email" +msgstr "Eposta" + +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 +msgid "Organization" +msgstr "Erakundea" + +#: lib/app.php:116 lib/app.php:123 +msgid "Work" +msgstr "Lana" + +#: lib/app.php:117 lib/app.php:121 +msgid "Home" +msgstr "Etxea" + +#: lib/app.php:122 +msgid "Mobile" +msgstr "Mugikorra" + +#: lib/app.php:124 +msgid "Text" +msgstr "Testua" + +#: lib/app.php:125 +msgid "Voice" +msgstr "Ahotsa" + +#: lib/app.php:126 +msgid "Fax" +msgstr "Fax-a" + +#: lib/app.php:127 +msgid "Video" +msgstr "Bideoa" + +#: lib/app.php:128 +msgid "Pager" +msgstr "Bilagailua" + +#: lib/search.php:22 +msgid "Contact" +msgstr "" + +#: photo.php:42 +msgid "This is not your contact." +msgstr "Hau ez da zure kontaktua." + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Gehitu Kontaktua" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Izena" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "Posta kutxa" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Hedatua" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Kalea" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Hiria" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Eskualdea" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "Posta Kodea" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "Herrialdea" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Sortu Kontaktua" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Editatu" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Delete" +msgstr "Ezabatu" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "" + +#: templates/part.property.php:3 +msgid "Birthday" +msgstr "Jaioteguna" + +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 +msgid "Phone" +msgstr "Telefonoa" + +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "" + + diff --git a/l10n/eu/core.po b/l10n/eu/core.po new file mode 100644 index 00000000000..4508c5380f0 --- /dev/null +++ b/l10n/eu/core.po @@ -0,0 +1,171 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Asier Urio Larrea , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Basque (http://www.transifex.net/projects/p/owncloud/team/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "Zure pashitza berrezartzeko lotura bat jasoko duzu Epostaren bidez." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Eskatuta" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Saio hasierak huts egin du!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Erabiltzaile izena" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Eskaera berrezarri da" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Zure pasahitza berrezarri da" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Pasahitz berria" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Berrezarri pasahitza" + +#: strings.php:5 +msgid "Personal" +msgstr "Pertsonala" + +#: strings.php:6 +msgid "Users" +msgstr "Erabiltzaileak" + +#: strings.php:7 +msgid "Apps" +msgstr "Aplikazioak" + +#: strings.php:8 +msgid "Admin" +msgstr "Kudeatzailea" + +#: strings.php:9 +msgid "Help" +msgstr "Laguntza" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "Ez da hodeia aurkitu" + +#: templates/installation.php:20 +msgid "Create an admin account" +msgstr "Sortu kudeatzaile kontu bat" + +#: templates/installation.php:26 templates/login.php:12 +msgid "Password" +msgstr "Pasahitza" + +#: templates/installation.php:32 +msgid "Advanced" +msgstr "Aurreratua" + +#: templates/installation.php:34 +msgid "Data folder" +msgstr "Datuen karpeta" + +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Konfiguratu datu basea" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "erabiliko da" + +#: templates/installation.php:79 +msgid "Database user" +msgstr "Datubasearen erabiltzailea" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Datubasearen pasahitza" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Datubasearen izena" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Datubasearen hostalaria" + +#: templates/installation.php:98 +msgid "Finish setup" +msgstr "Bukatu konfigurazioa" + +#: templates/layout.guest.php:35 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:34 +msgid "Log out" +msgstr "Saioa bukatu" + +#: templates/layout.user.php:46 templates/layout.user.php:47 +msgid "Settings" +msgstr "Ezarpenak" + +#: templates/login.php:5 +msgid "Lost your password?" +msgstr "Galdu duzu pasahitza?" + +#: templates/login.php:15 +msgid "remember" +msgstr "gogoratu" + +#: templates/login.php:16 +msgid "Log in" +msgstr "" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "Zure saioa bukatu da." + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "aurrekoa" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "hurrengoa" + + diff --git a/l10n/eu/files.po b/l10n/eu/files.po new file mode 100644 index 00000000000..d2af4c2d58f --- /dev/null +++ b/l10n/eu/files.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Asier Urio Larrea , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Basque (http://www.transifex.net/projects/p/owncloud/team/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/upload.php:19 +msgid "There is no error, the file uploaded with success" +msgstr "Ez da arazorik izan, fitxategia ongi igo da" + +#: ajax/upload.php:20 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "" +"Igotako fitxategiaren tamaina php.ini-ko upload_max_filesize direktiban " +"adierazitakoa baino handiagoa da" + +#: ajax/upload.php:21 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" +"Igotako fitxategiaren tamaina HTML inprimakiko MAX_FILESIZE direktiban " +"adierazitakoa baino handiagoa da" + +#: ajax/upload.php:22 +msgid "The uploaded file was only partially uploaded" +msgstr "Igotako fitxategiaren zati bat baino gehiago ez da igo" + +#: ajax/upload.php:23 +msgid "No file was uploaded" +msgstr "Ez da fitxategirik igo" + +#: ajax/upload.php:24 +msgid "Missing a temporary folder" +msgstr "Aldi baterako karpeta falta da" + +#: appinfo/app.php:8 +msgid "Files" +msgstr "Fitxategiak" + +#: templates/admin.php:5 +msgid "Maximum upload size" +msgstr "Igo daitekeen gehienezko tamaina" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:11 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From the web" +msgstr "" + +#: templates/index.php:22 +msgid "Upload" +msgstr "Igo" + +#: templates/index.php:35 +msgid "Nothing in here. Upload something!" +msgstr "Ez dago ezer. Igo zerbait!" + +#: templates/index.php:43 +msgid "Name" +msgstr "Izena" + +#: templates/index.php:45 +msgid "Download" +msgstr "Deskargatu" + +#: templates/index.php:49 +msgid "Size" +msgstr "Tamaina" + +#: templates/index.php:50 +msgid "Modified" +msgstr "Aldatuta" + +#: templates/index.php:50 +msgid "Delete" +msgstr "Ezabatu" + +#: templates/index.php:58 +msgid "Upload too large" +msgstr "Igotakoa handiegia da" + +#: templates/index.php:60 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" +"Igotzen saiatzen ari zaren fitxategiak zerbitzari honek igotzeko onartzen " +"duena baino handiagoak dira." + + diff --git a/l10n/eu/gallery.po b/l10n/eu/gallery.po new file mode 100644 index 00000000000..bc2d60a9fd8 --- /dev/null +++ b/l10n/eu/gallery.po @@ -0,0 +1,52 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Basque (http://www.transifex.net/projects/p/owncloud/team/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" + + diff --git a/l10n/eu/media.po b/l10n/eu/media.po new file mode 100644 index 00000000000..8fbf9e464f4 --- /dev/null +++ b/l10n/eu/media.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Asier Urio Larrea , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Basque (http://www.transifex.net/projects/p/owncloud/team/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:32 +msgid "Music" +msgstr "Musika" + +#: templates/music.php:3 templates/player.php:13 +msgid "Play" +msgstr "Erreproduzitu" + +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 +msgid "Pause" +msgstr "Pausarazi" + +#: templates/music.php:5 +msgid "Previous" +msgstr "Aurrekoa" + +#: templates/music.php:6 templates/player.php:15 +msgid "Next" +msgstr "Hurrengoa" + +#: templates/music.php:7 +msgid "Mute" +msgstr "Mututu" + +#: templates/music.php:8 +msgid "Unmute" +msgstr "Ez Mututu" + +#: templates/music.php:25 +msgid "Rescan Collection" +msgstr "Bireskaneatu Bilduma" + +#: templates/music.php:37 +msgid "Artist" +msgstr "Artista" + +#: templates/music.php:38 +msgid "Album" +msgstr "Albuma" + +#: templates/music.php:39 +msgid "Title" +msgstr "Izenburua" + + diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po new file mode 100644 index 00000000000..f70d37fbbd5 --- /dev/null +++ b/l10n/eu/settings.po @@ -0,0 +1,159 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Asier Urio Larrea , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 16:32+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Basque (http://www.transifex.net/projects/p/owncloud/team/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "" + +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 +msgid "Invalid request" +msgstr "Baliogabeko eskaria" + +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID aldatuta" + +#: ajax/setlanguage.php:14 +msgid "Language changed" +msgstr "Hizkuntza aldatuta" + +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "" + +#: templates/apps.php:8 +msgid "Add your application" +msgstr "Gehitu zure programa" + +#: templates/apps.php:21 +msgid "Select an App" +msgstr "Aukeratu Programa bat" + +#: templates/apps.php:23 +msgid "-licensed" +msgstr "lizentziarekin." + +#: templates/apps.php:23 +msgid "by" +msgstr " Egilea:" + +#: templates/help.php:8 +msgid "Ask a question" +msgstr "Egin galdera bat" + +#: templates/help.php:20 +msgid "Problems connecting to help database." +msgstr "Arazoak daude laguntza datubasera konektatzeko." + +#: templates/help.php:21 +msgid "Go there manually." +msgstr "Joan hara eskuz." + +#: templates/help.php:29 +msgid "Answer" +msgstr "Erantzun" + +#: templates/personal.php:8 +msgid "You use" +msgstr "Erabiltzen ari zara " + +#: templates/personal.php:8 +msgid "of the available" +msgstr "eta guztira erabil dezakezu " + +#: templates/personal.php:13 +msgid "Your password got changed" +msgstr "Zure pasahitza aldatu da" + +#: templates/personal.php:14 +msgid "Unable to change your password" +msgstr "Ezin izan da zure pasahitza aldatu" + +#: templates/personal.php:15 +msgid "Current password" +msgstr "Uneko pasahitza" + +#: templates/personal.php:16 +msgid "New password" +msgstr "Pasahitz berria" + +#: templates/personal.php:17 +msgid "show" +msgstr "erakutsi" + +#: templates/personal.php:18 +msgid "Change password" +msgstr "Aldatu pasahitza" + +#: templates/personal.php:24 +msgid "Email" +msgstr "" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:32 templates/personal.php:33 +msgid "Language" +msgstr "Hizkuntza" + +#: templates/personal.php:38 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:45 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "" +"erabili helbide hau zure fitxategi kudeatzailean zure ownCloudera " +"konektatzeko" + +#: templates/users.php:15 templates/users.php:30 +msgid "Name" +msgstr "Izena" + +#: templates/users.php:16 templates/users.php:31 +msgid "Password" +msgstr "Pasahitza" + +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 +msgid "Groups" +msgstr "Taldeak" + +#: templates/users.php:23 +msgid "Create" +msgstr "Sortu" + +#: templates/users.php:33 +msgid "Quota" +msgstr "" + +#: templates/users.php:58 +msgid "Delete" +msgstr "Ezabatu" + + diff --git a/l10n/fr/calendar.po b/l10n/fr/calendar.po index 3c961b669c8..042d62856ad 100644 --- a/l10n/fr/calendar.po +++ b/l10n/fr/calendar.po @@ -3,14 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011. +# , 2011. +# , 2011. +# Jan-Christoph Borchardt , 2011. +# , 2011, 2012. +# Yann Yann , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-15 15:26+0100\n" +"PO-Revision-Date: 2012-01-15 14:20+0000\n" +"Last-Translator: rom1dep \n" "Language-Team: French (http://www.transifex.net/projects/p/owncloud/team/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,321 +22,403 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" -#: ajax/createcalendar.php:18 ajax/settimezone.php:19 -#: ajax/updatecalendar.php:18 -msgid "Authentication error" -msgstr "Erreur d'authentification" +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "Nouveau fuseau horaire :" -#: ajax/editeventform.php:25 -msgid "Wrong calendar" -msgstr "Mauvais calendrier" - -#: ajax/settimezone.php:27 +#: ajax/settimezone.php:22 msgid "Timezone changed" msgstr "Fuseau horaire modifié" -#: ajax/settimezone.php:29 +#: ajax/settimezone.php:24 msgid "Invalid request" msgstr "Requête invalide" -#: appinfo/app.php:19 templates/part.eventform.php:27 -#: templates/part.eventinfo.php:18 +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 msgid "Calendar" msgstr "Calendrier" -#: lib/object.php:292 +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Mauvais calendrier" + +#: lib/app.php:60 lib/object.php:332 msgid "Birthday" msgstr "Anniversaire" -#: lib/object.php:293 +#: lib/app.php:61 lib/object.php:333 msgid "Business" -msgstr "Business" +msgstr "Professionnel" -#: lib/object.php:294 +#: lib/app.php:62 lib/object.php:334 msgid "Call" msgstr "Appel" -#: lib/object.php:295 +#: lib/app.php:63 lib/object.php:335 msgid "Clients" -msgstr "Clients" +msgstr "Clientèle" -#: lib/object.php:296 +#: lib/app.php:64 lib/object.php:336 msgid "Deliverer" -msgstr "Livreur" +msgstr "Livraison" -#: lib/object.php:297 +#: lib/app.php:65 lib/object.php:337 msgid "Holidays" msgstr "Vacances" -#: lib/object.php:298 +#: lib/app.php:66 lib/object.php:338 msgid "Ideas" msgstr "Idées" -#: lib/object.php:299 +#: lib/app.php:67 lib/object.php:339 msgid "Journey" -msgstr "Journée" +msgstr "Déplacement" -#: lib/object.php:300 +#: lib/app.php:68 lib/object.php:340 msgid "Jubilee" msgstr "Jubilé" -#: lib/object.php:301 +#: lib/app.php:69 lib/object.php:341 msgid "Meeting" msgstr "Meeting" -#: lib/object.php:302 +#: lib/app.php:70 lib/object.php:342 msgid "Other" msgstr "Autre" -#: lib/object.php:303 +#: lib/app.php:71 lib/object.php:343 msgid "Personal" msgstr "Personnel" -#: lib/object.php:304 +#: lib/app.php:72 lib/object.php:344 msgid "Projects" msgstr "Projets" -#: lib/object.php:305 +#: lib/app.php:73 lib/object.php:345 msgid "Questions" msgstr "Questions" -#: lib/object.php:306 +#: lib/app.php:74 lib/object.php:346 msgid "Work" msgstr "Travail" -#: lib/object.php:313 +#: lib/object.php:353 msgid "Does not repeat" msgstr "Pas de répétition" -#: lib/object.php:314 +#: lib/object.php:354 msgid "Daily" msgstr "Tous les jours" -#: lib/object.php:315 +#: lib/object.php:355 msgid "Weekly" -msgstr "Toutes les semaines" +msgstr "Hebdomadaire" -#: lib/object.php:316 +#: lib/object.php:356 msgid "Every Weekday" -msgstr "Chaque jour de la semaine" +msgstr "Quotidien" -#: lib/object.php:317 +#: lib/object.php:357 msgid "Bi-Weekly" -msgstr "Bimestriel" +msgstr "Bi-hebdomadaire" -#: lib/object.php:318 +#: lib/object.php:358 msgid "Monthly" -msgstr "Tous les mois" +msgstr "Mensuel" -#: lib/object.php:319 +#: lib/object.php:359 msgid "Yearly" -msgstr "Tous les ans" +msgstr "Annuel" -#: lib/object.php:337 -msgid "Not an array" -msgstr "Ce n'est pas un tableau" +#: lib/object.php:366 +msgid "never" +msgstr "jamais" -#: templates/calendar.php:3 -msgid "All day" -msgstr "Tous les jours" +#: lib/object.php:367 +msgid "by occurrences" +msgstr "par occurrences" -#: templates/calendar.php:32 -msgid "Sunday" -msgstr "Dimanche" +#: lib/object.php:368 +msgid "by date" +msgstr "par date" -#: templates/calendar.php:32 +#: lib/object.php:375 +msgid "by monthday" +msgstr "par jour du mois" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "par jour de la semaine" + +#: lib/object.php:383 templates/lAfix.php:3 msgid "Monday" msgstr "Lundi" -#: templates/calendar.php:32 +#: lib/object.php:384 templates/lAfix.php:4 msgid "Tuesday" msgstr "Mardi" -#: templates/calendar.php:32 +#: lib/object.php:385 templates/lAfix.php:5 msgid "Wednesday" msgstr "Mercredi" -#: templates/calendar.php:32 +#: lib/object.php:386 templates/lAfix.php:6 msgid "Thursday" msgstr "Jeudi" -#: templates/calendar.php:32 +#: lib/object.php:387 templates/lAfix.php:7 msgid "Friday" msgstr "Vendredi" -#: templates/calendar.php:32 +#: lib/object.php:388 templates/lAfix.php:8 msgid "Saturday" msgstr "Samedi" -#: templates/calendar.php:33 -msgid "Sun." -msgstr "Dim." +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "Dimanche" -#: templates/calendar.php:33 -msgid "Mon." -msgstr "Lun." +#: lib/object.php:396 +msgid "events week of month" +msgstr "" -#: templates/calendar.php:33 -msgid "Tue." -msgstr "Mar." +#: lib/object.php:397 +msgid "first" +msgstr "premier" -#: templates/calendar.php:33 -msgid "Wed." -msgstr "Mer." +#: lib/object.php:398 +msgid "second" +msgstr "second" -#: templates/calendar.php:33 -msgid "Thu." -msgstr "Jeu." +#: lib/object.php:399 +msgid "third" +msgstr "troisième" -#: templates/calendar.php:33 -msgid "Fri." -msgstr "Ven." +#: lib/object.php:400 +msgid "fourth" +msgstr "quatrième" -#: templates/calendar.php:33 -msgid "Sat." -msgstr "Sam." +#: lib/object.php:401 +msgid "fifth" +msgstr "cinquième" -#: templates/calendar.php:34 +#: lib/object.php:402 +msgid "last" +msgstr "dernier" + +#: lib/object.php:424 templates/lAfix.php:16 msgid "January" msgstr "Janvier" -#: templates/calendar.php:34 +#: lib/object.php:425 templates/lAfix.php:17 msgid "February" msgstr "Février" -#: templates/calendar.php:34 +#: lib/object.php:426 templates/lAfix.php:18 msgid "March" msgstr "Mars" -#: templates/calendar.php:34 +#: lib/object.php:427 templates/lAfix.php:19 msgid "April" msgstr "Avril" -#: templates/calendar.php:34 +#: lib/object.php:428 templates/lAfix.php:20 msgid "May" msgstr "Mai" -#: templates/calendar.php:34 +#: lib/object.php:429 templates/lAfix.php:21 msgid "June" msgstr "Juin" -#: templates/calendar.php:34 +#: lib/object.php:430 templates/lAfix.php:22 msgid "July" msgstr "Juillet" -#: templates/calendar.php:34 +#: lib/object.php:431 templates/lAfix.php:23 msgid "August" msgstr "Août" -#: templates/calendar.php:34 +#: lib/object.php:432 templates/lAfix.php:24 msgid "September" msgstr "Septembre" -#: templates/calendar.php:34 +#: lib/object.php:433 templates/lAfix.php:25 msgid "October" msgstr "Octobre" -#: templates/calendar.php:34 +#: lib/object.php:434 templates/lAfix.php:26 msgid "November" msgstr "Novembre" -#: templates/calendar.php:34 +#: lib/object.php:435 templates/lAfix.php:27 msgid "December" msgstr "Décembre" -#: templates/calendar.php:35 -msgid "Jan." -msgstr "Jan." +#: lib/object.php:441 +msgid "by events date" +msgstr "par date d’événements" -#: templates/calendar.php:35 -msgid "Feb." -msgstr "Fév." +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "par jour(s) de l'année" -#: templates/calendar.php:35 -msgid "Mar." -msgstr "Mar." +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "par numéro de semaine(s)" -#: templates/calendar.php:35 -msgid "Apr." -msgstr "Avr." +#: lib/object.php:444 +msgid "by day and month" +msgstr "par jour et mois" -#: templates/calendar.php:35 -msgid "May." -msgstr "Peut-être *****" +#: lib/object.php:467 +msgid "Not an array" +msgstr "Ce n'est pas un tableau" -#: templates/calendar.php:35 -msgid "Jun." -msgstr "Juin" +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "Date" -#: templates/calendar.php:35 -msgid "Jul." -msgstr "Juil." +#: lib/search.php:40 +msgid "Cal." +msgstr "Cal." -#: templates/calendar.php:35 -msgid "Aug." -msgstr "Aoû." +#: templates/calendar.php:10 +msgid "All day" +msgstr "Journée entière" -#: templates/calendar.php:35 -msgid "Sep." -msgstr "Sep." +#: templates/calendar.php:11 +msgid "Missing fields" +msgstr "Champs manquants" -#: templates/calendar.php:35 -msgid "Oct." -msgstr "Oct." +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" +msgstr "Titre" -#: templates/calendar.php:35 -msgid "Nov." -msgstr "Nov." +#: templates/calendar.php:14 +msgid "From Date" +msgstr "De la date" -#: templates/calendar.php:35 -msgid "Dec." -msgstr "Déc." +#: templates/calendar.php:15 +msgid "From Time" +msgstr "De l'heure" -#: templates/calendar.php:36 templates/calendar.php:50 -#: templates/calendar.php:116 +#: templates/calendar.php:16 +msgid "To Date" +msgstr "A la date" + +#: templates/calendar.php:17 +msgid "To Time" +msgstr "A l'heure" + +#: templates/calendar.php:18 +msgid "The event ends before it starts" +msgstr "L'évènement s'est terminé avant qu'il ne commence" + +#: templates/calendar.php:19 +msgid "There was a database fail" +msgstr "Il y a eu un échec dans la base de donnée" + +#: templates/calendar.php:52 msgid "Week" msgstr "Semaine" -#: templates/calendar.php:37 templates/calendar.php:51 -msgid "Weeks" -msgstr "Semaines" - -#: templates/calendar.php:38 -msgid "More before {startdate}" -msgstr "Voir plus avant {startdate}" - -#: templates/calendar.php:39 -msgid "More after {enddate}" -msgstr "Voir plus après {enddate}" - -#: templates/calendar.php:49 -msgid "Day" -msgstr "Jour" - -#: templates/calendar.php:52 +#: templates/calendar.php:53 msgid "Month" msgstr "Mois" -#: templates/calendar.php:53 +#: templates/calendar.php:54 msgid "List" msgstr "Liste" -#: templates/calendar.php:58 +#: templates/calendar.php:59 msgid "Today" msgstr "Aujourd'hui" -#: templates/calendar.php:59 +#: templates/calendar.php:60 msgid "Calendars" msgstr "Calendriers" -#: templates/calendar.php:76 templates/calendar.php:94 -msgid "Time" -msgstr "Heure" - -#: templates/calendar.php:169 +#: templates/calendar.php:78 msgid "There was a fail, while parsing the file." msgstr "Une erreur est survenue pendant la lecture du fichier." +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "Dim." + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "Lun." + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "Mar." + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "Mer." + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "Jeu." + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "Ven." + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "Sam." + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "Jan." + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "Fév." + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "Mar." + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "Avr." + +#: templates/lAfix.php:32 +msgid "May." +msgstr "Mai." + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "Jui." + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "Jit." + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "Aou." + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "Sep." + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "Oct." + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "Nov." + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "Déc." + #: templates/part.choosecalendar.php:1 msgid "Choose active calendars" msgstr "Choix des calendriers actifs" @@ -351,14 +437,13 @@ msgid "Download" msgstr "Télécharger" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.eventinfo.php:64 msgid "Edit" msgstr "Éditer" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.editevent.php:8 +#: templates/part.editevent.php:9 msgid "Delete" -msgstr "" +msgstr "Supprimer" #: templates/part.editcalendar.php:9 msgid "New calendar" @@ -376,90 +461,181 @@ msgstr "Nom d'affichage" msgid "Active" msgstr "Actif" -#: templates/part.editcalendar.php:29 templates/part.eventform.php:88 -#: templates/part.eventinfo.php:58 -msgid "Description" -msgstr "Description" - -#: templates/part.editcalendar.php:35 +#: templates/part.editcalendar.php:29 msgid "Calendar color" msgstr "Couleur du calendrier" -#: templates/part.editcalendar.php:41 +#: templates/part.editcalendar.php:42 msgid "Save" msgstr "Sauvegarder" -#: templates/part.editcalendar.php:41 templates/part.editevent.php:7 +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 #: templates/part.newevent.php:6 msgid "Submit" msgstr "Soumettre" -#: templates/part.editcalendar.php:42 +#: templates/part.editcalendar.php:43 msgid "Cancel" msgstr "Annuler" -#: templates/part.editevent.php:1 templates/part.eventinfo.php:1 +#: templates/part.editevent.php:1 msgid "Edit an event" msgstr "Éditer un événement" -#: templates/part.eventform.php:3 templates/part.eventinfo.php:4 -msgid "Title" -msgstr "Titre" +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "Exporter" #: templates/part.eventform.php:5 msgid "Title of the Event" msgstr "Titre de l'événement" -#: templates/part.eventform.php:9 templates/part.eventinfo.php:9 -msgid "Location" -msgstr "Localisation" - #: templates/part.eventform.php:11 -msgid "Location of the Event" -msgstr "Localisation de l'événement" - -#: templates/part.eventform.php:17 templates/part.eventinfo.php:16 msgid "Category" msgstr "Catégorie" -#: templates/part.eventform.php:19 +#: templates/part.eventform.php:13 msgid "Select category" msgstr "Sélectionner une catégorie" -#: templates/part.eventform.php:45 templates/part.eventinfo.php:28 +#: templates/part.eventform.php:37 msgid "All Day Event" -msgstr "Événement de toute une journée" +msgstr "Journée entière" -#: templates/part.eventform.php:49 templates/part.eventinfo.php:31 +#: templates/part.eventform.php:41 msgid "From" msgstr "De" -#: templates/part.eventform.php:57 templates/part.eventinfo.php:38 +#: templates/part.eventform.php:49 msgid "To" msgstr "À" -#: templates/part.eventform.php:65 templates/part.eventinfo.php:44 +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "Options avancées" + +#: templates/part.eventform.php:61 msgid "Repeat" msgstr "Répétition" -#: templates/part.eventform.php:81 templates/part.eventinfo.php:51 -msgid "Attendees" -msgstr "Personnes présentes" +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "Avancé" -#: templates/part.eventform.php:89 +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "Sélection des jours de la semaine" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "Sélection des jours" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "Sélection des mois" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "Sélection des semaines" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "Intervalle" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "Fin" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "occurrences" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Emplacement" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Emplacement de l'événement" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Description" + +#: templates/part.eventform.php:218 msgid "Description of the Event" msgstr "Description de l'événement" -#: templates/part.eventinfo.php:63 -msgid "Close" -msgstr "Fermer" +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "Importer un fichier de calendriers" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "Choisissez le calendrier svp" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "Créer un nouveau calendrier" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "Nom pour le nouveau calendrier" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "Importer" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "Import du calendrier" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "Calendrier importé avec succès" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "Fermer la fenêtre" #: templates/part.newevent.php:1 msgid "Create a new event" msgstr "Créer un nouvel événement" -#: templates/settings.php:11 +#: templates/settings.php:13 msgid "Timezone" msgstr "Fuseau horaire" +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "Toujours vérifier d'éventuels changements de fuseau horaire" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "Format de l'heure" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24h" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12h" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "Adresse de synchronisation du calendrier CalDAV :" + diff --git a/l10n/fr/contacts.po b/l10n/fr/contacts.po index 1a7dea24d8d..4346f2a80a5 100644 --- a/l10n/fr/contacts.po +++ b/l10n/fr/contacts.po @@ -3,13 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2011. +# , 2011. +# Jan-Christoph Borchardt , 2011. +# , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 20:10+0200\n" -"PO-Revision-Date: 2011-09-23 18:11+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" "Language-Team: French (http://www.transifex.net/projects/p/owncloud/team/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,164 +21,269 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" -#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 -#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 -#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 -#: ajax/showsetproperty.php:32 photo.php:32 -msgid "You need to log in." +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." msgstr "" +"Des erreurs se sont produites lors de l'activation/désactivation du carnet " +"d'adresses." -#: ajax/addcard.php:37 +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "Une erreur s'est produite lors de l'ajout du contact." + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "Impossible d'ajouter un champ vide." + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "Au moins un des champs d'adresses doit être complété." + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "Erreur lors de l'ajout du champ." + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "Erreur lors de l'ajout du carnet d'adresses." + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "Erreur lors de l'activation du carnet d'adresses." + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "Erreur lors de la suppression du champ." + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "Erreur lors de la mise à jour du champ." + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "Erreur lors de la mise à jour du carnet d'adresses." + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "Contacts" + +#: lib/app.php:52 msgid "This is not your addressbook." -msgstr "" +msgstr "Ce n'est pas votre carnet d'adresses." -#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 -#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 -#: ajax/showsetproperty.php:38 photo.php:39 +#: lib/app.php:61 photo.php:36 msgid "Contact could not be found." -msgstr "" +msgstr "Ce contact n'a pas été trouvé." -#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 -#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 -#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 -msgid "This is not your contact." -msgstr "" - -#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 -#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 -msgid "vCard could not be read." -msgstr "" - -#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 -#: ajax/showsetproperty.php:62 +#: lib/app.php:89 msgid "Information about vCard is incorrect. Please reload the page." msgstr "" +"Les informations relatives à cette vCard sont incorrectes. Veuillez " +"recharger la page." -#: photo.php:53 -msgid "This card is not RFC compatible." -msgstr "" - -#: photo.php:90 -msgid "This card does not contain a photo." -msgstr "" - -#: templates/index.php:8 -msgid "Add Contact" -msgstr "" - -#: templates/part.addcardform.php:5 -msgid "Group" -msgstr "" - -#: templates/part.addcardform.php:12 templates/part.property.php:3 -msgid "Name" -msgstr "" - -#: templates/part.addcardform.php:14 -msgid "Create Contact" -msgstr "" - -#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 msgid "Address" -msgstr "" +msgstr "Adresse" -#: templates/part.addpropertyform.php:5 +#: lib/app.php:102 templates/part.addcardform.php:43 msgid "Telephone" -msgstr "" +msgstr "Téléphone" -#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 msgid "Email" -msgstr "" +msgstr "E-mail" -#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 msgid "Organization" -msgstr "" +msgstr "Société" -#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +#: lib/app.php:116 lib/app.php:123 msgid "Work" -msgstr "" +msgstr "Travail" -#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +#: lib/app.php:117 lib/app.php:121 msgid "Home" -msgstr "" +msgstr "Maison" -#: templates/part.addpropertyform.php:20 templates/part.property.php:48 -#: templates/part.setpropertyform.php:5 -msgid "PO Box" -msgstr "" - -#: templates/part.addpropertyform.php:21 templates/part.property.php:51 -#: templates/part.setpropertyform.php:6 -msgid "Extended" -msgstr "" - -#: templates/part.addpropertyform.php:22 templates/part.property.php:54 -#: templates/part.setpropertyform.php:7 -msgid "Street" -msgstr "" - -#: templates/part.addpropertyform.php:23 templates/part.property.php:57 -#: templates/part.setpropertyform.php:8 -msgid "City" -msgstr "" - -#: templates/part.addpropertyform.php:24 templates/part.property.php:60 -#: templates/part.setpropertyform.php:9 -msgid "Region" -msgstr "" - -#: templates/part.addpropertyform.php:25 templates/part.property.php:63 -#: templates/part.setpropertyform.php:10 -msgid "Zipcode" -msgstr "" - -#: templates/part.addpropertyform.php:26 templates/part.property.php:66 -#: templates/part.setpropertyform.php:11 -msgid "Country" -msgstr "" - -#: templates/part.addpropertyform.php:31 +#: lib/app.php:122 msgid "Mobile" -msgstr "" +msgstr "Mobile" -#: templates/part.addpropertyform.php:33 +#: lib/app.php:124 msgid "Text" -msgstr "" +msgstr "Texte" -#: templates/part.addpropertyform.php:34 +#: lib/app.php:125 msgid "Voice" -msgstr "" +msgstr "Voix" -#: templates/part.addpropertyform.php:35 +#: lib/app.php:126 msgid "Fax" -msgstr "" +msgstr "Fax" -#: templates/part.addpropertyform.php:36 +#: lib/app.php:127 msgid "Video" -msgstr "" +msgstr "Vidéo" -#: templates/part.addpropertyform.php:37 +#: lib/app.php:128 msgid "Pager" -msgstr "" +msgstr "Bipeur" -#: templates/part.details.php:33 +#: lib/search.php:22 +msgid "Contact" +msgstr "Contact" + +#: photo.php:42 +msgid "This is not your contact." +msgstr "Ce n'est pas votre contact." + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Ajouter un Contact" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "Carnets d'adresses" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "Carnet d'adresses" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Nom" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "Type" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "Boîte postale" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Étendu" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Rue" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Ville" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Région" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "Code postal" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "Pays" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Créer le Contact" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "Choisissez le Carnet d'adresses actif" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "Nouveau Carnet d'adresses" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "Lien CardDav" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "Télécharger" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Modifier" + +#: templates/part.chooseaddressbook.rowfields.php:5 msgid "Delete" -msgstr "" +msgstr "Supprimer" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "Télécharger le contact" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "Supprimer le contact" #: templates/part.details.php:34 -msgid "Add Property" -msgstr "" +msgid "Add" +msgstr "Ajouter" -#: templates/part.property.php:9 +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "Nouveau carnet d'adresses" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "Éditer le carnet d'adresses" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "Nom" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "Carnet actif" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "Sauvegarder" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "Envoyer" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "Annuler" + +#: templates/part.property.php:3 msgid "Birthday" -msgstr "" +msgstr "Anniversaire" -#: templates/part.property.php:29 +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "Préféré" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 msgid "Phone" -msgstr "" +msgstr "Téléphone" -#: templates/part.setpropertyform.php:17 -msgid "Edit" -msgstr "" +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "Enregistrer" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "Adresse de synchronisation CardDAV :" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index b1e286ce6ea..87746ef79bb 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-05 15:01+0000\n" -"Last-Translator: bibzor \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-11 20:14+0000\n" +"Last-Translator: Borjan Tchakaloff \n" "Language-Team: French (http://www.transifex.net/projects/p/owncloud/team/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,54 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "Réinitialisation de votre mot de passe Owncloud" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "" +"Utilisez le lien suivant pour réinitialiser votre mot de passe : {link}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" +"Vous allez recevoir un e-mail contenant un lien pour réinitialiser votre mot" +" de passe" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Demande envoyée" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Nom d'utilisateur ou e-mail invalide" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Nom d'utilisateur" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Demander la réinitialisation" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Votre mot de passe a été réinitialisé" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "Retour à la page d'authentification" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Nouveau mot de passe" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Réinitialiser le mot de passe" + #: strings.php:5 msgid "Personal" msgstr "Personnels" @@ -46,54 +94,50 @@ msgstr "Introuvable" msgid "Create an admin account" msgstr "Créer un compte administrateur" -#: templates/installation.php:21 -msgid "Username" -msgstr "Nom d'utilisateur" - -#: templates/installation.php:22 +#: templates/installation.php:26 templates/login.php:12 msgid "Password" msgstr "Mot de passe" -#: templates/installation.php:27 -msgid "Configure the database" -msgstr "Configurer la base de données" - -#: templates/installation.php:32 templates/installation.php:43 -#: templates/installation.php:53 -msgid "will be used" -msgstr "sera utilisé" - -#: templates/installation.php:64 -msgid "Database user" -msgstr "Utilisateur de la base de données" - -#: templates/installation.php:65 -msgid "Database password" -msgstr "Mot de passe de la base de données" - -#: templates/installation.php:66 -msgid "Database name" -msgstr "Nom de la base de données" - -#: templates/installation.php:72 +#: templates/installation.php:32 msgid "Advanced" msgstr "Avancé" -#: templates/installation.php:75 -msgid "Database host" -msgstr "Serveur de la base de données" - -#: templates/installation.php:76 +#: templates/installation.php:34 msgid "Data folder" msgstr "Répertoire des données" +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Configurer la base de données" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "sera utilisé" + #: templates/installation.php:79 +msgid "Database user" +msgstr "Utilisateur de la base de données" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Mot de passe de la base de données" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Nom de la base de données" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Serveur de la base de données" + +#: templates/installation.php:98 msgid "Finish setup" msgstr "Terminer l'installation" #: templates/layout.guest.php:35 -msgid "gives you freedom and control over your own data" -msgstr "vous donne la liberté et le contrôle de vos propres données" +msgid "web services under your control" +msgstr "services web sous votre contrôle" #: templates/layout.user.php:34 msgid "Log out" @@ -103,40 +147,22 @@ msgstr "Se déconnecter" msgid "Settings" msgstr "Paramètres" -#: templates/login.php:4 +#: templates/login.php:5 msgid "Lost your password?" msgstr "Mot de passe perdu ?" -#: templates/login.php:9 templates/login.php:13 +#: templates/login.php:15 msgid "remember" msgstr "se souvenir de moi" +#: templates/login.php:16 +msgid "Log in" +msgstr "Connexion" + #: templates/logout.php:1 msgid "You are logged out." msgstr "Vous êtes désormais déconnecté." -#: templates/lostpassword.php:3 -msgid "You will receive a link to reset your password via Email." -msgstr "" -"Vous allez recevoir un lien par email qui vous permettra de réinitialiser " -"votre mot de passe." - -#: templates/lostpassword.php:5 -msgid "Requested" -msgstr "Nécessaire" - -#: templates/lostpassword.php:8 -msgid "Login failed!" -msgstr "Échec de la connexion !" - -#: templates/lostpassword.php:10 -msgid "Username or Email" -msgstr "Nom d'utilisateur ou Email" - -#: templates/lostpassword.php:11 -msgid "Request reset" -msgstr "Demande de réinitialisation" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "précédent" @@ -145,16 +171,4 @@ msgstr "précédent" msgid "next" msgstr "suivant" -#: templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "Votre mot de passe a été réinitialisé" - -#: templates/resetpassword.php:6 -msgid "New password" -msgstr "Nouveau mot de passe" - -#: templates/resetpassword.php:7 -msgid "Reset password" -msgstr "Réinitialisation du mot de passe" - diff --git a/l10n/fr/files.po b/l10n/fr/files.po index b898f187030..4bdbb70bc56 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-11 20:06+0000\n" +"Last-Translator: Borjan Tchakaloff \n" "Language-Team: French (http://www.transifex.net/projects/p/owncloud/team/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,33 +18,37 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" -#: ajax/upload.php:24 +#: ajax/upload.php:19 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "Aucune erreur, le fichier a été téléversé avec succès" -#: ajax/upload.php:25 +#: ajax/upload.php:20 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "" +"Le fichier téléversé excède la valeur de upload_max_filesize spécifiée dans " +"php.ini" -#: ajax/upload.php:26 +#: ajax/upload.php:21 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" +"Le fichier téléversé excède la valeur de MAX_FILE_SIZE spécifiée dans le " +"formulaire HTML" -#: ajax/upload.php:27 +#: ajax/upload.php:22 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "Le fichier n'a été que partiellement téléversé" -#: ajax/upload.php:28 +#: ajax/upload.php:23 msgid "No file was uploaded" -msgstr "" +msgstr "Aucun fichier n'a été téléversé" -#: ajax/upload.php:29 +#: ajax/upload.php:24 msgid "Missing a temporary folder" -msgstr "" +msgstr "Il manque un répertoire temporaire" -#: appinfo/app.php:7 +#: appinfo/app.php:8 msgid "Files" msgstr "Fichiers" @@ -52,43 +56,55 @@ msgstr "Fichiers" msgid "Maximum upload size" msgstr "Taille max. d'envoi" +#: templates/index.php:7 +msgid "New" +msgstr "Nouveau" + #: templates/index.php:10 +msgid "Text file" +msgstr "Fichier texte" + +#: templates/index.php:11 +msgid "Folder" +msgstr "Dossier" + +#: templates/index.php:12 +msgid "From the web" +msgstr "Depuis le web" + +#: templates/index.php:22 msgid "Upload" msgstr "Envoyer" -#: templates/index.php:17 -msgid "New Folder" -msgstr "Nouveau dossier" - -#: templates/index.php:31 +#: templates/index.php:35 msgid "Nothing in here. Upload something!" msgstr "Il n'y a rien ici ! Envoyez donc quelque chose :)" -#: templates/index.php:39 +#: templates/index.php:43 msgid "Name" msgstr "Nom" -#: templates/index.php:41 +#: templates/index.php:45 msgid "Download" msgstr "Téléchargement" -#: templates/index.php:45 +#: templates/index.php:49 msgid "Size" msgstr "Taille" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Modified" msgstr "Modifié" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Delete" msgstr "Supprimer" -#: templates/index.php:54 +#: templates/index.php:58 msgid "Upload too large" msgstr "Fichier trop volumineux" -#: templates/index.php:56 +#: templates/index.php:60 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." diff --git a/l10n/fr/gallery.po b/l10n/fr/gallery.po new file mode 100644 index 00000000000..452dc5913bd --- /dev/null +++ b/l10n/fr/gallery.po @@ -0,0 +1,53 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: French (http://www.transifex.net/projects/p/owncloud/team/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "Galerie" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "Analyse des répertoires" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "Création des miniatures" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "Voulez-vous supprimer l'album" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "Entrez le nom de l'album" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "Analyser à nouveau" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "Retour" + + diff --git a/l10n/fr/media.po b/l10n/fr/media.po index 5cdf1cd9036..62c9e525cf3 100644 --- a/l10n/fr/media.po +++ b/l10n/fr/media.po @@ -2,14 +2,15 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# Translators: # , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-08-20 05:08+0200\n" -"PO-Revision-Date: 2011-08-20 03:08+0000\n" -"Last-Translator: JanCBorchardt \n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: French (http://www.transifex.net/projects/p/owncloud/team/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,39 +18,35 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" -#: appinfo/app.php:31 +#: appinfo/app.php:32 msgid "Music" msgstr "Musique" -#: templates/music.php:3 +#: templates/music.php:3 templates/player.php:13 msgid "Play" -msgstr "" +msgstr "Play" -#: templates/music.php:4 templates/music.php:30 +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 msgid "Pause" msgstr "Pause" #: templates/music.php:5 msgid "Previous" -msgstr "" +msgstr "Précédent" -#: templates/music.php:6 +#: templates/music.php:6 templates/player.php:15 msgid "Next" -msgstr "" +msgstr "Suivant" #: templates/music.php:7 msgid "Mute" -msgstr "" +msgstr "Muet" #: templates/music.php:8 msgid "Unmute" -msgstr "" +msgstr "Audible" -#: templates/music.php:28 -msgid "Songs scanned" -msgstr "Pistes scannées" - -#: templates/music.php:29 +#: templates/music.php:25 msgid "Rescan Collection" msgstr "Réanalyser la Collection" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 46f9713e9cb..ca7d7a2b70e 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -2,15 +2,17 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # -# , 2011. +# Translators: +# , 2011. # Jan-Christoph Borchardt , 2011. +# , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-04 16:48+0200\n" -"PO-Revision-Date: 2011-09-03 18:25+0000\n" -"Last-Translator: bibzor \n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 16:32+0000\n" +"Last-Translator: icewind \n" "Language-Team: French (http://www.transifex.net/projects/p/owncloud/team/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +20,30 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" -#: ajax/openid.php:13 ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Erreur d'authentification" +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "e-mail modifié" -#: ajax/openid.php:21 -msgid "OpenID Changed" -msgstr "Identifiant OpenID changé" - -#: ajax/openid.php:23 ajax/setlanguage.php:23 +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 msgid "Invalid request" msgstr "Requête invalide" -#: ajax/setlanguage.php:21 +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "Identifiant OpenID changé" + +#: ajax/setlanguage.php:14 msgid "Language changed" msgstr "Langue changée" +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "Niveau de log" + #: templates/apps.php:8 msgid "Add your application" msgstr "Ajoutez votre application" @@ -54,15 +64,15 @@ msgstr "par" msgid "Ask a question" msgstr "Poser une question" -#: templates/help.php:17 +#: templates/help.php:20 msgid "Problems connecting to help database." msgstr "Problème de connexion à la base de données d'aide." -#: templates/help.php:18 +#: templates/help.php:21 msgid "Go there manually." msgstr "S'y rendre manuellement." -#: templates/help.php:26 +#: templates/help.php:29 msgid "Answer" msgstr "Réponse" @@ -72,7 +82,7 @@ msgstr "Vous utilisez" #: templates/personal.php:8 msgid "of the available" -msgstr "sur un total de" +msgstr "d'espace de stockage sur un total de" #: templates/personal.php:13 msgid "Your password got changed" @@ -98,37 +108,54 @@ msgstr "Afficher" msgid "Change password" msgstr "Changer de mot de passe" -#: templates/personal.php:24 templates/personal.php:25 +#: templates/personal.php:24 +msgid "Email" +msgstr "E-mail" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "Votre adresse e-mail" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" +"Entrez votre adresse e-mail pour activer la réinitialisation de mot de passe" + +#: templates/personal.php:32 templates/personal.php:33 msgid "Language" msgstr "Langue" -#: templates/personal.php:30 -msgid "Help translating" -msgstr "Aider à traduire" +#: templates/personal.php:38 +msgid "Help translate" +msgstr "Aidez à traduire" -#: templates/personal.php:37 +#: templates/personal.php:45 msgid "use this address to connect to your ownCloud in your file manager" msgstr "" "utilisez cette adresse pour vous connecter à votre ownCloud depuis un " "explorateur de fichiers" -#: templates/users.php:16 +#: templates/users.php:15 templates/users.php:30 msgid "Name" msgstr "Nom" -#: templates/users.php:17 +#: templates/users.php:16 templates/users.php:31 msgid "Password" msgstr "Mot de passe" -#: templates/users.php:18 templates/users.php:36 +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 msgid "Groups" msgstr "Groupes" -#: templates/users.php:24 +#: templates/users.php:23 msgid "Create" msgstr "Créer" -#: templates/users.php:48 +#: templates/users.php:33 +msgid "Quota" +msgstr "Quota" + +#: templates/users.php:58 msgid "Delete" msgstr "Supprimer" diff --git a/l10n/gl/calendar.po b/l10n/gl/calendar.po new file mode 100644 index 00000000000..1542672b666 --- /dev/null +++ b/l10n/gl/calendar.po @@ -0,0 +1,637 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Xosé M. Lamas , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-20 06:02+0000\n" +"Last-Translator: Xosé M. Lamas \n" +"Language-Team: Galician (http://www.transifex.net/projects/p/owncloud/team/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "Novo fuso horario:" + +#: ajax/settimezone.php:22 +msgid "Timezone changed" +msgstr "Fuso horario trocado" + +#: ajax/settimezone.php:24 +msgid "Invalid request" +msgstr "Petición non válida" + +#: appinfo/app.php:20 templates/calendar.php:14 +#: templates/part.eventform.php:20 +msgid "Calendar" +msgstr "Calendario" + +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Calendario equivocado" + +#: lib/app.php:60 lib/object.php:332 +msgid "Birthday" +msgstr "Cumpleanos" + +#: lib/app.php:61 lib/object.php:333 +msgid "Business" +msgstr "Traballo" + +#: lib/app.php:62 lib/object.php:334 +msgid "Call" +msgstr "Chamada" + +#: lib/app.php:63 lib/object.php:335 +msgid "Clients" +msgstr "Clientes" + +#: lib/app.php:64 lib/object.php:336 +msgid "Deliverer" +msgstr "Remitente" + +#: lib/app.php:65 lib/object.php:337 +msgid "Holidays" +msgstr "Vacacións" + +#: lib/app.php:66 lib/object.php:338 +msgid "Ideas" +msgstr "Ideas" + +#: lib/app.php:67 lib/object.php:339 +msgid "Journey" +msgstr "Viaxe" + +#: lib/app.php:68 lib/object.php:340 +msgid "Jubilee" +msgstr "Aniversario" + +#: lib/app.php:69 lib/object.php:341 +msgid "Meeting" +msgstr "Reunión" + +#: lib/app.php:70 lib/object.php:342 +msgid "Other" +msgstr "Outro" + +#: lib/app.php:71 lib/object.php:343 +msgid "Personal" +msgstr "Personal" + +#: lib/app.php:72 lib/object.php:344 +msgid "Projects" +msgstr "Proxectos" + +#: lib/app.php:73 lib/object.php:345 +msgid "Questions" +msgstr "Preguntas" + +#: lib/app.php:74 lib/object.php:346 +msgid "Work" +msgstr "Traballo" + +#: lib/object.php:353 +msgid "Does not repeat" +msgstr "Non se repite" + +#: lib/object.php:354 +msgid "Daily" +msgstr "A diario" + +#: lib/object.php:355 +msgid "Weekly" +msgstr "Semanalmente" + +#: lib/object.php:356 +msgid "Every Weekday" +msgstr "Tódalas semanas" + +#: lib/object.php:357 +msgid "Bi-Weekly" +msgstr "Cada dúas semanas" + +#: lib/object.php:358 +msgid "Monthly" +msgstr "Mensualmente" + +#: lib/object.php:359 +msgid "Yearly" +msgstr "Anual" + +#: lib/object.php:366 +msgid "never" +msgstr "nunca" + +#: lib/object.php:367 +msgid "by occurrences" +msgstr "por acontecementos" + +#: lib/object.php:368 +msgid "by date" +msgstr "por data" + +#: lib/object.php:375 +msgid "by monthday" +msgstr "por día do mes" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "por día da semana" + +#: lib/object.php:383 templates/lAfix.php:3 +msgid "Monday" +msgstr "Luns" + +#: lib/object.php:384 templates/lAfix.php:4 +msgid "Tuesday" +msgstr "Martes" + +#: lib/object.php:385 templates/lAfix.php:5 +msgid "Wednesday" +msgstr "Mércores" + +#: lib/object.php:386 templates/lAfix.php:6 +msgid "Thursday" +msgstr "Xoves" + +#: lib/object.php:387 templates/lAfix.php:7 +msgid "Friday" +msgstr "Venres" + +#: lib/object.php:388 templates/lAfix.php:8 +msgid "Saturday" +msgstr "Sábado" + +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "Domingo" + +#: lib/object.php:396 +msgid "events week of month" +msgstr "semana dos eventos no mes" + +#: lib/object.php:397 +msgid "first" +msgstr "primeiro" + +#: lib/object.php:398 +msgid "second" +msgstr "segundo" + +#: lib/object.php:399 +msgid "third" +msgstr "terceiro" + +#: lib/object.php:400 +msgid "fourth" +msgstr "cuarto" + +#: lib/object.php:401 +msgid "fifth" +msgstr "quinto" + +#: lib/object.php:402 +msgid "last" +msgstr "último" + +#: lib/object.php:424 templates/lAfix.php:16 +msgid "January" +msgstr "Xaneiro" + +#: lib/object.php:425 templates/lAfix.php:17 +msgid "February" +msgstr "Febreiro" + +#: lib/object.php:426 templates/lAfix.php:18 +msgid "March" +msgstr "Marzo" + +#: lib/object.php:427 templates/lAfix.php:19 +msgid "April" +msgstr "Abril" + +#: lib/object.php:428 templates/lAfix.php:20 +msgid "May" +msgstr "Maio" + +#: lib/object.php:429 templates/lAfix.php:21 +msgid "June" +msgstr "Xuño" + +#: lib/object.php:430 templates/lAfix.php:22 +msgid "July" +msgstr "Xullo" + +#: lib/object.php:431 templates/lAfix.php:23 +msgid "August" +msgstr "Agosto" + +#: lib/object.php:432 templates/lAfix.php:24 +msgid "September" +msgstr "Setembro" + +#: lib/object.php:433 templates/lAfix.php:25 +msgid "October" +msgstr "Outubro" + +#: lib/object.php:434 templates/lAfix.php:26 +msgid "November" +msgstr "Novembro" + +#: lib/object.php:435 templates/lAfix.php:27 +msgid "December" +msgstr "Nadal" + +#: lib/object.php:441 +msgid "by events date" +msgstr "por data dos eventos" + +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "por dia(s) do ano" + +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "por número(s) de semana" + +#: lib/object.php:444 +msgid "by day and month" +msgstr "por día e mes" + +#: lib/object.php:467 +msgid "Not an array" +msgstr "Non é un conxunto" + +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "Data" + +#: lib/search.php:40 +msgid "Cal." +msgstr "Cal." + +#: templates/calendar.php:10 +msgid "All day" +msgstr "Todo o dia" + +#: templates/calendar.php:11 templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "Novo calendario" + +#: templates/calendar.php:12 +msgid "Missing fields" +msgstr "Faltan campos" + +#: templates/calendar.php:13 templates/part.eventform.php:3 +msgid "Title" +msgstr "Título" + +#: templates/calendar.php:15 +msgid "From Date" +msgstr "Desde Data" + +#: templates/calendar.php:16 +msgid "From Time" +msgstr "Desde Hora" + +#: templates/calendar.php:17 +msgid "To Date" +msgstr "a Data" + +#: templates/calendar.php:18 +msgid "To Time" +msgstr "a Hora" + +#: templates/calendar.php:19 +msgid "The event ends before it starts" +msgstr "O evento remata antes de iniciarse" + +#: templates/calendar.php:20 +msgid "There was a database fail" +msgstr "Houbo un erro na base de datos" + +#: templates/calendar.php:38 +msgid "Week" +msgstr "Semana" + +#: templates/calendar.php:39 +msgid "Month" +msgstr "Mes" + +#: templates/calendar.php:40 +msgid "List" +msgstr "Lista" + +#: templates/calendar.php:46 +msgid "Today" +msgstr "Hoxe" + +#: templates/calendar.php:47 +msgid "Calendars" +msgstr "Calendarios" + +#: templates/calendar.php:65 +msgid "There was a fail, while parsing the file." +msgstr "Houbo un erro ao procesar o ficheiro" + +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "Dom." + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "Lun." + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "Mar." + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "Mer." + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "Xov." + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "Ven." + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "Sáb." + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "Xan." + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "Feb." + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "Mar." + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "Abr." + +#: templates/lAfix.php:32 +msgid "May." +msgstr "Mai." + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "Xuñ." + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "Xul." + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "Ago." + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "Set." + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "Out." + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "Nov." + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "Nad." + +#: templates/part.choosecalendar.php:1 +msgid "Choose active calendars" +msgstr "Escolla os calendarios activos" + +#: templates/part.choosecalendar.php:20 +#: templates/part.choosecalendar.rowfields.php:4 +msgid "CalDav Link" +msgstr "Ligazón CalDav" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Download" +msgstr "Baixar" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Edit" +msgstr "Editar" + +#: templates/part.choosecalendar.rowfields.php:4 +#: templates/part.editevent.php:9 +msgid "Delete" +msgstr "Borrar" + +#: templates/part.editcalendar.php:9 +msgid "New calendar" +msgstr "Novo calendario" + +#: templates/part.editcalendar.php:9 +msgid "Edit calendar" +msgstr "Editar calendario" + +#: templates/part.editcalendar.php:12 +msgid "Displayname" +msgstr "Mostrar nome" + +#: templates/part.editcalendar.php:23 +msgid "Active" +msgstr "Activo" + +#: templates/part.editcalendar.php:29 +msgid "Calendar color" +msgstr "Cor do calendario" + +#: templates/part.editcalendar.php:42 +msgid "Save" +msgstr "Gardar" + +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 +#: templates/part.newevent.php:6 +msgid "Submit" +msgstr "Enviar" + +#: templates/part.editcalendar.php:43 +msgid "Cancel" +msgstr "Cancelar" + +#: templates/part.editevent.php:1 +msgid "Edit an event" +msgstr "Editar un evento" + +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "Exportar" + +#: templates/part.eventform.php:5 +msgid "Title of the Event" +msgstr "Título do evento" + +#: templates/part.eventform.php:11 +msgid "Category" +msgstr "Categoría" + +#: templates/part.eventform.php:13 +msgid "Select category" +msgstr "Seleccionar categoría" + +#: templates/part.eventform.php:37 +msgid "All Day Event" +msgstr "Evento para todo o día" + +#: templates/part.eventform.php:41 +msgid "From" +msgstr "Desde" + +#: templates/part.eventform.php:49 +msgid "To" +msgstr "Para" + +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "Opcións avanzadas" + +#: templates/part.eventform.php:61 +msgid "Repeat" +msgstr "Repetir" + +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "Avanzado" + +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "Seleccionar días da semana" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "Seleccionar días" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "e día dos eventos no ano." + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "e día dos eventos no mes." + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "Seleccione meses" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "Seleccione semanas" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "e semana dos eventos no ano." + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "Intervalo" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "Fin" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "acontecementos" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Localización" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Localización do evento" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Descripción" + +#: templates/part.eventform.php:218 +msgid "Description of the Event" +msgstr "Descripción do evento" + +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "Importar ficheiro de calendario" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "Por favor, seleccione o calendario" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "crear un novo calendario" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "Nome do novo calendario" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "Importar" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "Importar calendario" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "Calendario importado con éxito" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "Pechar cadro" + +#: templates/part.newevent.php:1 +msgid "Create a new event" +msgstr "Crear un novo evento" + +#: templates/settings.php:13 +msgid "Timezone" +msgstr "Fuso horario" + +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "Comprobar sempre cambios de fuso horario" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "Formato de hora" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24h" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12h" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "Dirección de sincronización do calendario CalDAV:" + + diff --git a/l10n/gl/contacts.po b/l10n/gl/contacts.po new file mode 100644 index 00000000000..b4590c4696d --- /dev/null +++ b/l10n/gl/contacts.po @@ -0,0 +1,283 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Xosé M. Lamas , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Galician (http://www.transifex.net/projects/p/owncloud/team/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." +msgstr "Erro (des)activando o directorio" + +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "Houbo un erro engadindo o contacto" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "Non se pode engadir unha propiedade baldeira" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "A lo menos un dos campos de dirección ten que ser cuberto" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "Erro engadindo unha propiedade do contacto." + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "Erro engadindo directorio." + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "Erro activando o directorio." + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "Erro borrando propiedade do contacto." + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "Erro actualizando a propiedade do contacto." + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "Erro actualizando o directorio." + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "Contactos" + +#: lib/app.php:52 +msgid "This is not your addressbook." +msgstr "Este non é o seu directorio" + +#: lib/app.php:61 photo.php:36 +msgid "Contact could not be found." +msgstr "Non se atopou o contacto" + +#: lib/app.php:89 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" +"A información sobre a vCard é incorrecta. Por favor volte a cargar a páxina." + +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 +msgid "Address" +msgstr "Dirección" + +#: lib/app.php:102 templates/part.addcardform.php:43 +msgid "Telephone" +msgstr "Teléfono" + +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 +msgid "Email" +msgstr "Correo electrónico" + +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 +msgid "Organization" +msgstr "Organización" + +#: lib/app.php:116 lib/app.php:123 +msgid "Work" +msgstr "Emprego" + +#: lib/app.php:117 lib/app.php:121 +msgid "Home" +msgstr "Casa" + +#: lib/app.php:122 +msgid "Mobile" +msgstr "Móbil" + +#: lib/app.php:124 +msgid "Text" +msgstr "Texto" + +#: lib/app.php:125 +msgid "Voice" +msgstr "Voz" + +#: lib/app.php:126 +msgid "Fax" +msgstr "Fax" + +#: lib/app.php:127 +msgid "Video" +msgstr "Vídeo" + +#: lib/app.php:128 +msgid "Pager" +msgstr "Paxinador" + +#: lib/search.php:22 +msgid "Contact" +msgstr "Contacto" + +#: photo.php:42 +msgid "This is not your contact." +msgstr "Este non é un dos seus contactos" + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Engadir contacto" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "Directorios" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "Directorio" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Nome" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "Escriba" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "Apartado de Correos" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Extendido" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Rúa" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Cidade" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Rexión" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "Código Postal" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "País" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Crear contacto" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "Escolla os Directorios Activos" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "Novo Directorio" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "Ligazón CardDav" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "Baixar" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Editar" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Delete" +msgstr "Eliminar" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "Descargar contacto" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "Borrar contacto" + +#: templates/part.details.php:34 +msgid "Add" +msgstr "Engadir" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "Novo Directorio" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "Editar Directorio" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "Mostrar nome" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "Activo" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "Gardar" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "Enviar" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "Cancelar" + +#: templates/part.property.php:3 +msgid "Birthday" +msgstr "Cumpleanos" + +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "Preferido" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 +msgid "Phone" +msgstr "Teléfono" + +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "Actualizar" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "Dirección de sincronización CardDAV:" + + diff --git a/l10n/gl/core.po b/l10n/gl/core.po new file mode 100644 index 00000000000..f2ae34598d4 --- /dev/null +++ b/l10n/gl/core.po @@ -0,0 +1,172 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Xosé M. Lamas , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 05:42+0000\n" +"Last-Translator: Xosé M. Lamas \n" +"Language-Team: Galician (http://www.transifex.net/projects/p/owncloud/team/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "Restablecemento do contrasinal de Owncloud" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "Use a seguinte ligazón para restablecer o contrasinal: {link}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" +"Recibirás unha ligazón por correo electrónico para restablecer o contrasinal" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Solicitado" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Fallou a conexión!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Nome de usuario" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Petición de restablecemento" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "O contrasinal foi restablecido" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "A páxina de conexión" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Novo contrasinal" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Restablecer contrasinal" + +#: strings.php:5 +msgid "Personal" +msgstr "Personal" + +#: strings.php:6 +msgid "Users" +msgstr "Usuarios" + +#: strings.php:7 +msgid "Apps" +msgstr "Aplicativos" + +#: strings.php:8 +msgid "Admin" +msgstr "Admin" + +#: strings.php:9 +msgid "Help" +msgstr "Axuda" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "Nube non atopada" + +#: templates/installation.php:20 +msgid "Create an admin account" +msgstr "Crear unha contra de administrador" + +#: templates/installation.php:26 templates/login.php:12 +msgid "Password" +msgstr "Contrasinal" + +#: templates/installation.php:32 +msgid "Advanced" +msgstr "Avanzado" + +#: templates/installation.php:34 +msgid "Data folder" +msgstr "Cartafol de datos" + +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Configurar a base de datos" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "será utilizado" + +#: templates/installation.php:79 +msgid "Database user" +msgstr "Usuario da base de datos" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Contrasinal da base de datos" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Nome da base de datos" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Servidor da base de datos" + +#: templates/installation.php:98 +msgid "Finish setup" +msgstr "Rematar configuración" + +#: templates/layout.guest.php:35 +msgid "web services under your control" +msgstr "servizos web baixo o seu control" + +#: templates/layout.user.php:34 +msgid "Log out" +msgstr "Desconectar" + +#: templates/layout.user.php:46 templates/layout.user.php:47 +msgid "Settings" +msgstr "Preferencias" + +#: templates/login.php:5 +msgid "Lost your password?" +msgstr "Perdéchelo contrasinal?" + +#: templates/login.php:15 +msgid "remember" +msgstr "lembrar" + +#: templates/login.php:16 +msgid "Log in" +msgstr "Conectar" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "Está desconectado" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "anterior" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "seguinte" + + diff --git a/l10n/gl/files.po b/l10n/gl/files.po new file mode 100644 index 00000000000..9b2c1ab8fb5 --- /dev/null +++ b/l10n/gl/files.po @@ -0,0 +1,113 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Xosé M. Lamas , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 05:52+0000\n" +"Last-Translator: Xosé M. Lamas \n" +"Language-Team: Galician (http://www.transifex.net/projects/p/owncloud/team/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/upload.php:19 +msgid "There is no error, the file uploaded with success" +msgstr "Non hai erros, o ficheiro subeuse con éxito" + +#: ajax/upload.php:20 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "O ficheiro subido supera a directiva upload_max_filesize no php.ini" + +#: ajax/upload.php:21 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" +"O ficheiro subido supera a directiva MAX_FILE_SIZE que foi indicada no " +"formulario HTML" + +#: ajax/upload.php:22 +msgid "The uploaded file was only partially uploaded" +msgstr "O ficheiro subido foi só parcialmente subido" + +#: ajax/upload.php:23 +msgid "No file was uploaded" +msgstr "Non se subeu ningún ficheiro" + +#: ajax/upload.php:24 +msgid "Missing a temporary folder" +msgstr "Falta un cartafol temporal" + +#: appinfo/app.php:8 +msgid "Files" +msgstr "Ficheiros" + +#: templates/admin.php:5 +msgid "Maximum upload size" +msgstr "Tamaño máximo de subida" + +#: templates/index.php:7 +msgid "New" +msgstr "Novo" + +#: templates/index.php:10 +msgid "Text file" +msgstr "Ficheiro de texto" + +#: templates/index.php:11 +msgid "Folder" +msgstr "Cartafol" + +#: templates/index.php:12 +msgid "From the web" +msgstr "Desde a rede" + +#: templates/index.php:22 +msgid "Upload" +msgstr "Subir" + +#: templates/index.php:35 +msgid "Nothing in here. Upload something!" +msgstr "Nada por aquí. Sube algo!" + +#: templates/index.php:43 +msgid "Name" +msgstr "Nome" + +#: templates/index.php:45 +msgid "Download" +msgstr "Baixar" + +#: templates/index.php:49 +msgid "Size" +msgstr "Tamaño" + +#: templates/index.php:50 +msgid "Modified" +msgstr "Modificado" + +#: templates/index.php:50 +msgid "Delete" +msgstr "Eliminar" + +#: templates/index.php:58 +msgid "Upload too large" +msgstr "Subida demasiado grande" + +#: templates/index.php:60 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" +"Os ficheiros que tratas de subir superan o tamaño máximo permitido neste " +"servidor" + + diff --git a/l10n/gl/gallery.po b/l10n/gl/gallery.po new file mode 100644 index 00000000000..6b8306e957d --- /dev/null +++ b/l10n/gl/gallery.po @@ -0,0 +1,53 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Xosé M. Lamas , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Galician (http://www.transifex.net/projects/p/owncloud/team/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "Galería" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "Voltar a analizar" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "Atrás" + + diff --git a/l10n/gl/media.po b/l10n/gl/media.po new file mode 100644 index 00000000000..dfd0987c76a --- /dev/null +++ b/l10n/gl/media.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Xosé M. Lamas , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 06:13+0000\n" +"Last-Translator: Xosé M. Lamas \n" +"Language-Team: Galician (http://www.transifex.net/projects/p/owncloud/team/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:32 templates/player.php:9 +msgid "Music" +msgstr "Música" + +#: templates/music.php:3 templates/player.php:13 +msgid "Play" +msgstr "Reproducir" + +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 +msgid "Pause" +msgstr "Pausa" + +#: templates/music.php:5 +msgid "Previous" +msgstr "Anterior" + +#: templates/music.php:6 templates/player.php:15 +msgid "Next" +msgstr "Seguinte" + +#: templates/music.php:7 +msgid "Mute" +msgstr "Silenciar" + +#: templates/music.php:8 +msgid "Unmute" +msgstr "Restaurar volume" + +#: templates/music.php:25 +msgid "Rescan Collection" +msgstr "Voltar a analizar a Colección" + +#: templates/music.php:37 +msgid "Artist" +msgstr "Artista" + +#: templates/music.php:38 +msgid "Album" +msgstr "Album" + +#: templates/music.php:39 +msgid "Title" +msgstr "Título" + + diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po new file mode 100644 index 00000000000..eac9a22b6ff --- /dev/null +++ b/l10n/gl/settings.po @@ -0,0 +1,160 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Xosé M. Lamas , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-20 06:00+0000\n" +"Last-Translator: Xosé M. Lamas \n" +"Language-Team: Galician (http://www.transifex.net/projects/p/owncloud/team/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "Correo electrónico mudado" + +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 +msgid "Invalid request" +msgstr "Petición non correcta" + +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "Mudou o OpenID" + +#: ajax/setlanguage.php:14 +msgid "Language changed" +msgstr "O idioma mudou" + +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "Galego" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "Nivel de rexistro" + +#: templates/apps.php:8 +msgid "Add your application" +msgstr "Engada o seu aplicativo" + +#: templates/apps.php:21 +msgid "Select an App" +msgstr "Escolla un Aplicativo" + +#: templates/apps.php:23 +msgid "-licensed" +msgstr "-autorizado" + +#: templates/apps.php:23 +msgid "by" +msgstr "por" + +#: templates/help.php:8 +msgid "Ask a question" +msgstr "Pregunte" + +#: templates/help.php:20 +msgid "Problems connecting to help database." +msgstr "Problemas conectando coa base de datos de axuda" + +#: templates/help.php:21 +msgid "Go there manually." +msgstr "Ir manualmente" + +#: templates/help.php:29 +msgid "Answer" +msgstr "Resposta" + +#: templates/personal.php:8 +msgid "You use" +msgstr "Vostede usa" + +#: templates/personal.php:8 +msgid "of the available" +msgstr "dun total de" + +#: templates/personal.php:13 +msgid "Your password got changed" +msgstr "O seu contrasinal mudou" + +#: templates/personal.php:14 +msgid "Unable to change your password" +msgstr "Incapaz de trocar o seu contrasinal" + +#: templates/personal.php:15 +msgid "Current password" +msgstr "Contrasinal actual" + +#: templates/personal.php:16 +msgid "New password" +msgstr "Novo contrasinal" + +#: templates/personal.php:17 +msgid "show" +msgstr "amosar" + +#: templates/personal.php:18 +msgid "Change password" +msgstr "Mudar contrasinal" + +#: templates/personal.php:24 +msgid "Email" +msgstr "Correo electrónico" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "A súa dirección de correo electrónico" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" +"Escriba unha dirección de correo electrónico para habilitar a recuperación " +"do contrasinal" + +#: templates/personal.php:32 templates/personal.php:33 +msgid "Language" +msgstr "Idioma" + +#: templates/personal.php:38 +msgid "Help translate" +msgstr "Axude na tradución" + +#: templates/personal.php:45 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "" +"utilice esta dirección para conectar o teu ownCloud no xestor de ficheiros" + +#: templates/users.php:15 templates/users.php:30 +msgid "Name" +msgstr "Nome" + +#: templates/users.php:16 templates/users.php:31 +msgid "Password" +msgstr "Contrasinal" + +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 +msgid "Groups" +msgstr "Grupos" + +#: templates/users.php:23 +msgid "Create" +msgstr "Crear" + +#: templates/users.php:33 +msgid "Quota" +msgstr "Quota" + +#: templates/users.php:58 +msgid "Delete" +msgstr "Borrar" + + diff --git a/l10n/he/calendar.po b/l10n/he/calendar.po new file mode 100644 index 00000000000..fd3ee1ab0f4 --- /dev/null +++ b/l10n/he/calendar.po @@ -0,0 +1,639 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Elad Alfassa , 2011. +# , 2011. +# Yaron Shahrabani , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-15 13:45+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Hebrew (http://www.transifex.net/projects/p/owncloud/team/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "" + +#: ajax/settimezone.php:22 +msgid "Timezone changed" +msgstr "אזור זמן השתנה" + +#: ajax/settimezone.php:24 +msgid "Invalid request" +msgstr "בקשה לא חוקית" + +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 +msgid "Calendar" +msgstr "ח שנה" + +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "לוח שנה לא נכון" + +#: lib/app.php:60 lib/object.php:332 +msgid "Birthday" +msgstr "יום הולדת" + +#: lib/app.php:61 lib/object.php:333 +msgid "Business" +msgstr "עסקים" + +#: lib/app.php:62 lib/object.php:334 +msgid "Call" +msgstr "שיחה" + +#: lib/app.php:63 lib/object.php:335 +msgid "Clients" +msgstr "לקוחות" + +#: lib/app.php:64 lib/object.php:336 +msgid "Deliverer" +msgstr "משלוח" + +#: lib/app.php:65 lib/object.php:337 +msgid "Holidays" +msgstr "חגים" + +#: lib/app.php:66 lib/object.php:338 +msgid "Ideas" +msgstr "רעיונות" + +#: lib/app.php:67 lib/object.php:339 +msgid "Journey" +msgstr "מסע" + +#: lib/app.php:68 lib/object.php:340 +msgid "Jubilee" +msgstr "יובל" + +#: lib/app.php:69 lib/object.php:341 +msgid "Meeting" +msgstr "פגישה" + +#: lib/app.php:70 lib/object.php:342 +msgid "Other" +msgstr "אחר" + +#: lib/app.php:71 lib/object.php:343 +msgid "Personal" +msgstr "אישי" + +#: lib/app.php:72 lib/object.php:344 +msgid "Projects" +msgstr "פרוייקטים" + +#: lib/app.php:73 lib/object.php:345 +msgid "Questions" +msgstr "שאלות" + +#: lib/app.php:74 lib/object.php:346 +msgid "Work" +msgstr "עבודה" + +#: lib/object.php:353 +msgid "Does not repeat" +msgstr "ללא חזרה" + +#: lib/object.php:354 +msgid "Daily" +msgstr "יומי" + +#: lib/object.php:355 +msgid "Weekly" +msgstr "שבועי" + +#: lib/object.php:356 +msgid "Every Weekday" +msgstr "כל יום עבודה" + +#: lib/object.php:357 +msgid "Bi-Weekly" +msgstr "דו שבועי" + +#: lib/object.php:358 +msgid "Monthly" +msgstr "חודשי" + +#: lib/object.php:359 +msgid "Yearly" +msgstr "שנתי" + +#: lib/object.php:366 +msgid "never" +msgstr "" + +#: lib/object.php:367 +msgid "by occurrences" +msgstr "" + +#: lib/object.php:368 +msgid "by date" +msgstr "" + +#: lib/object.php:375 +msgid "by monthday" +msgstr "" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "" + +#: lib/object.php:383 templates/lAfix.php:3 +msgid "Monday" +msgstr "" + +#: lib/object.php:384 templates/lAfix.php:4 +msgid "Tuesday" +msgstr "" + +#: lib/object.php:385 templates/lAfix.php:5 +msgid "Wednesday" +msgstr "" + +#: lib/object.php:386 templates/lAfix.php:6 +msgid "Thursday" +msgstr "" + +#: lib/object.php:387 templates/lAfix.php:7 +msgid "Friday" +msgstr "" + +#: lib/object.php:388 templates/lAfix.php:8 +msgid "Saturday" +msgstr "" + +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "" + +#: lib/object.php:396 +msgid "events week of month" +msgstr "" + +#: lib/object.php:397 +msgid "first" +msgstr "" + +#: lib/object.php:398 +msgid "second" +msgstr "" + +#: lib/object.php:399 +msgid "third" +msgstr "" + +#: lib/object.php:400 +msgid "fourth" +msgstr "" + +#: lib/object.php:401 +msgid "fifth" +msgstr "" + +#: lib/object.php:402 +msgid "last" +msgstr "" + +#: lib/object.php:424 templates/lAfix.php:16 +msgid "January" +msgstr "" + +#: lib/object.php:425 templates/lAfix.php:17 +msgid "February" +msgstr "" + +#: lib/object.php:426 templates/lAfix.php:18 +msgid "March" +msgstr "" + +#: lib/object.php:427 templates/lAfix.php:19 +msgid "April" +msgstr "" + +#: lib/object.php:428 templates/lAfix.php:20 +msgid "May" +msgstr "" + +#: lib/object.php:429 templates/lAfix.php:21 +msgid "June" +msgstr "" + +#: lib/object.php:430 templates/lAfix.php:22 +msgid "July" +msgstr "" + +#: lib/object.php:431 templates/lAfix.php:23 +msgid "August" +msgstr "" + +#: lib/object.php:432 templates/lAfix.php:24 +msgid "September" +msgstr "" + +#: lib/object.php:433 templates/lAfix.php:25 +msgid "October" +msgstr "" + +#: lib/object.php:434 templates/lAfix.php:26 +msgid "November" +msgstr "" + +#: lib/object.php:435 templates/lAfix.php:27 +msgid "December" +msgstr "" + +#: lib/object.php:441 +msgid "by events date" +msgstr "" + +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "" + +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "" + +#: lib/object.php:444 +msgid "by day and month" +msgstr "" + +#: lib/object.php:467 +msgid "Not an array" +msgstr "לא מערך" + +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "" + +#: lib/search.php:40 +msgid "Cal." +msgstr "" + +#: templates/calendar.php:10 +msgid "All day" +msgstr "היום" + +#: templates/calendar.php:11 +msgid "Missing fields" +msgstr "" + +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" +msgstr "כותרת" + +#: templates/calendar.php:14 +msgid "From Date" +msgstr "" + +#: templates/calendar.php:15 +msgid "From Time" +msgstr "" + +#: templates/calendar.php:16 +msgid "To Date" +msgstr "" + +#: templates/calendar.php:17 +msgid "To Time" +msgstr "" + +#: templates/calendar.php:18 +msgid "The event ends before it starts" +msgstr "" + +#: templates/calendar.php:19 +msgid "There was a database fail" +msgstr "" + +#: templates/calendar.php:52 +msgid "Week" +msgstr "שבוע" + +#: templates/calendar.php:53 +msgid "Month" +msgstr "חודש" + +#: templates/calendar.php:54 +msgid "List" +msgstr "רשימה" + +#: templates/calendar.php:59 +msgid "Today" +msgstr "היום" + +#: templates/calendar.php:60 +msgid "Calendars" +msgstr "לוחות שנה" + +#: templates/calendar.php:78 +msgid "There was a fail, while parsing the file." +msgstr "אירעה שגיאה בעת פענוח הקובץ." + +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "" + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "" + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "" + +#: templates/lAfix.php:32 +msgid "May." +msgstr "" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "" + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "" + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "" + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "" + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "" + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "" + +#: templates/part.choosecalendar.php:1 +msgid "Choose active calendars" +msgstr "בחר לוחות שנה פעילים" + +#: templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "לוח שנה חדש" + +#: templates/part.choosecalendar.php:20 +#: templates/part.choosecalendar.rowfields.php:4 +msgid "CalDav Link" +msgstr "קישור CalDav" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Download" +msgstr "הורדה" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Edit" +msgstr "עריכה" + +#: templates/part.choosecalendar.rowfields.php:4 +#: templates/part.editevent.php:9 +msgid "Delete" +msgstr "מחיקה" + +#: templates/part.editcalendar.php:9 +msgid "New calendar" +msgstr "לוח שנה חדש" + +#: templates/part.editcalendar.php:9 +msgid "Edit calendar" +msgstr "עריכת לוח שנה" + +#: templates/part.editcalendar.php:12 +msgid "Displayname" +msgstr "שם תצוגה" + +#: templates/part.editcalendar.php:23 +msgid "Active" +msgstr "פעיל" + +#: templates/part.editcalendar.php:29 +msgid "Calendar color" +msgstr "צבע לוח שנה" + +#: templates/part.editcalendar.php:42 +msgid "Save" +msgstr "שמירה" + +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 +#: templates/part.newevent.php:6 +msgid "Submit" +msgstr "שליחה" + +#: templates/part.editcalendar.php:43 +msgid "Cancel" +msgstr "ביטול" + +#: templates/part.editevent.php:1 +msgid "Edit an event" +msgstr "עריכת אירוע" + +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "יצוא" + +#: templates/part.eventform.php:5 +msgid "Title of the Event" +msgstr "כותרת האירוע" + +#: templates/part.eventform.php:11 +msgid "Category" +msgstr "קטגוריה" + +#: templates/part.eventform.php:13 +msgid "Select category" +msgstr "בחר קטגוריה" + +#: templates/part.eventform.php:37 +msgid "All Day Event" +msgstr "אירוע של כל היום" + +#: templates/part.eventform.php:41 +msgid "From" +msgstr "מאת" + +#: templates/part.eventform.php:49 +msgid "To" +msgstr "עבור" + +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "" + +#: templates/part.eventform.php:61 +msgid "Repeat" +msgstr "חזרה" + +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "" + +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "מיקום" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "מיקום האירוע" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "תיאור" + +#: templates/part.eventform.php:218 +msgid "Description of the Event" +msgstr "תיאור האירוע" + +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "יבוא" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "" + +#: templates/part.newevent.php:1 +msgid "Create a new event" +msgstr "יצירת אירוע חדש" + +#: templates/settings.php:13 +msgid "Timezone" +msgstr "אזור זמן" + +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "" + +#: templates/settings.php:34 +msgid "24h" +msgstr "" + +#: templates/settings.php:35 +msgid "12h" +msgstr "" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "" + + diff --git a/l10n/he/contacts.po b/l10n/he/contacts.po new file mode 100644 index 00000000000..3f9ecf49061 --- /dev/null +++ b/l10n/he/contacts.po @@ -0,0 +1,282 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Hebrew (http://www.transifex.net/projects/p/owncloud/team/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." +msgstr "" + +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: lib/app.php:52 +msgid "This is not your addressbook." +msgstr "זהו אינו ספר הכתובות שלך" + +#: lib/app.php:61 photo.php:36 +msgid "Contact could not be found." +msgstr "לא ניתן לאתר איש קשר" + +#: lib/app.php:89 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "המידע אודות vCard אינו נכון. נא לטעון מחדש את הדף." + +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 +msgid "Address" +msgstr "כתובת" + +#: lib/app.php:102 templates/part.addcardform.php:43 +msgid "Telephone" +msgstr "טלפון" + +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 +msgid "Email" +msgstr "דואר אלקטרוני" + +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 +msgid "Organization" +msgstr "ארגון" + +#: lib/app.php:116 lib/app.php:123 +msgid "Work" +msgstr "עבודה" + +#: lib/app.php:117 lib/app.php:121 +msgid "Home" +msgstr "בית" + +#: lib/app.php:122 +msgid "Mobile" +msgstr "נייד" + +#: lib/app.php:124 +msgid "Text" +msgstr "טקסט" + +#: lib/app.php:125 +msgid "Voice" +msgstr "קולי" + +#: lib/app.php:126 +msgid "Fax" +msgstr "פקס" + +#: lib/app.php:127 +msgid "Video" +msgstr "וידאו" + +#: lib/app.php:128 +msgid "Pager" +msgstr "זימונית" + +#: lib/search.php:22 +msgid "Contact" +msgstr "" + +#: photo.php:42 +msgid "This is not your contact." +msgstr "זהו אינו איש קשר שלך" + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "הוספת איש קשר" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "שם" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "תא דואר" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "מורחב" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "רחוב" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "עיר" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "אזור" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "מיקוד" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "מדינה" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "יצירת איש קשר" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "עריכה" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Delete" +msgstr "מחיקה" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "" + +#: templates/part.property.php:3 +msgid "Birthday" +msgstr "יום הולדת" + +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 +msgid "Phone" +msgstr "טלפון" + +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "" + + diff --git a/l10n/he/core.po b/l10n/he/core.po new file mode 100644 index 00000000000..705a03e4d94 --- /dev/null +++ b/l10n/he/core.po @@ -0,0 +1,172 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011. +# Yaron Shahrabani , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Hebrew (http://www.transifex.net/projects/p/owncloud/team/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "יישלח לתיבת הדוא״ל שלך קישור לאיפוס הססמה." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "נדרש" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "הכניסה נכשלה!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "שם משתמש" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "בקשת איפוס" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "הססמה שלך אופסה" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "ססמה חדשה" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "איפוס ססמה" + +#: strings.php:5 +msgid "Personal" +msgstr "אישי" + +#: strings.php:6 +msgid "Users" +msgstr "משתמשים" + +#: strings.php:7 +msgid "Apps" +msgstr "יישומים" + +#: strings.php:8 +msgid "Admin" +msgstr "מנהל" + +#: strings.php:9 +msgid "Help" +msgstr "עזרה" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "ענן לא נמצא" + +#: templates/installation.php:20 +msgid "Create an admin account" +msgstr "יצירת חשבון מנהל" + +#: templates/installation.php:26 templates/login.php:12 +msgid "Password" +msgstr "ססמה" + +#: templates/installation.php:32 +msgid "Advanced" +msgstr "מתקדם" + +#: templates/installation.php:34 +msgid "Data folder" +msgstr "תיקיית נתונים" + +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "הגדרת מסד הנתונים" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "ינוצלו" + +#: templates/installation.php:79 +msgid "Database user" +msgstr "שם משתמש במסד הנתונים" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "ססמת מסד הנתונים" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "שם מסד הנתונים" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "שרת בסיס נתונים" + +#: templates/installation.php:98 +msgid "Finish setup" +msgstr "סיום התקנה" + +#: templates/layout.guest.php:35 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:34 +msgid "Log out" +msgstr "התנתקות" + +#: templates/layout.user.php:46 templates/layout.user.php:47 +msgid "Settings" +msgstr "הגדרות" + +#: templates/login.php:5 +msgid "Lost your password?" +msgstr "שכחת את ססמתך?" + +#: templates/login.php:15 +msgid "remember" +msgstr "שמירת הססמה" + +#: templates/login.php:16 +msgid "Log in" +msgstr "" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "אינך מחובר." + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "קודם" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "הבא" + + diff --git a/l10n/he/files.po b/l10n/he/files.po new file mode 100644 index 00000000000..1147b3e49d7 --- /dev/null +++ b/l10n/he/files.po @@ -0,0 +1,109 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Hebrew (http://www.transifex.net/projects/p/owncloud/team/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/upload.php:19 +msgid "There is no error, the file uploaded with success" +msgstr "לא אירעה תקלה, הקבצים הועלו בהצלחה" + +#: ajax/upload.php:20 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "הקובץ שהועלה חרג מההנחיה upload_max_filesize בקובץ php.ini" + +#: ajax/upload.php:21 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "הקובץ שהועלה חרג מההנחיה MAX_FILE_SIZE שצוינה בטופס ה־HTML" + +#: ajax/upload.php:22 +msgid "The uploaded file was only partially uploaded" +msgstr "הקובץ שהועלה הועלה בצורה חלקית" + +#: ajax/upload.php:23 +msgid "No file was uploaded" +msgstr "לא הועלו קבצים" + +#: ajax/upload.php:24 +msgid "Missing a temporary folder" +msgstr "תיקייה זמנית חסרה" + +#: appinfo/app.php:8 +msgid "Files" +msgstr "קבצים" + +#: templates/admin.php:5 +msgid "Maximum upload size" +msgstr "גודל העלאה מקסימלי" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:11 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From the web" +msgstr "" + +#: templates/index.php:22 +msgid "Upload" +msgstr "העלאה" + +#: templates/index.php:35 +msgid "Nothing in here. Upload something!" +msgstr "אין כאן שום דבר. אולי ברצונך להעלות משהו?" + +#: templates/index.php:43 +msgid "Name" +msgstr "שם" + +#: templates/index.php:45 +msgid "Download" +msgstr "הורדה" + +#: templates/index.php:49 +msgid "Size" +msgstr "גודל" + +#: templates/index.php:50 +msgid "Modified" +msgstr "זמן שינוי" + +#: templates/index.php:50 +msgid "Delete" +msgstr "מחיקה" + +#: templates/index.php:58 +msgid "Upload too large" +msgstr "העלאה גדולה מידי" + +#: templates/index.php:60 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "הקבצים שניסית להעלות חרגו מהגודל המקסימלי להעלאת קבצים על שרת זה." + + diff --git a/l10n/he/gallery.po b/l10n/he/gallery.po new file mode 100644 index 00000000000..e887ef15e04 --- /dev/null +++ b/l10n/he/gallery.po @@ -0,0 +1,52 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Hebrew (http://www.transifex.net/projects/p/owncloud/team/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" + + diff --git a/l10n/he/media.po b/l10n/he/media.po new file mode 100644 index 00000000000..e578ad99185 --- /dev/null +++ b/l10n/he/media.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Hebrew (http://www.transifex.net/projects/p/owncloud/team/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:32 +msgid "Music" +msgstr "מוזיקה" + +#: templates/music.php:3 templates/player.php:13 +msgid "Play" +msgstr "נגן" + +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 +msgid "Pause" +msgstr "השהה" + +#: templates/music.php:5 +msgid "Previous" +msgstr "קודם" + +#: templates/music.php:6 templates/player.php:15 +msgid "Next" +msgstr "הבא" + +#: templates/music.php:7 +msgid "Mute" +msgstr "השתק" + +#: templates/music.php:8 +msgid "Unmute" +msgstr "בטל השתקה" + +#: templates/music.php:25 +msgid "Rescan Collection" +msgstr "סריקת אוסף מחדש" + +#: templates/music.php:37 +msgid "Artist" +msgstr "מבצע" + +#: templates/music.php:38 +msgid "Album" +msgstr "אלבום" + +#: templates/music.php:39 +msgid "Title" +msgstr "כותרת" + + diff --git a/l10n/he/settings.po b/l10n/he/settings.po new file mode 100644 index 00000000000..18942597800 --- /dev/null +++ b/l10n/he/settings.po @@ -0,0 +1,157 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 16:32+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Hebrew (http://www.transifex.net/projects/p/owncloud/team/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "" + +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 +msgid "Invalid request" +msgstr "בקשה לא חוקית" + +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID השתנה" + +#: ajax/setlanguage.php:14 +msgid "Language changed" +msgstr "שפה השתנתה" + +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "" + +#: templates/apps.php:8 +msgid "Add your application" +msgstr "הוספת היישום שלך" + +#: templates/apps.php:21 +msgid "Select an App" +msgstr "בחירת יישום" + +#: templates/apps.php:23 +msgid "-licensed" +msgstr "רשיון" + +#: templates/apps.php:23 +msgid "by" +msgstr "מאת" + +#: templates/help.php:8 +msgid "Ask a question" +msgstr "שאל שאלה" + +#: templates/help.php:20 +msgid "Problems connecting to help database." +msgstr "בעיות בהתחברות לבסיס נתוני העזרה" + +#: templates/help.php:21 +msgid "Go there manually." +msgstr "גש לשם באופן ידני" + +#: templates/help.php:29 +msgid "Answer" +msgstr "מענה" + +#: templates/personal.php:8 +msgid "You use" +msgstr "הנך משתמש " + +#: templates/personal.php:8 +msgid "of the available" +msgstr "מתוך " + +#: templates/personal.php:13 +msgid "Your password got changed" +msgstr "הססמה שלך שונתה" + +#: templates/personal.php:14 +msgid "Unable to change your password" +msgstr "לא ניתן לשנות את הססמה שלך" + +#: templates/personal.php:15 +msgid "Current password" +msgstr "ססמה נוכחית" + +#: templates/personal.php:16 +msgid "New password" +msgstr "ססמה חדשה" + +#: templates/personal.php:17 +msgid "show" +msgstr "הצגה" + +#: templates/personal.php:18 +msgid "Change password" +msgstr "שינוי ססמה" + +#: templates/personal.php:24 +msgid "Email" +msgstr "" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:32 templates/personal.php:33 +msgid "Language" +msgstr "פה" + +#: templates/personal.php:38 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:45 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "השתמש בכתובת זו כדי להתחבר ל־ownCloude שלך ממנהל הקבצים" + +#: templates/users.php:15 templates/users.php:30 +msgid "Name" +msgstr "שם" + +#: templates/users.php:16 templates/users.php:31 +msgid "Password" +msgstr "ססמה" + +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 +msgid "Groups" +msgstr "קבוצות" + +#: templates/users.php:23 +msgid "Create" +msgstr "יצירה" + +#: templates/users.php:33 +msgid "Quota" +msgstr "" + +#: templates/users.php:58 +msgid "Delete" +msgstr "מחיקה" + + diff --git a/l10n/hr/calendar.po b/l10n/hr/calendar.po new file mode 100644 index 00000000000..9aac8b76f34 --- /dev/null +++ b/l10n/hr/calendar.po @@ -0,0 +1,637 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Davor Kustec , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-15 13:45+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Croatian (http://www.transifex.net/projects/p/owncloud/team/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" + +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "" + +#: ajax/settimezone.php:22 +msgid "Timezone changed" +msgstr "Vremenska zona promijenjena" + +#: ajax/settimezone.php:24 +msgid "Invalid request" +msgstr "Neispravan zahtjev" + +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 +msgid "Calendar" +msgstr "Kalendar" + +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Pogrešan kalendar" + +#: lib/app.php:60 lib/object.php:332 +msgid "Birthday" +msgstr "Rođendan" + +#: lib/app.php:61 lib/object.php:333 +msgid "Business" +msgstr "Poslovno" + +#: lib/app.php:62 lib/object.php:334 +msgid "Call" +msgstr "Poziv" + +#: lib/app.php:63 lib/object.php:335 +msgid "Clients" +msgstr "Klijenti" + +#: lib/app.php:64 lib/object.php:336 +msgid "Deliverer" +msgstr "Dostavljač" + +#: lib/app.php:65 lib/object.php:337 +msgid "Holidays" +msgstr "Odmori" + +#: lib/app.php:66 lib/object.php:338 +msgid "Ideas" +msgstr "Ideje" + +#: lib/app.php:67 lib/object.php:339 +msgid "Journey" +msgstr "Putovanje" + +#: lib/app.php:68 lib/object.php:340 +msgid "Jubilee" +msgstr "Obljetnica" + +#: lib/app.php:69 lib/object.php:341 +msgid "Meeting" +msgstr "Sastanak" + +#: lib/app.php:70 lib/object.php:342 +msgid "Other" +msgstr "Ostalo" + +#: lib/app.php:71 lib/object.php:343 +msgid "Personal" +msgstr "Osobno" + +#: lib/app.php:72 lib/object.php:344 +msgid "Projects" +msgstr "Projekti" + +#: lib/app.php:73 lib/object.php:345 +msgid "Questions" +msgstr "Pitanja" + +#: lib/app.php:74 lib/object.php:346 +msgid "Work" +msgstr "Posao" + +#: lib/object.php:353 +msgid "Does not repeat" +msgstr "Ne ponavlja se" + +#: lib/object.php:354 +msgid "Daily" +msgstr "Dnevno" + +#: lib/object.php:355 +msgid "Weekly" +msgstr "Tjedno" + +#: lib/object.php:356 +msgid "Every Weekday" +msgstr "Svakog radnog dana" + +#: lib/object.php:357 +msgid "Bi-Weekly" +msgstr "Dvotjedno" + +#: lib/object.php:358 +msgid "Monthly" +msgstr "Mjesečno" + +#: lib/object.php:359 +msgid "Yearly" +msgstr "Godišnje" + +#: lib/object.php:366 +msgid "never" +msgstr "" + +#: lib/object.php:367 +msgid "by occurrences" +msgstr "" + +#: lib/object.php:368 +msgid "by date" +msgstr "" + +#: lib/object.php:375 +msgid "by monthday" +msgstr "" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "" + +#: lib/object.php:383 templates/lAfix.php:3 +msgid "Monday" +msgstr "" + +#: lib/object.php:384 templates/lAfix.php:4 +msgid "Tuesday" +msgstr "" + +#: lib/object.php:385 templates/lAfix.php:5 +msgid "Wednesday" +msgstr "" + +#: lib/object.php:386 templates/lAfix.php:6 +msgid "Thursday" +msgstr "" + +#: lib/object.php:387 templates/lAfix.php:7 +msgid "Friday" +msgstr "" + +#: lib/object.php:388 templates/lAfix.php:8 +msgid "Saturday" +msgstr "" + +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "" + +#: lib/object.php:396 +msgid "events week of month" +msgstr "" + +#: lib/object.php:397 +msgid "first" +msgstr "" + +#: lib/object.php:398 +msgid "second" +msgstr "" + +#: lib/object.php:399 +msgid "third" +msgstr "" + +#: lib/object.php:400 +msgid "fourth" +msgstr "" + +#: lib/object.php:401 +msgid "fifth" +msgstr "" + +#: lib/object.php:402 +msgid "last" +msgstr "" + +#: lib/object.php:424 templates/lAfix.php:16 +msgid "January" +msgstr "" + +#: lib/object.php:425 templates/lAfix.php:17 +msgid "February" +msgstr "" + +#: lib/object.php:426 templates/lAfix.php:18 +msgid "March" +msgstr "" + +#: lib/object.php:427 templates/lAfix.php:19 +msgid "April" +msgstr "" + +#: lib/object.php:428 templates/lAfix.php:20 +msgid "May" +msgstr "" + +#: lib/object.php:429 templates/lAfix.php:21 +msgid "June" +msgstr "" + +#: lib/object.php:430 templates/lAfix.php:22 +msgid "July" +msgstr "" + +#: lib/object.php:431 templates/lAfix.php:23 +msgid "August" +msgstr "" + +#: lib/object.php:432 templates/lAfix.php:24 +msgid "September" +msgstr "" + +#: lib/object.php:433 templates/lAfix.php:25 +msgid "October" +msgstr "" + +#: lib/object.php:434 templates/lAfix.php:26 +msgid "November" +msgstr "" + +#: lib/object.php:435 templates/lAfix.php:27 +msgid "December" +msgstr "" + +#: lib/object.php:441 +msgid "by events date" +msgstr "" + +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "" + +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "" + +#: lib/object.php:444 +msgid "by day and month" +msgstr "" + +#: lib/object.php:467 +msgid "Not an array" +msgstr "Nije niz" + +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "" + +#: lib/search.php:40 +msgid "Cal." +msgstr "" + +#: templates/calendar.php:10 +msgid "All day" +msgstr "Cijeli dan" + +#: templates/calendar.php:11 +msgid "Missing fields" +msgstr "Nedostaju polja" + +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" +msgstr "Naslov" + +#: templates/calendar.php:14 +msgid "From Date" +msgstr "Datum Od" + +#: templates/calendar.php:15 +msgid "From Time" +msgstr "Vrijeme Od" + +#: templates/calendar.php:16 +msgid "To Date" +msgstr "Datum Do" + +#: templates/calendar.php:17 +msgid "To Time" +msgstr "Vrijeme Do" + +#: templates/calendar.php:18 +msgid "The event ends before it starts" +msgstr "Događaj završava prije nego počinje" + +#: templates/calendar.php:19 +msgid "There was a database fail" +msgstr "Pogreška u bazi podataka" + +#: templates/calendar.php:52 +msgid "Week" +msgstr "Tjedan" + +#: templates/calendar.php:53 +msgid "Month" +msgstr "Mjesec" + +#: templates/calendar.php:54 +msgid "List" +msgstr "Lista" + +#: templates/calendar.php:59 +msgid "Today" +msgstr "Danas" + +#: templates/calendar.php:60 +msgid "Calendars" +msgstr "Kalendari" + +#: templates/calendar.php:78 +msgid "There was a fail, while parsing the file." +msgstr "Pogreška pri čitanju datoteke." + +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "" + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "" + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "" + +#: templates/lAfix.php:32 +msgid "May." +msgstr "" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "" + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "" + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "" + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "" + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "" + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "" + +#: templates/part.choosecalendar.php:1 +msgid "Choose active calendars" +msgstr "Odaberite aktive kalendare" + +#: templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "Novi Kalendar" + +#: templates/part.choosecalendar.php:20 +#: templates/part.choosecalendar.rowfields.php:4 +msgid "CalDav Link" +msgstr "CalDav Poveznica" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Download" +msgstr "Spremi lokalno" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Edit" +msgstr "Uredi" + +#: templates/part.choosecalendar.rowfields.php:4 +#: templates/part.editevent.php:9 +msgid "Delete" +msgstr "Briši" + +#: templates/part.editcalendar.php:9 +msgid "New calendar" +msgstr "Novi kalendar" + +#: templates/part.editcalendar.php:9 +msgid "Edit calendar" +msgstr "Uredi kalendar" + +#: templates/part.editcalendar.php:12 +msgid "Displayname" +msgstr "Naziv" + +#: templates/part.editcalendar.php:23 +msgid "Active" +msgstr "Aktivan" + +#: templates/part.editcalendar.php:29 +msgid "Calendar color" +msgstr "Boja kalendara" + +#: templates/part.editcalendar.php:42 +msgid "Save" +msgstr "Spremi" + +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 +#: templates/part.newevent.php:6 +msgid "Submit" +msgstr "Potvrdi" + +#: templates/part.editcalendar.php:43 +msgid "Cancel" +msgstr "Odustani" + +#: templates/part.editevent.php:1 +msgid "Edit an event" +msgstr "Uredi događaj" + +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "Izvoz" + +#: templates/part.eventform.php:5 +msgid "Title of the Event" +msgstr "Naslov Događaja" + +#: templates/part.eventform.php:11 +msgid "Category" +msgstr "Kategorija" + +#: templates/part.eventform.php:13 +msgid "Select category" +msgstr "Odabir kategorije" + +#: templates/part.eventform.php:37 +msgid "All Day Event" +msgstr "Cjelodnevni događaj" + +#: templates/part.eventform.php:41 +msgid "From" +msgstr "Od" + +#: templates/part.eventform.php:49 +msgid "To" +msgstr "Za" + +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "Napredne mogućnosti" + +#: templates/part.eventform.php:61 +msgid "Repeat" +msgstr "Ponavljanje" + +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "" + +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Lokacija" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Lokacija Događaja" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Opis" + +#: templates/part.eventform.php:218 +msgid "Description of the Event" +msgstr "Opis događaja" + +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "Odaberite kalendar" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "Uvoz" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "" + +#: templates/part.newevent.php:1 +msgid "Create a new event" +msgstr "Unesi novi događaj" + +#: templates/settings.php:13 +msgid "Timezone" +msgstr "Vremenska zona" + +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "Format vremena" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24h" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12h" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "Adresa za CalDAV sinkronizaciju kalendara" + + diff --git a/l10n/hr/contacts.po b/l10n/hr/contacts.po new file mode 100644 index 00000000000..e3c37787276 --- /dev/null +++ b/l10n/hr/contacts.po @@ -0,0 +1,282 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Davor Kustec , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Croatian (http://www.transifex.net/projects/p/owncloud/team/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" + +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." +msgstr "" + +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: lib/app.php:52 +msgid "This is not your addressbook." +msgstr "Ovo nije vaš adresar." + +#: lib/app.php:61 photo.php:36 +msgid "Contact could not be found." +msgstr "Kontakt ne postoji." + +#: lib/app.php:89 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "Informacija o vCard je neispravna. Osvježite stranicu." + +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 +msgid "Address" +msgstr "Adresa" + +#: lib/app.php:102 templates/part.addcardform.php:43 +msgid "Telephone" +msgstr "Telefon" + +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 +msgid "Email" +msgstr "E-mail" + +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 +msgid "Organization" +msgstr "Organizacija" + +#: lib/app.php:116 lib/app.php:123 +msgid "Work" +msgstr "Posao" + +#: lib/app.php:117 lib/app.php:121 +msgid "Home" +msgstr "Kuća" + +#: lib/app.php:122 +msgid "Mobile" +msgstr "Mobitel" + +#: lib/app.php:124 +msgid "Text" +msgstr "Tekst" + +#: lib/app.php:125 +msgid "Voice" +msgstr "Glasovno" + +#: lib/app.php:126 +msgid "Fax" +msgstr "Fax" + +#: lib/app.php:127 +msgid "Video" +msgstr "Video" + +#: lib/app.php:128 +msgid "Pager" +msgstr "Pager" + +#: lib/search.php:22 +msgid "Contact" +msgstr "" + +#: photo.php:42 +msgid "This is not your contact." +msgstr "Ovo nije vaš kontakt." + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Dodaj kontakt" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Naziv" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "Poštanski Pretinac" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Prošireno" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Ulica" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Grad" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Regija" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "Poštanski broj" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "Država" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Izradi Kontakt" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Uredi" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Delete" +msgstr "Obriši" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "" + +#: templates/part.property.php:3 +msgid "Birthday" +msgstr "Rođendan" + +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 +msgid "Phone" +msgstr "Telefon" + +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "" + + diff --git a/l10n/hr/core.po b/l10n/hr/core.po new file mode 100644 index 00000000000..0ddb082dd54 --- /dev/null +++ b/l10n/hr/core.po @@ -0,0 +1,172 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Davor Kustec , 2011. +# Thomas Silađi , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Croatian (http://www.transifex.net/projects/p/owncloud/team/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" + +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "Primit ćete link kako biste poništili zaporku putem e-maila." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Zahtijevano" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Prijava nije uspjela!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Korisničko ime" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Zahtjev za resetiranjem" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Vaša lozinka je resetirana" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "nova lozinka" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "poništavanje lozinke" + +#: strings.php:5 +msgid "Personal" +msgstr "Osobno" + +#: strings.php:6 +msgid "Users" +msgstr "korisnici" + +#: strings.php:7 +msgid "Apps" +msgstr "aplikacije" + +#: strings.php:8 +msgid "Admin" +msgstr "administrator" + +#: strings.php:9 +msgid "Help" +msgstr "pomoć" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "Cloud nije pronađen" + +#: templates/installation.php:20 +msgid "Create an admin account" +msgstr "stvoriti Administratorski račun" + +#: templates/installation.php:26 templates/login.php:12 +msgid "Password" +msgstr "Lozinka" + +#: templates/installation.php:32 +msgid "Advanced" +msgstr "Dodatno" + +#: templates/installation.php:34 +msgid "Data folder" +msgstr "Mapa baze podataka" + +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "konfigurirati baze podataka" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "će se koristiti" + +#: templates/installation.php:79 +msgid "Database user" +msgstr "korisnik baze podataka" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "lozinka baze podataka" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "ime baze podataka" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Poslužitelj baze podataka" + +#: templates/installation.php:98 +msgid "Finish setup" +msgstr "završiti postavljanje" + +#: templates/layout.guest.php:35 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:34 +msgid "Log out" +msgstr "odjaviti" + +#: templates/layout.user.php:46 templates/layout.user.php:47 +msgid "Settings" +msgstr "postavke" + +#: templates/login.php:5 +msgid "Lost your password?" +msgstr "Izgubili ste lozinku?" + +#: templates/login.php:15 +msgid "remember" +msgstr "zapamtiti" + +#: templates/login.php:16 +msgid "Log in" +msgstr "" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "Vi ste odjavljeni." + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "prethodan" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "sljedeći" + + diff --git a/l10n/hr/files.po b/l10n/hr/files.po new file mode 100644 index 00000000000..4109098bdcc --- /dev/null +++ b/l10n/hr/files.po @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Davor Kustec , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Croatian (http://www.transifex.net/projects/p/owncloud/team/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" + +#: ajax/upload.php:19 +msgid "There is no error, the file uploaded with success" +msgstr "Datoteka je poslana uspješno i bez pogrešaka" + +#: ajax/upload.php:20 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "" +"Poslana datoteka izlazi iz okvira upload_max_size direktive postavljene u " +"php.ini konfiguracijskoj datoteci" + +#: ajax/upload.php:21 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" +"Poslana datoteka izlazi iz okvira MAX_FILE_SIZE direktive postavljene u HTML" +" obrascu" + +#: ajax/upload.php:22 +msgid "The uploaded file was only partially uploaded" +msgstr "Datoteka je poslana samo djelomično" + +#: ajax/upload.php:23 +msgid "No file was uploaded" +msgstr "Ni jedna datoteka nije poslana" + +#: ajax/upload.php:24 +msgid "Missing a temporary folder" +msgstr "Nedostaje privremena mapa" + +#: appinfo/app.php:8 +msgid "Files" +msgstr "Datoteke" + +#: templates/admin.php:5 +msgid "Maximum upload size" +msgstr "Maksimalna veličina prijenosa" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:11 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From the web" +msgstr "" + +#: templates/index.php:22 +msgid "Upload" +msgstr "Pošalji" + +#: templates/index.php:35 +msgid "Nothing in here. Upload something!" +msgstr "Nema ničega u ovoj mapi. Pošalji nešto!" + +#: templates/index.php:43 +msgid "Name" +msgstr "Naziv" + +#: templates/index.php:45 +msgid "Download" +msgstr "Preuzmi" + +#: templates/index.php:49 +msgid "Size" +msgstr "Veličina" + +#: templates/index.php:50 +msgid "Modified" +msgstr "Zadnja promjena" + +#: templates/index.php:50 +msgid "Delete" +msgstr "Briši" + +#: templates/index.php:58 +msgid "Upload too large" +msgstr "Prijenos je preobiman" + +#: templates/index.php:60 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" +"Datoteke koje pokušavate prenijeti prelaze maksimalnu veličinu za prijenos " +"datoteka na ovom poslužitelju." + + diff --git a/l10n/hr/gallery.po b/l10n/hr/gallery.po new file mode 100644 index 00000000000..e06e16b1bf0 --- /dev/null +++ b/l10n/hr/gallery.po @@ -0,0 +1,52 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Croatian (http://www.transifex.net/projects/p/owncloud/team/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" + + diff --git a/l10n/hr/media.po b/l10n/hr/media.po new file mode 100644 index 00000000000..dd2823a5ae5 --- /dev/null +++ b/l10n/hr/media.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Davor Kustec , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Croatian (http://www.transifex.net/projects/p/owncloud/team/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" + +#: appinfo/app.php:32 +msgid "Music" +msgstr "Glazba" + +#: templates/music.php:3 templates/player.php:13 +msgid "Play" +msgstr "Reprodukcija" + +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 +msgid "Pause" +msgstr "Pauza" + +#: templates/music.php:5 +msgid "Previous" +msgstr "Prethodna" + +#: templates/music.php:6 templates/player.php:15 +msgid "Next" +msgstr "Sljedeća" + +#: templates/music.php:7 +msgid "Mute" +msgstr "Utišaj zvuk" + +#: templates/music.php:8 +msgid "Unmute" +msgstr "Uključi zvuk" + +#: templates/music.php:25 +msgid "Rescan Collection" +msgstr "Ponovi skeniranje kolekcije" + +#: templates/music.php:37 +msgid "Artist" +msgstr "Izvođač" + +#: templates/music.php:38 +msgid "Album" +msgstr "Album" + +#: templates/music.php:39 +msgid "Title" +msgstr "Naslov" + + diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po new file mode 100644 index 00000000000..ddbabacd91e --- /dev/null +++ b/l10n/hr/settings.po @@ -0,0 +1,158 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Davor Kustec , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 16:32+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Croatian (http://www.transifex.net/projects/p/owncloud/team/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" + +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "" + +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 +msgid "Invalid request" +msgstr "Neispravan zahtjev" + +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID promijenjen" + +#: ajax/setlanguage.php:14 +msgid "Language changed" +msgstr "Jezik promijenjen" + +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "" + +#: templates/apps.php:8 +msgid "Add your application" +msgstr "Dodajte vašu aplikaciju" + +#: templates/apps.php:21 +msgid "Select an App" +msgstr "Odaberite Aplikaciju" + +#: templates/apps.php:23 +msgid "-licensed" +msgstr "-licencirano" + +#: templates/apps.php:23 +msgid "by" +msgstr "od" + +#: templates/help.php:8 +msgid "Ask a question" +msgstr "Postavite pitanje" + +#: templates/help.php:20 +msgid "Problems connecting to help database." +msgstr "Problem pri spajanju na bazu podataka pomoći" + +#: templates/help.php:21 +msgid "Go there manually." +msgstr "Idite tamo ručno." + +#: templates/help.php:29 +msgid "Answer" +msgstr "Odgovor" + +#: templates/personal.php:8 +msgid "You use" +msgstr "Koristite" + +#: templates/personal.php:8 +msgid "of the available" +msgstr "od dostupno" + +#: templates/personal.php:13 +msgid "Your password got changed" +msgstr "Vaša lozinka je promijenjena" + +#: templates/personal.php:14 +msgid "Unable to change your password" +msgstr "Nemoguće promijeniti lozinku" + +#: templates/personal.php:15 +msgid "Current password" +msgstr "Trenutna lozinka" + +#: templates/personal.php:16 +msgid "New password" +msgstr "Nova lozinka" + +#: templates/personal.php:17 +msgid "show" +msgstr "prikaz" + +#: templates/personal.php:18 +msgid "Change password" +msgstr "Izmjena lozinke" + +#: templates/personal.php:24 +msgid "Email" +msgstr "" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:32 templates/personal.php:33 +msgid "Language" +msgstr "Jezik" + +#: templates/personal.php:38 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:45 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "" +"koristite ovu adresu za spajanje na Cloud u vašem upravitelju datoteka" + +#: templates/users.php:15 templates/users.php:30 +msgid "Name" +msgstr "Ime" + +#: templates/users.php:16 templates/users.php:31 +msgid "Password" +msgstr "Lozinka" + +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 +msgid "Groups" +msgstr "Grupe" + +#: templates/users.php:23 +msgid "Create" +msgstr "Izradi" + +#: templates/users.php:33 +msgid "Quota" +msgstr "" + +#: templates/users.php:58 +msgid "Delete" +msgstr "Obriši" + + diff --git a/l10n/hu_HU/calendar.po b/l10n/hu_HU/calendar.po new file mode 100644 index 00000000000..5e36feb430d --- /dev/null +++ b/l10n/hu_HU/calendar.po @@ -0,0 +1,637 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Peter Borsa , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-15 13:45+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.net/projects/p/owncloud/team/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "" + +#: ajax/settimezone.php:22 +msgid "Timezone changed" +msgstr "Időzóna megváltozott" + +#: ajax/settimezone.php:24 +msgid "Invalid request" +msgstr "Érvénytelen kérés" + +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 +msgid "Calendar" +msgstr "Naptár" + +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Hibás naptár" + +#: lib/app.php:60 lib/object.php:332 +msgid "Birthday" +msgstr "Születésap" + +#: lib/app.php:61 lib/object.php:333 +msgid "Business" +msgstr "Üzlet" + +#: lib/app.php:62 lib/object.php:334 +msgid "Call" +msgstr "Hívás" + +#: lib/app.php:63 lib/object.php:335 +msgid "Clients" +msgstr "Kliensek" + +#: lib/app.php:64 lib/object.php:336 +msgid "Deliverer" +msgstr "Szállító" + +#: lib/app.php:65 lib/object.php:337 +msgid "Holidays" +msgstr "Ünnepek" + +#: lib/app.php:66 lib/object.php:338 +msgid "Ideas" +msgstr "Ötletek" + +#: lib/app.php:67 lib/object.php:339 +msgid "Journey" +msgstr "Utazás" + +#: lib/app.php:68 lib/object.php:340 +msgid "Jubilee" +msgstr "Évforduló" + +#: lib/app.php:69 lib/object.php:341 +msgid "Meeting" +msgstr "Találkozó" + +#: lib/app.php:70 lib/object.php:342 +msgid "Other" +msgstr "Egyéb" + +#: lib/app.php:71 lib/object.php:343 +msgid "Personal" +msgstr "Személyes" + +#: lib/app.php:72 lib/object.php:344 +msgid "Projects" +msgstr "Projektek" + +#: lib/app.php:73 lib/object.php:345 +msgid "Questions" +msgstr "Kérdések" + +#: lib/app.php:74 lib/object.php:346 +msgid "Work" +msgstr "Munka" + +#: lib/object.php:353 +msgid "Does not repeat" +msgstr "Nem ismétlődik" + +#: lib/object.php:354 +msgid "Daily" +msgstr "Napi" + +#: lib/object.php:355 +msgid "Weekly" +msgstr "Heti" + +#: lib/object.php:356 +msgid "Every Weekday" +msgstr "Minden hétköznap" + +#: lib/object.php:357 +msgid "Bi-Weekly" +msgstr "Kéthetente" + +#: lib/object.php:358 +msgid "Monthly" +msgstr "Havi" + +#: lib/object.php:359 +msgid "Yearly" +msgstr "Évi" + +#: lib/object.php:366 +msgid "never" +msgstr "" + +#: lib/object.php:367 +msgid "by occurrences" +msgstr "" + +#: lib/object.php:368 +msgid "by date" +msgstr "" + +#: lib/object.php:375 +msgid "by monthday" +msgstr "" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "" + +#: lib/object.php:383 templates/lAfix.php:3 +msgid "Monday" +msgstr "" + +#: lib/object.php:384 templates/lAfix.php:4 +msgid "Tuesday" +msgstr "" + +#: lib/object.php:385 templates/lAfix.php:5 +msgid "Wednesday" +msgstr "" + +#: lib/object.php:386 templates/lAfix.php:6 +msgid "Thursday" +msgstr "" + +#: lib/object.php:387 templates/lAfix.php:7 +msgid "Friday" +msgstr "" + +#: lib/object.php:388 templates/lAfix.php:8 +msgid "Saturday" +msgstr "" + +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "" + +#: lib/object.php:396 +msgid "events week of month" +msgstr "" + +#: lib/object.php:397 +msgid "first" +msgstr "" + +#: lib/object.php:398 +msgid "second" +msgstr "" + +#: lib/object.php:399 +msgid "third" +msgstr "" + +#: lib/object.php:400 +msgid "fourth" +msgstr "" + +#: lib/object.php:401 +msgid "fifth" +msgstr "" + +#: lib/object.php:402 +msgid "last" +msgstr "" + +#: lib/object.php:424 templates/lAfix.php:16 +msgid "January" +msgstr "" + +#: lib/object.php:425 templates/lAfix.php:17 +msgid "February" +msgstr "" + +#: lib/object.php:426 templates/lAfix.php:18 +msgid "March" +msgstr "" + +#: lib/object.php:427 templates/lAfix.php:19 +msgid "April" +msgstr "" + +#: lib/object.php:428 templates/lAfix.php:20 +msgid "May" +msgstr "" + +#: lib/object.php:429 templates/lAfix.php:21 +msgid "June" +msgstr "" + +#: lib/object.php:430 templates/lAfix.php:22 +msgid "July" +msgstr "" + +#: lib/object.php:431 templates/lAfix.php:23 +msgid "August" +msgstr "" + +#: lib/object.php:432 templates/lAfix.php:24 +msgid "September" +msgstr "" + +#: lib/object.php:433 templates/lAfix.php:25 +msgid "October" +msgstr "" + +#: lib/object.php:434 templates/lAfix.php:26 +msgid "November" +msgstr "" + +#: lib/object.php:435 templates/lAfix.php:27 +msgid "December" +msgstr "" + +#: lib/object.php:441 +msgid "by events date" +msgstr "" + +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "" + +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "" + +#: lib/object.php:444 +msgid "by day and month" +msgstr "" + +#: lib/object.php:467 +msgid "Not an array" +msgstr "Nem egy tömb" + +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "" + +#: lib/search.php:40 +msgid "Cal." +msgstr "" + +#: templates/calendar.php:10 +msgid "All day" +msgstr "Egész nap" + +#: templates/calendar.php:11 +msgid "Missing fields" +msgstr "Hiányzó mezők" + +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" +msgstr "Cím" + +#: templates/calendar.php:14 +msgid "From Date" +msgstr "Napjától" + +#: templates/calendar.php:15 +msgid "From Time" +msgstr "Időtől" + +#: templates/calendar.php:16 +msgid "To Date" +msgstr "Napig" + +#: templates/calendar.php:17 +msgid "To Time" +msgstr "Ideig" + +#: templates/calendar.php:18 +msgid "The event ends before it starts" +msgstr "Az esemény véget ér a kezdés előtt." + +#: templates/calendar.php:19 +msgid "There was a database fail" +msgstr "Adatbázis hiba történt" + +#: templates/calendar.php:52 +msgid "Week" +msgstr "Hét" + +#: templates/calendar.php:53 +msgid "Month" +msgstr "Hónap" + +#: templates/calendar.php:54 +msgid "List" +msgstr "Lista" + +#: templates/calendar.php:59 +msgid "Today" +msgstr "Ma" + +#: templates/calendar.php:60 +msgid "Calendars" +msgstr "Naptárak" + +#: templates/calendar.php:78 +msgid "There was a fail, while parsing the file." +msgstr "Probléma volt a fájl elemzése közben." + +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "" + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "" + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "" + +#: templates/lAfix.php:32 +msgid "May." +msgstr "" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "" + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "" + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "" + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "" + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "" + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "" + +#: templates/part.choosecalendar.php:1 +msgid "Choose active calendars" +msgstr "Aktív naptár kiválasztása" + +#: templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "Új naptár" + +#: templates/part.choosecalendar.php:20 +#: templates/part.choosecalendar.rowfields.php:4 +msgid "CalDav Link" +msgstr "CalDAV link" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Download" +msgstr "Letöltés" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Edit" +msgstr "Szerkesztés" + +#: templates/part.choosecalendar.rowfields.php:4 +#: templates/part.editevent.php:9 +msgid "Delete" +msgstr "Törlés" + +#: templates/part.editcalendar.php:9 +msgid "New calendar" +msgstr "Új naptár" + +#: templates/part.editcalendar.php:9 +msgid "Edit calendar" +msgstr "Naptár szerkesztése" + +#: templates/part.editcalendar.php:12 +msgid "Displayname" +msgstr "Megjelenítési név" + +#: templates/part.editcalendar.php:23 +msgid "Active" +msgstr "Aktív" + +#: templates/part.editcalendar.php:29 +msgid "Calendar color" +msgstr "Naptár szín" + +#: templates/part.editcalendar.php:42 +msgid "Save" +msgstr "Mentés" + +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 +#: templates/part.newevent.php:6 +msgid "Submit" +msgstr "Beküldés" + +#: templates/part.editcalendar.php:43 +msgid "Cancel" +msgstr "Mégse" + +#: templates/part.editevent.php:1 +msgid "Edit an event" +msgstr "Esemény szerkesztése" + +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "Export" + +#: templates/part.eventform.php:5 +msgid "Title of the Event" +msgstr "Az esemény címe" + +#: templates/part.eventform.php:11 +msgid "Category" +msgstr "Kategória" + +#: templates/part.eventform.php:13 +msgid "Select category" +msgstr "Kategória kiválasztása" + +#: templates/part.eventform.php:37 +msgid "All Day Event" +msgstr "Egész napos esemény" + +#: templates/part.eventform.php:41 +msgid "From" +msgstr "" + +#: templates/part.eventform.php:49 +msgid "To" +msgstr "" + +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "Haladó beállítások" + +#: templates/part.eventform.php:61 +msgid "Repeat" +msgstr "Ismétlés" + +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "" + +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Hely" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Az esemény helyszíne" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Leírás" + +#: templates/part.eventform.php:218 +msgid "Description of the Event" +msgstr "Az esemény leírása" + +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "Válassz naptárat" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "Importálás" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "" + +#: templates/part.newevent.php:1 +msgid "Create a new event" +msgstr "Új esemény létrehozása" + +#: templates/settings.php:13 +msgid "Timezone" +msgstr "Időzóna" + +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "Időformátum" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24h" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12h" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "Naptár CalDAV szinkronizálási cím:" + + diff --git a/l10n/hu_HU/contacts.po b/l10n/hu_HU/contacts.po new file mode 100644 index 00000000000..3ffb7ba4511 --- /dev/null +++ b/l10n/hu_HU/contacts.po @@ -0,0 +1,283 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011. +# Peter Borsa , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.net/projects/p/owncloud/team/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." +msgstr "" + +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: lib/app.php:52 +msgid "This is not your addressbook." +msgstr "Ez nem a te címjegyzéked." + +#: lib/app.php:61 photo.php:36 +msgid "Contact could not be found." +msgstr "Kapcsolat nem található." + +#: lib/app.php:89 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "A vCardról szóló információ helytelen. Töltsd újra az oldalt." + +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 +msgid "Address" +msgstr "Cím" + +#: lib/app.php:102 templates/part.addcardform.php:43 +msgid "Telephone" +msgstr "Telefonszám" + +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 +msgid "Email" +msgstr "E-mail" + +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 +msgid "Organization" +msgstr "Organizáció" + +#: lib/app.php:116 lib/app.php:123 +msgid "Work" +msgstr "Munka" + +#: lib/app.php:117 lib/app.php:121 +msgid "Home" +msgstr "Otthon" + +#: lib/app.php:122 +msgid "Mobile" +msgstr "Mobiltelefonszám" + +#: lib/app.php:124 +msgid "Text" +msgstr "Szöveg" + +#: lib/app.php:125 +msgid "Voice" +msgstr "Hang" + +#: lib/app.php:126 +msgid "Fax" +msgstr "Fax" + +#: lib/app.php:127 +msgid "Video" +msgstr "Video" + +#: lib/app.php:128 +msgid "Pager" +msgstr "Lapozó" + +#: lib/search.php:22 +msgid "Contact" +msgstr "" + +#: photo.php:42 +msgid "This is not your contact." +msgstr "Nem a te kapcsolatod." + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Kontakt hozzáadása" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Név" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "Postafiók" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Kiterjesztett" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Utca" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Helység" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Megye" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "Irányítószám" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "Ország" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Kontakt létrehozása" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Szerkesztés" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Delete" +msgstr "Törlés" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "" + +#: templates/part.property.php:3 +msgid "Birthday" +msgstr "Születésnap" + +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 +msgid "Phone" +msgstr "Telefonszám" + +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "" + + diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po new file mode 100644 index 00000000000..36e8b3fe068 --- /dev/null +++ b/l10n/hu_HU/core.po @@ -0,0 +1,172 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011. +# Peter Borsa , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-20 13:07+0000\n" +"Last-Translator: Peter Borsa \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.net/projects/p/owncloud/team/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "Egy e-mailben kap értesítést a jelszóváltoztatás módjáról." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Kért" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Belépés sikertelen!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Felhasználói név" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Jelszó megváltoztatásra került" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Új jelszó" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Jelszó beállítás" + +#: strings.php:5 +msgid "Personal" +msgstr "Személyes" + +#: strings.php:6 +msgid "Users" +msgstr "Felhasználók" + +#: strings.php:7 +msgid "Apps" +msgstr "Alkalmazások" + +#: strings.php:8 +msgid "Admin" +msgstr "Adminisztráció" + +#: strings.php:9 +msgid "Help" +msgstr "Súgó" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "Nem talált felhő" + +#: templates/installation.php:20 +msgid "Create an admin account" +msgstr "Adminisztrációs fiók létrehozása" + +#: templates/installation.php:26 templates/login.php:12 +msgid "Password" +msgstr "Jelszó" + +#: templates/installation.php:32 +msgid "Advanced" +msgstr "Fejlett" + +#: templates/installation.php:34 +msgid "Data folder" +msgstr "Adat könyvtár" + +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Adatbázis konfigurálása" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "használva lesz" + +#: templates/installation.php:79 +msgid "Database user" +msgstr "Adatbázis felhasználó" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Adatbázis jelszó" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Adatbázis név" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Adatbázis szerver" + +#: templates/installation.php:98 +msgid "Finish setup" +msgstr "Beállítások befejezése" + +#: templates/layout.guest.php:35 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:34 +msgid "Log out" +msgstr "Kilépés" + +#: templates/layout.user.php:46 templates/layout.user.php:47 +msgid "Settings" +msgstr "Beállítások" + +#: templates/login.php:5 +msgid "Lost your password?" +msgstr "Elfelejtett jelszó?" + +#: templates/login.php:15 +msgid "remember" +msgstr "emlékezni" + +#: templates/login.php:16 +msgid "Log in" +msgstr "Bejelentkezés" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "Kilépés sikerült." + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "Előző" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "Következő" + + diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po new file mode 100644 index 00000000000..2dfe1c33917 --- /dev/null +++ b/l10n/hu_HU/files.po @@ -0,0 +1,116 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011. +# Peter Borsa , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.net/projects/p/owncloud/team/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/upload.php:19 +msgid "There is no error, the file uploaded with success" +msgstr "Nincs hiba, a fájl sikeresen feltöltve." + +#: ajax/upload.php:20 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "" +"A feltöltött file meghaladja az upload_max_filesize direktívát a php.ini-" +"ben." + +#: ajax/upload.php:21 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" +"A feltöltött fájl meghaladja a MAX_FILE_SIZE direktívát ami meghatározott a " +"HTML form-ban." + +#: ajax/upload.php:22 +msgid "The uploaded file was only partially uploaded" +msgstr "Az eredeti fájl csak részlegesen van feltöltve." + +#: ajax/upload.php:23 +msgid "No file was uploaded" +msgstr "Nem lett fájl feltöltve." + +#: ajax/upload.php:24 +msgid "Missing a temporary folder" +msgstr "Hiányzik az ideiglenes könyvtár" + +#: appinfo/app.php:8 +msgid "Files" +msgstr "Fájlok" + +#: templates/admin.php:5 +msgid "Maximum upload size" +msgstr "Maximális feltölthető fájlméret" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:11 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From the web" +msgstr "" + +#: templates/index.php:22 +msgid "Upload" +msgstr "Feltöltés" + +#: templates/index.php:35 +msgid "Nothing in here. Upload something!" +msgstr "Töltsön fel egy fájlt." + +#: templates/index.php:43 +msgid "Name" +msgstr "Név" + +#: templates/index.php:45 +msgid "Download" +msgstr "Letöltés" + +#: templates/index.php:49 +msgid "Size" +msgstr "Méret" + +#: templates/index.php:50 +msgid "Modified" +msgstr "Módosítva" + +#: templates/index.php:50 +msgid "Delete" +msgstr "Törlés" + +#: templates/index.php:58 +msgid "Upload too large" +msgstr "Feltöltés túl nagy" + +#: templates/index.php:60 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" +"A fájlokat amit próbálsz feltölteni meghaladta a legnagyobb fájlméretet ezen" +" a szerveren." + + diff --git a/l10n/hu_HU/gallery.po b/l10n/hu_HU/gallery.po new file mode 100644 index 00000000000..d0c48004f59 --- /dev/null +++ b/l10n/hu_HU/gallery.po @@ -0,0 +1,52 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.net/projects/p/owncloud/team/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" + + diff --git a/l10n/hu_HU/media.po b/l10n/hu_HU/media.po new file mode 100644 index 00000000000..d11eeca2ef4 --- /dev/null +++ b/l10n/hu_HU/media.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Peter Borsa , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.net/projects/p/owncloud/team/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:32 +msgid "Music" +msgstr "Zene" + +#: templates/music.php:3 templates/player.php:13 +msgid "Play" +msgstr "Lejátszás" + +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 +msgid "Pause" +msgstr "Szünet" + +#: templates/music.php:5 +msgid "Previous" +msgstr "Előző" + +#: templates/music.php:6 templates/player.php:15 +msgid "Next" +msgstr "Következő" + +#: templates/music.php:7 +msgid "Mute" +msgstr "Némítás" + +#: templates/music.php:8 +msgid "Unmute" +msgstr "Némítás megszüntetése" + +#: templates/music.php:25 +msgid "Rescan Collection" +msgstr "Gyűjtemény újraolvasása" + +#: templates/music.php:37 +msgid "Artist" +msgstr "Előadó" + +#: templates/music.php:38 +msgid "Album" +msgstr "Album" + +#: templates/music.php:39 +msgid "Title" +msgstr "Cím" + + diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po new file mode 100644 index 00000000000..6ef3e534c2e --- /dev/null +++ b/l10n/hu_HU/settings.po @@ -0,0 +1,159 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Peter Borsa , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 16:32+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Hungarian (Hungary) (http://www.transifex.net/projects/p/owncloud/team/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "" + +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 +msgid "Invalid request" +msgstr "Érvénytelen kérés" + +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID megváltozott" + +#: ajax/setlanguage.php:14 +msgid "Language changed" +msgstr "A nyelv megváltozott" + +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "" + +#: templates/apps.php:8 +msgid "Add your application" +msgstr "Alkalmazásod hozzáadása" + +#: templates/apps.php:21 +msgid "Select an App" +msgstr "Egy App kiválasztása" + +#: templates/apps.php:23 +msgid "-licensed" +msgstr "-licenszelt" + +#: templates/apps.php:23 +msgid "by" +msgstr "" + +#: templates/help.php:8 +msgid "Ask a question" +msgstr "Tégy fel egy kérdést" + +#: templates/help.php:20 +msgid "Problems connecting to help database." +msgstr "" + +#: templates/help.php:21 +msgid "Go there manually." +msgstr "Menj oda kézzel" + +#: templates/help.php:29 +msgid "Answer" +msgstr "Válasz" + +#: templates/personal.php:8 +msgid "You use" +msgstr "" + +#: templates/personal.php:8 +msgid "of the available" +msgstr "a rendelkezésre álló" + +#: templates/personal.php:13 +msgid "Your password got changed" +msgstr "A jelszó megváltozott" + +#: templates/personal.php:14 +msgid "Unable to change your password" +msgstr "Nem lehet megváltoztatni a jelszavad" + +#: templates/personal.php:15 +msgid "Current password" +msgstr "Jelenlegi jelszó" + +#: templates/personal.php:16 +msgid "New password" +msgstr "Új jelszó" + +#: templates/personal.php:17 +msgid "show" +msgstr "Mutatás" + +#: templates/personal.php:18 +msgid "Change password" +msgstr "Jelszó megváltoztatása" + +#: templates/personal.php:24 +msgid "Email" +msgstr "" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:32 templates/personal.php:33 +msgid "Language" +msgstr "Nyelv" + +#: templates/personal.php:38 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:45 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "" +"Használd ezt a címet hogy csatlakozz a saját ownCloud rendszeredhez a " +"fájlkezelődben" + +#: templates/users.php:15 templates/users.php:30 +msgid "Name" +msgstr "Név" + +#: templates/users.php:16 templates/users.php:31 +msgid "Password" +msgstr "Jelszó" + +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 +msgid "Groups" +msgstr "Csoportok" + +#: templates/users.php:23 +msgid "Create" +msgstr "Létrehozás" + +#: templates/users.php:33 +msgid "Quota" +msgstr "" + +#: templates/users.php:58 +msgid "Delete" +msgstr "Törlés" + + diff --git a/l10n/hy/calendar.po b/l10n/hy/calendar.po new file mode 100644 index 00000000000..c89b61f035d --- /dev/null +++ b/l10n/hy/calendar.po @@ -0,0 +1,637 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Arman Poghosyan , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-15 13:45+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Armenian (http://www.transifex.net/projects/p/owncloud/team/hy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "" + +#: ajax/settimezone.php:22 +msgid "Timezone changed" +msgstr "" + +#: ajax/settimezone.php:24 +msgid "Invalid request" +msgstr "" + +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 +msgid "Calendar" +msgstr "Օրացույց" + +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "" + +#: lib/app.php:60 lib/object.php:332 +msgid "Birthday" +msgstr "" + +#: lib/app.php:61 lib/object.php:333 +msgid "Business" +msgstr "" + +#: lib/app.php:62 lib/object.php:334 +msgid "Call" +msgstr "" + +#: lib/app.php:63 lib/object.php:335 +msgid "Clients" +msgstr "" + +#: lib/app.php:64 lib/object.php:336 +msgid "Deliverer" +msgstr "" + +#: lib/app.php:65 lib/object.php:337 +msgid "Holidays" +msgstr "" + +#: lib/app.php:66 lib/object.php:338 +msgid "Ideas" +msgstr "" + +#: lib/app.php:67 lib/object.php:339 +msgid "Journey" +msgstr "" + +#: lib/app.php:68 lib/object.php:340 +msgid "Jubilee" +msgstr "" + +#: lib/app.php:69 lib/object.php:341 +msgid "Meeting" +msgstr "" + +#: lib/app.php:70 lib/object.php:342 +msgid "Other" +msgstr "Այլ" + +#: lib/app.php:71 lib/object.php:343 +msgid "Personal" +msgstr "" + +#: lib/app.php:72 lib/object.php:344 +msgid "Projects" +msgstr "" + +#: lib/app.php:73 lib/object.php:345 +msgid "Questions" +msgstr "" + +#: lib/app.php:74 lib/object.php:346 +msgid "Work" +msgstr "" + +#: lib/object.php:353 +msgid "Does not repeat" +msgstr "" + +#: lib/object.php:354 +msgid "Daily" +msgstr "" + +#: lib/object.php:355 +msgid "Weekly" +msgstr "" + +#: lib/object.php:356 +msgid "Every Weekday" +msgstr "" + +#: lib/object.php:357 +msgid "Bi-Weekly" +msgstr "" + +#: lib/object.php:358 +msgid "Monthly" +msgstr "" + +#: lib/object.php:359 +msgid "Yearly" +msgstr "" + +#: lib/object.php:366 +msgid "never" +msgstr "" + +#: lib/object.php:367 +msgid "by occurrences" +msgstr "" + +#: lib/object.php:368 +msgid "by date" +msgstr "" + +#: lib/object.php:375 +msgid "by monthday" +msgstr "" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "" + +#: lib/object.php:383 templates/lAfix.php:3 +msgid "Monday" +msgstr "" + +#: lib/object.php:384 templates/lAfix.php:4 +msgid "Tuesday" +msgstr "" + +#: lib/object.php:385 templates/lAfix.php:5 +msgid "Wednesday" +msgstr "" + +#: lib/object.php:386 templates/lAfix.php:6 +msgid "Thursday" +msgstr "" + +#: lib/object.php:387 templates/lAfix.php:7 +msgid "Friday" +msgstr "" + +#: lib/object.php:388 templates/lAfix.php:8 +msgid "Saturday" +msgstr "" + +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "" + +#: lib/object.php:396 +msgid "events week of month" +msgstr "" + +#: lib/object.php:397 +msgid "first" +msgstr "" + +#: lib/object.php:398 +msgid "second" +msgstr "" + +#: lib/object.php:399 +msgid "third" +msgstr "" + +#: lib/object.php:400 +msgid "fourth" +msgstr "" + +#: lib/object.php:401 +msgid "fifth" +msgstr "" + +#: lib/object.php:402 +msgid "last" +msgstr "" + +#: lib/object.php:424 templates/lAfix.php:16 +msgid "January" +msgstr "" + +#: lib/object.php:425 templates/lAfix.php:17 +msgid "February" +msgstr "" + +#: lib/object.php:426 templates/lAfix.php:18 +msgid "March" +msgstr "" + +#: lib/object.php:427 templates/lAfix.php:19 +msgid "April" +msgstr "" + +#: lib/object.php:428 templates/lAfix.php:20 +msgid "May" +msgstr "" + +#: lib/object.php:429 templates/lAfix.php:21 +msgid "June" +msgstr "" + +#: lib/object.php:430 templates/lAfix.php:22 +msgid "July" +msgstr "" + +#: lib/object.php:431 templates/lAfix.php:23 +msgid "August" +msgstr "" + +#: lib/object.php:432 templates/lAfix.php:24 +msgid "September" +msgstr "" + +#: lib/object.php:433 templates/lAfix.php:25 +msgid "October" +msgstr "" + +#: lib/object.php:434 templates/lAfix.php:26 +msgid "November" +msgstr "" + +#: lib/object.php:435 templates/lAfix.php:27 +msgid "December" +msgstr "" + +#: lib/object.php:441 +msgid "by events date" +msgstr "" + +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "" + +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "" + +#: lib/object.php:444 +msgid "by day and month" +msgstr "" + +#: lib/object.php:467 +msgid "Not an array" +msgstr "" + +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "" + +#: lib/search.php:40 +msgid "Cal." +msgstr "" + +#: templates/calendar.php:10 +msgid "All day" +msgstr "" + +#: templates/calendar.php:11 +msgid "Missing fields" +msgstr "" + +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" +msgstr "" + +#: templates/calendar.php:14 +msgid "From Date" +msgstr "" + +#: templates/calendar.php:15 +msgid "From Time" +msgstr "" + +#: templates/calendar.php:16 +msgid "To Date" +msgstr "" + +#: templates/calendar.php:17 +msgid "To Time" +msgstr "" + +#: templates/calendar.php:18 +msgid "The event ends before it starts" +msgstr "" + +#: templates/calendar.php:19 +msgid "There was a database fail" +msgstr "" + +#: templates/calendar.php:52 +msgid "Week" +msgstr "" + +#: templates/calendar.php:53 +msgid "Month" +msgstr "Ամիս" + +#: templates/calendar.php:54 +msgid "List" +msgstr "" + +#: templates/calendar.php:59 +msgid "Today" +msgstr "Այսօր" + +#: templates/calendar.php:60 +msgid "Calendars" +msgstr "" + +#: templates/calendar.php:78 +msgid "There was a fail, while parsing the file." +msgstr "" + +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "" + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "" + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "" + +#: templates/lAfix.php:32 +msgid "May." +msgstr "" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "" + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "" + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "" + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "" + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "" + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "" + +#: templates/part.choosecalendar.php:1 +msgid "Choose active calendars" +msgstr "" + +#: templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "" + +#: templates/part.choosecalendar.php:20 +#: templates/part.choosecalendar.rowfields.php:4 +msgid "CalDav Link" +msgstr "" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Download" +msgstr "Բեռնել" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Edit" +msgstr "" + +#: templates/part.choosecalendar.rowfields.php:4 +#: templates/part.editevent.php:9 +msgid "Delete" +msgstr "Ջնջել" + +#: templates/part.editcalendar.php:9 +msgid "New calendar" +msgstr "" + +#: templates/part.editcalendar.php:9 +msgid "Edit calendar" +msgstr "" + +#: templates/part.editcalendar.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editcalendar.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editcalendar.php:29 +msgid "Calendar color" +msgstr "" + +#: templates/part.editcalendar.php:42 +msgid "Save" +msgstr "Պահպանել" + +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 +#: templates/part.newevent.php:6 +msgid "Submit" +msgstr "Հաստատել" + +#: templates/part.editcalendar.php:43 +msgid "Cancel" +msgstr "" + +#: templates/part.editevent.php:1 +msgid "Edit an event" +msgstr "" + +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "" + +#: templates/part.eventform.php:5 +msgid "Title of the Event" +msgstr "" + +#: templates/part.eventform.php:11 +msgid "Category" +msgstr "" + +#: templates/part.eventform.php:13 +msgid "Select category" +msgstr "" + +#: templates/part.eventform.php:37 +msgid "All Day Event" +msgstr "" + +#: templates/part.eventform.php:41 +msgid "From" +msgstr "" + +#: templates/part.eventform.php:49 +msgid "To" +msgstr "" + +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "" + +#: templates/part.eventform.php:61 +msgid "Repeat" +msgstr "" + +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "" + +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Նկարագրություն" + +#: templates/part.eventform.php:218 +msgid "Description of the Event" +msgstr "" + +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "" + +#: templates/part.newevent.php:1 +msgid "Create a new event" +msgstr "" + +#: templates/settings.php:13 +msgid "Timezone" +msgstr "" + +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "" + +#: templates/settings.php:34 +msgid "24h" +msgstr "" + +#: templates/settings.php:35 +msgid "12h" +msgstr "" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "" + + diff --git a/l10n/hy/contacts.po b/l10n/hy/contacts.po new file mode 100644 index 00000000000..5a25e75625d --- /dev/null +++ b/l10n/hy/contacts.po @@ -0,0 +1,281 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Armenian (http://www.transifex.net/projects/p/owncloud/team/hy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." +msgstr "" + +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: lib/app.php:52 +msgid "This is not your addressbook." +msgstr "" + +#: lib/app.php:61 photo.php:36 +msgid "Contact could not be found." +msgstr "" + +#: lib/app.php:89 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 +msgid "Address" +msgstr "" + +#: lib/app.php:102 templates/part.addcardform.php:43 +msgid "Telephone" +msgstr "" + +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 +msgid "Email" +msgstr "" + +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 +msgid "Organization" +msgstr "" + +#: lib/app.php:116 lib/app.php:123 +msgid "Work" +msgstr "" + +#: lib/app.php:117 lib/app.php:121 +msgid "Home" +msgstr "" + +#: lib/app.php:122 +msgid "Mobile" +msgstr "" + +#: lib/app.php:124 +msgid "Text" +msgstr "" + +#: lib/app.php:125 +msgid "Voice" +msgstr "" + +#: lib/app.php:126 +msgid "Fax" +msgstr "" + +#: lib/app.php:127 +msgid "Video" +msgstr "" + +#: lib/app.php:128 +msgid "Pager" +msgstr "" + +#: lib/search.php:22 +msgid "Contact" +msgstr "" + +#: photo.php:42 +msgid "This is not your contact." +msgstr "" + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "" + +#: templates/part.property.php:3 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "" + + diff --git a/l10n/hy/core.po b/l10n/hy/core.po new file mode 100644 index 00000000000..df17a143a65 --- /dev/null +++ b/l10n/hy/core.po @@ -0,0 +1,170 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Armenian (http://www.transifex.net/projects/p/owncloud/team/hy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "" + +#: templates/installation.php:20 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:26 templates/login.php:12 +msgid "Password" +msgstr "" + +#: templates/installation.php:32 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:34 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "" + +#: templates/installation.php:79 +msgid "Database user" +msgstr "" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "" + +#: templates/installation.php:98 +msgid "Finish setup" +msgstr "" + +#: templates/layout.guest.php:35 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:34 +msgid "Log out" +msgstr "" + +#: templates/layout.user.php:46 templates/layout.user.php:47 +msgid "Settings" +msgstr "" + +#: templates/login.php:5 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:15 +msgid "remember" +msgstr "" + +#: templates/login.php:16 +msgid "Log in" +msgstr "" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "" + + diff --git a/l10n/hy/files.po b/l10n/hy/files.po new file mode 100644 index 00000000000..77b97fc34df --- /dev/null +++ b/l10n/hy/files.po @@ -0,0 +1,108 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Armenian (http://www.transifex.net/projects/p/owncloud/team/hy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/upload.php:19 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:20 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "" + +#: ajax/upload.php:21 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:22 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:23 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:24 +msgid "Missing a temporary folder" +msgstr "" + +#: appinfo/app.php:8 +msgid "Files" +msgstr "" + +#: templates/admin.php:5 +msgid "Maximum upload size" +msgstr "" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:11 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From the web" +msgstr "" + +#: templates/index.php:22 +msgid "Upload" +msgstr "" + +#: templates/index.php:35 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:43 +msgid "Name" +msgstr "" + +#: templates/index.php:45 +msgid "Download" +msgstr "" + +#: templates/index.php:49 +msgid "Size" +msgstr "" + +#: templates/index.php:50 +msgid "Modified" +msgstr "" + +#: templates/index.php:50 +msgid "Delete" +msgstr "" + +#: templates/index.php:58 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:60 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + + diff --git a/l10n/hy/gallery.po b/l10n/hy/gallery.po new file mode 100644 index 00000000000..21d7cd873d5 --- /dev/null +++ b/l10n/hy/gallery.po @@ -0,0 +1,52 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Armenian (http://www.transifex.net/projects/p/owncloud/team/hy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" + + diff --git a/l10n/hy/media.po b/l10n/hy/media.po new file mode 100644 index 00000000000..8fe3c57905b --- /dev/null +++ b/l10n/hy/media.po @@ -0,0 +1,64 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Armenian (http://www.transifex.net/projects/p/owncloud/team/hy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:32 +msgid "Music" +msgstr "" + +#: templates/music.php:3 templates/player.php:13 +msgid "Play" +msgstr "" + +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 +msgid "Pause" +msgstr "" + +#: templates/music.php:5 +msgid "Previous" +msgstr "" + +#: templates/music.php:6 templates/player.php:15 +msgid "Next" +msgstr "" + +#: templates/music.php:7 +msgid "Mute" +msgstr "" + +#: templates/music.php:8 +msgid "Unmute" +msgstr "" + +#: templates/music.php:25 +msgid "Rescan Collection" +msgstr "" + +#: templates/music.php:37 +msgid "Artist" +msgstr "" + +#: templates/music.php:38 +msgid "Album" +msgstr "" + +#: templates/music.php:39 +msgid "Title" +msgstr "" + + diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po new file mode 100644 index 00000000000..b2f41ef5227 --- /dev/null +++ b/l10n/hy/settings.po @@ -0,0 +1,156 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 16:32+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Armenian (http://www.transifex.net/projects/p/owncloud/team/hy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "" + +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 +msgid "Invalid request" +msgstr "" + +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "" + +#: ajax/setlanguage.php:14 +msgid "Language changed" +msgstr "" + +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "" + +#: templates/apps.php:8 +msgid "Add your application" +msgstr "" + +#: templates/apps.php:21 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:23 +msgid "-licensed" +msgstr "" + +#: templates/apps.php:23 +msgid "by" +msgstr "" + +#: templates/help.php:8 +msgid "Ask a question" +msgstr "" + +#: templates/help.php:20 +msgid "Problems connecting to help database." +msgstr "" + +#: templates/help.php:21 +msgid "Go there manually." +msgstr "" + +#: templates/help.php:29 +msgid "Answer" +msgstr "" + +#: templates/personal.php:8 +msgid "You use" +msgstr "" + +#: templates/personal.php:8 +msgid "of the available" +msgstr "" + +#: templates/personal.php:13 +msgid "Your password got changed" +msgstr "" + +#: templates/personal.php:14 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:15 +msgid "Current password" +msgstr "" + +#: templates/personal.php:16 +msgid "New password" +msgstr "" + +#: templates/personal.php:17 +msgid "show" +msgstr "" + +#: templates/personal.php:18 +msgid "Change password" +msgstr "" + +#: templates/personal.php:24 +msgid "Email" +msgstr "" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:32 templates/personal.php:33 +msgid "Language" +msgstr "" + +#: templates/personal.php:38 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:45 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/users.php:15 templates/users.php:30 +msgid "Name" +msgstr "" + +#: templates/users.php:16 templates/users.php:31 +msgid "Password" +msgstr "" + +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 +msgid "Groups" +msgstr "" + +#: templates/users.php:23 +msgid "Create" +msgstr "" + +#: templates/users.php:33 +msgid "Quota" +msgstr "" + +#: templates/users.php:58 +msgid "Delete" +msgstr "" + + diff --git a/l10n/ia/calendar.po b/l10n/ia/calendar.po new file mode 100644 index 00000000000..9cdf15555b7 --- /dev/null +++ b/l10n/ia/calendar.po @@ -0,0 +1,637 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Emilio Sepúlveda , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-15 13:45+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Interlingua (http://www.transifex.net/projects/p/owncloud/team/ia/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ia\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "" + +#: ajax/settimezone.php:22 +msgid "Timezone changed" +msgstr "" + +#: ajax/settimezone.php:24 +msgid "Invalid request" +msgstr "" + +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 +msgid "Calendar" +msgstr "Calendario" + +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "" + +#: lib/app.php:60 lib/object.php:332 +msgid "Birthday" +msgstr "" + +#: lib/app.php:61 lib/object.php:333 +msgid "Business" +msgstr "" + +#: lib/app.php:62 lib/object.php:334 +msgid "Call" +msgstr "" + +#: lib/app.php:63 lib/object.php:335 +msgid "Clients" +msgstr "" + +#: lib/app.php:64 lib/object.php:336 +msgid "Deliverer" +msgstr "" + +#: lib/app.php:65 lib/object.php:337 +msgid "Holidays" +msgstr "" + +#: lib/app.php:66 lib/object.php:338 +msgid "Ideas" +msgstr "" + +#: lib/app.php:67 lib/object.php:339 +msgid "Journey" +msgstr "" + +#: lib/app.php:68 lib/object.php:340 +msgid "Jubilee" +msgstr "" + +#: lib/app.php:69 lib/object.php:341 +msgid "Meeting" +msgstr "" + +#: lib/app.php:70 lib/object.php:342 +msgid "Other" +msgstr "" + +#: lib/app.php:71 lib/object.php:343 +msgid "Personal" +msgstr "" + +#: lib/app.php:72 lib/object.php:344 +msgid "Projects" +msgstr "Projectos" + +#: lib/app.php:73 lib/object.php:345 +msgid "Questions" +msgstr "" + +#: lib/app.php:74 lib/object.php:346 +msgid "Work" +msgstr "Travalio" + +#: lib/object.php:353 +msgid "Does not repeat" +msgstr "" + +#: lib/object.php:354 +msgid "Daily" +msgstr "" + +#: lib/object.php:355 +msgid "Weekly" +msgstr "" + +#: lib/object.php:356 +msgid "Every Weekday" +msgstr "" + +#: lib/object.php:357 +msgid "Bi-Weekly" +msgstr "" + +#: lib/object.php:358 +msgid "Monthly" +msgstr "" + +#: lib/object.php:359 +msgid "Yearly" +msgstr "" + +#: lib/object.php:366 +msgid "never" +msgstr "" + +#: lib/object.php:367 +msgid "by occurrences" +msgstr "" + +#: lib/object.php:368 +msgid "by date" +msgstr "" + +#: lib/object.php:375 +msgid "by monthday" +msgstr "" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "" + +#: lib/object.php:383 templates/lAfix.php:3 +msgid "Monday" +msgstr "" + +#: lib/object.php:384 templates/lAfix.php:4 +msgid "Tuesday" +msgstr "" + +#: lib/object.php:385 templates/lAfix.php:5 +msgid "Wednesday" +msgstr "" + +#: lib/object.php:386 templates/lAfix.php:6 +msgid "Thursday" +msgstr "" + +#: lib/object.php:387 templates/lAfix.php:7 +msgid "Friday" +msgstr "" + +#: lib/object.php:388 templates/lAfix.php:8 +msgid "Saturday" +msgstr "" + +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "" + +#: lib/object.php:396 +msgid "events week of month" +msgstr "" + +#: lib/object.php:397 +msgid "first" +msgstr "" + +#: lib/object.php:398 +msgid "second" +msgstr "" + +#: lib/object.php:399 +msgid "third" +msgstr "" + +#: lib/object.php:400 +msgid "fourth" +msgstr "" + +#: lib/object.php:401 +msgid "fifth" +msgstr "" + +#: lib/object.php:402 +msgid "last" +msgstr "" + +#: lib/object.php:424 templates/lAfix.php:16 +msgid "January" +msgstr "" + +#: lib/object.php:425 templates/lAfix.php:17 +msgid "February" +msgstr "" + +#: lib/object.php:426 templates/lAfix.php:18 +msgid "March" +msgstr "" + +#: lib/object.php:427 templates/lAfix.php:19 +msgid "April" +msgstr "" + +#: lib/object.php:428 templates/lAfix.php:20 +msgid "May" +msgstr "" + +#: lib/object.php:429 templates/lAfix.php:21 +msgid "June" +msgstr "" + +#: lib/object.php:430 templates/lAfix.php:22 +msgid "July" +msgstr "" + +#: lib/object.php:431 templates/lAfix.php:23 +msgid "August" +msgstr "" + +#: lib/object.php:432 templates/lAfix.php:24 +msgid "September" +msgstr "" + +#: lib/object.php:433 templates/lAfix.php:25 +msgid "October" +msgstr "" + +#: lib/object.php:434 templates/lAfix.php:26 +msgid "November" +msgstr "" + +#: lib/object.php:435 templates/lAfix.php:27 +msgid "December" +msgstr "" + +#: lib/object.php:441 +msgid "by events date" +msgstr "" + +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "" + +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "" + +#: lib/object.php:444 +msgid "by day and month" +msgstr "" + +#: lib/object.php:467 +msgid "Not an array" +msgstr "" + +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "" + +#: lib/search.php:40 +msgid "Cal." +msgstr "" + +#: templates/calendar.php:10 +msgid "All day" +msgstr "Omne die" + +#: templates/calendar.php:11 +msgid "Missing fields" +msgstr "" + +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" +msgstr "Titulo" + +#: templates/calendar.php:14 +msgid "From Date" +msgstr "" + +#: templates/calendar.php:15 +msgid "From Time" +msgstr "" + +#: templates/calendar.php:16 +msgid "To Date" +msgstr "" + +#: templates/calendar.php:17 +msgid "To Time" +msgstr "" + +#: templates/calendar.php:18 +msgid "The event ends before it starts" +msgstr "" + +#: templates/calendar.php:19 +msgid "There was a database fail" +msgstr "" + +#: templates/calendar.php:52 +msgid "Week" +msgstr "Septimana" + +#: templates/calendar.php:53 +msgid "Month" +msgstr "Mense" + +#: templates/calendar.php:54 +msgid "List" +msgstr "Lista" + +#: templates/calendar.php:59 +msgid "Today" +msgstr "Hodie" + +#: templates/calendar.php:60 +msgid "Calendars" +msgstr "Calendarios" + +#: templates/calendar.php:78 +msgid "There was a fail, while parsing the file." +msgstr "" + +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "" + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "" + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "" + +#: templates/lAfix.php:32 +msgid "May." +msgstr "" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "" + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "" + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "" + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "" + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "" + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "" + +#: templates/part.choosecalendar.php:1 +msgid "Choose active calendars" +msgstr "Selectionar calendarios active" + +#: templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "Nove calendario" + +#: templates/part.choosecalendar.php:20 +#: templates/part.choosecalendar.rowfields.php:4 +msgid "CalDav Link" +msgstr "" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Download" +msgstr "Discarga" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Edit" +msgstr "Modificar" + +#: templates/part.choosecalendar.rowfields.php:4 +#: templates/part.editevent.php:9 +msgid "Delete" +msgstr "Deler" + +#: templates/part.editcalendar.php:9 +msgid "New calendar" +msgstr "" + +#: templates/part.editcalendar.php:9 +msgid "Edit calendar" +msgstr "Modificar calendario" + +#: templates/part.editcalendar.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editcalendar.php:23 +msgid "Active" +msgstr "Active" + +#: templates/part.editcalendar.php:29 +msgid "Calendar color" +msgstr "Color de calendario" + +#: templates/part.editcalendar.php:42 +msgid "Save" +msgstr "Salveguardar" + +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 +#: templates/part.newevent.php:6 +msgid "Submit" +msgstr "Inviar" + +#: templates/part.editcalendar.php:43 +msgid "Cancel" +msgstr "Cancellar" + +#: templates/part.editevent.php:1 +msgid "Edit an event" +msgstr "" + +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "" + +#: templates/part.eventform.php:5 +msgid "Title of the Event" +msgstr "" + +#: templates/part.eventform.php:11 +msgid "Category" +msgstr "" + +#: templates/part.eventform.php:13 +msgid "Select category" +msgstr "Selectionar categoria" + +#: templates/part.eventform.php:37 +msgid "All Day Event" +msgstr "" + +#: templates/part.eventform.php:41 +msgid "From" +msgstr "Ab" + +#: templates/part.eventform.php:49 +msgid "To" +msgstr "A" + +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "" + +#: templates/part.eventform.php:61 +msgid "Repeat" +msgstr "" + +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "" + +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Description" + +#: templates/part.eventform.php:218 +msgid "Description of the Event" +msgstr "" + +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "" + +#: templates/part.newevent.php:1 +msgid "Create a new event" +msgstr "" + +#: templates/settings.php:13 +msgid "Timezone" +msgstr "" + +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "" + +#: templates/settings.php:34 +msgid "24h" +msgstr "" + +#: templates/settings.php:35 +msgid "12h" +msgstr "" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "" + + diff --git a/l10n/ia/contacts.po b/l10n/ia/contacts.po new file mode 100644 index 00000000000..3cc77ffc63f --- /dev/null +++ b/l10n/ia/contacts.po @@ -0,0 +1,283 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Emilio Sepúlveda , 2011. +# Emilio Sepúlveda , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Interlingua (http://www.transifex.net/projects/p/owncloud/team/ia/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ia\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." +msgstr "" + +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: lib/app.php:52 +msgid "This is not your addressbook." +msgstr "Iste non es tu libro de adresses" + +#: lib/app.php:61 photo.php:36 +msgid "Contact could not be found." +msgstr "Contacto non poterea esser legite" + +#: lib/app.php:89 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 +msgid "Address" +msgstr "Adresse" + +#: lib/app.php:102 templates/part.addcardform.php:43 +msgid "Telephone" +msgstr "Telephono" + +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 +msgid "Email" +msgstr "E-posta" + +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 +msgid "Organization" +msgstr "Organisation" + +#: lib/app.php:116 lib/app.php:123 +msgid "Work" +msgstr "Travalio" + +#: lib/app.php:117 lib/app.php:121 +msgid "Home" +msgstr "Domo" + +#: lib/app.php:122 +msgid "Mobile" +msgstr "" + +#: lib/app.php:124 +msgid "Text" +msgstr "Texto" + +#: lib/app.php:125 +msgid "Voice" +msgstr "Voce" + +#: lib/app.php:126 +msgid "Fax" +msgstr "Fax" + +#: lib/app.php:127 +msgid "Video" +msgstr "Video" + +#: lib/app.php:128 +msgid "Pager" +msgstr "Pager" + +#: lib/search.php:22 +msgid "Contact" +msgstr "" + +#: photo.php:42 +msgid "This is not your contact." +msgstr "Iste non es tu contacto" + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Adder contacto" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Nomine" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "Cassa postal" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Strata" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Citate" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Region" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "Codice postal" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "Pais" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Crear contacto" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Modificar" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Delete" +msgstr "Deler" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "" + +#: templates/part.property.php:3 +msgid "Birthday" +msgstr "Anniversario" + +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 +msgid "Phone" +msgstr "Phono" + +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "" + + diff --git a/l10n/ia/core.po b/l10n/ia/core.po new file mode 100644 index 00000000000..f3f5f87ceea --- /dev/null +++ b/l10n/ia/core.po @@ -0,0 +1,171 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Emilio Sepúlveda , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Interlingua (http://www.transifex.net/projects/p/owncloud/team/ia/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ia\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Requestate" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Initio de session fallate!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Nomine de usator" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Requestar reinitialisation" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Tu contrasigno esseva reinitialisate" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Nove contrasigno" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Reinitialisar contrasigno" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "Usatores" + +#: strings.php:7 +msgid "Apps" +msgstr "Applicationes" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "Adjuta" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "Nube non trovate" + +#: templates/installation.php:20 +msgid "Create an admin account" +msgstr "Crear un conto de administration" + +#: templates/installation.php:26 templates/login.php:12 +msgid "Password" +msgstr "Contrasigno" + +#: templates/installation.php:32 +msgid "Advanced" +msgstr "Avantiate" + +#: templates/installation.php:34 +msgid "Data folder" +msgstr "Dossier de datos" + +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Configurar le base de datos" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "essera usate" + +#: templates/installation.php:79 +msgid "Database user" +msgstr "Usator de base de datos" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Contrasigno de base de datos" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Nomine de base de datos" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "" + +#: templates/installation.php:98 +msgid "Finish setup" +msgstr "" + +#: templates/layout.guest.php:35 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:34 +msgid "Log out" +msgstr "Clauder le session" + +#: templates/layout.user.php:46 templates/layout.user.php:47 +msgid "Settings" +msgstr "Configurationes" + +#: templates/login.php:5 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:15 +msgid "remember" +msgstr "memora" + +#: templates/login.php:16 +msgid "Log in" +msgstr "" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "prev" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "prox" + + diff --git a/l10n/ia/files.po b/l10n/ia/files.po new file mode 100644 index 00000000000..8bfa363a1ba --- /dev/null +++ b/l10n/ia/files.po @@ -0,0 +1,110 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Emilio Sepúlveda , 2011. +# Emilio Sepúlveda , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:25+0100\n" +"PO-Revision-Date: 2012-01-26 02:10+0000\n" +"Last-Translator: Emilio Sepúlveda \n" +"Language-Team: Interlingua (http://www.transifex.net/projects/p/owncloud/team/ia/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ia\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/upload.php:19 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:20 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "" + +#: ajax/upload.php:21 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:22 +msgid "The uploaded file was only partially uploaded" +msgstr "Le file incargate solmente esseva incargate partialmente" + +#: ajax/upload.php:23 +msgid "No file was uploaded" +msgstr "Nulle file esseva incargate" + +#: ajax/upload.php:24 +msgid "Missing a temporary folder" +msgstr "" + +#: appinfo/app.php:8 +msgid "Files" +msgstr "Files" + +#: templates/admin.php:5 +msgid "Maximum upload size" +msgstr "Dimension maxime de incargamento" + +#: templates/index.php:7 +msgid "New" +msgstr "Nove" + +#: templates/index.php:10 +msgid "Text file" +msgstr "File de texto" + +#: templates/index.php:11 +msgid "Folder" +msgstr "Dossier" + +#: templates/index.php:12 +msgid "From the web" +msgstr "" + +#: templates/index.php:22 +msgid "Upload" +msgstr "Incargar" + +#: templates/index.php:35 +msgid "Nothing in here. Upload something!" +msgstr "Nihil hic. Incarga alcun cosa!" + +#: templates/index.php:43 +msgid "Name" +msgstr "Nomine" + +#: templates/index.php:45 +msgid "Download" +msgstr "Discargar" + +#: templates/index.php:49 +msgid "Size" +msgstr "Dimension" + +#: templates/index.php:50 +msgid "Modified" +msgstr "Modificate" + +#: templates/index.php:50 +msgid "Delete" +msgstr "Deler" + +#: templates/index.php:58 +msgid "Upload too large" +msgstr "Incargamento troppo longe" + +#: templates/index.php:60 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + + diff --git a/l10n/ia/gallery.po b/l10n/ia/gallery.po new file mode 100644 index 00000000000..fa58412535d --- /dev/null +++ b/l10n/ia/gallery.po @@ -0,0 +1,53 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Emilio Sepúlveda , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Interlingua (http://www.transifex.net/projects/p/owncloud/team/ia/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ia\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "Retro" + + diff --git a/l10n/ia/media.po b/l10n/ia/media.po new file mode 100644 index 00000000000..0a64e175db4 --- /dev/null +++ b/l10n/ia/media.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Emilio Sepúlveda , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Interlingua (http://www.transifex.net/projects/p/owncloud/team/ia/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ia\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:32 +msgid "Music" +msgstr "Musica" + +#: templates/music.php:3 templates/player.php:13 +msgid "Play" +msgstr "Reproducer" + +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 +msgid "Pause" +msgstr "Pausa" + +#: templates/music.php:5 +msgid "Previous" +msgstr "Previe" + +#: templates/music.php:6 templates/player.php:15 +msgid "Next" +msgstr "Proxime" + +#: templates/music.php:7 +msgid "Mute" +msgstr "Mute" + +#: templates/music.php:8 +msgid "Unmute" +msgstr "Con sono" + +#: templates/music.php:25 +msgid "Rescan Collection" +msgstr "Rescannar collection" + +#: templates/music.php:37 +msgid "Artist" +msgstr "Artista" + +#: templates/music.php:38 +msgid "Album" +msgstr "Album" + +#: templates/music.php:39 +msgid "Title" +msgstr "Titulo" + + diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po new file mode 100644 index 00000000000..22d5293baea --- /dev/null +++ b/l10n/ia/settings.po @@ -0,0 +1,157 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Emilio Sepúlveda , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 16:32+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Interlingua (http://www.transifex.net/projects/p/owncloud/team/ia/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ia\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "" + +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 +msgid "Invalid request" +msgstr "" + +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID cambiate" + +#: ajax/setlanguage.php:14 +msgid "Language changed" +msgstr "Linguage cambiate" + +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "" + +#: templates/apps.php:8 +msgid "Add your application" +msgstr "Adder tu application" + +#: templates/apps.php:21 +msgid "Select an App" +msgstr "Selectionar un app" + +#: templates/apps.php:23 +msgid "-licensed" +msgstr "" + +#: templates/apps.php:23 +msgid "by" +msgstr "per" + +#: templates/help.php:8 +msgid "Ask a question" +msgstr "Facer un question" + +#: templates/help.php:20 +msgid "Problems connecting to help database." +msgstr "" + +#: templates/help.php:21 +msgid "Go there manually." +msgstr "" + +#: templates/help.php:29 +msgid "Answer" +msgstr "Responsa" + +#: templates/personal.php:8 +msgid "You use" +msgstr "" + +#: templates/personal.php:8 +msgid "of the available" +msgstr "" + +#: templates/personal.php:13 +msgid "Your password got changed" +msgstr "Tu contrasigno esseva cambiate" + +#: templates/personal.php:14 +msgid "Unable to change your password" +msgstr "Non pote cambiar tu contrasigno" + +#: templates/personal.php:15 +msgid "Current password" +msgstr "Contrasigno currente" + +#: templates/personal.php:16 +msgid "New password" +msgstr "Nove contrasigno" + +#: templates/personal.php:17 +msgid "show" +msgstr "monstrar" + +#: templates/personal.php:18 +msgid "Change password" +msgstr "Cambiar contrasigno" + +#: templates/personal.php:24 +msgid "Email" +msgstr "" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:32 templates/personal.php:33 +msgid "Language" +msgstr "Linguage" + +#: templates/personal.php:38 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:45 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/users.php:15 templates/users.php:30 +msgid "Name" +msgstr "Nomine" + +#: templates/users.php:16 templates/users.php:31 +msgid "Password" +msgstr "Contrasigno" + +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 +msgid "Groups" +msgstr "Gruppos" + +#: templates/users.php:23 +msgid "Create" +msgstr "Crear" + +#: templates/users.php:33 +msgid "Quota" +msgstr "" + +#: templates/users.php:58 +msgid "Delete" +msgstr "Deler" + + diff --git a/l10n/id/calendar.po b/l10n/id/calendar.po index 56e64399dd0..ac9956f71b3 100644 --- a/l10n/id/calendar.po +++ b/l10n/id/calendar.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-15 13:45+0000\n" +"Last-Translator: icewind \n" "Language-Team: Indonesian (http://www.transifex.net/projects/p/owncloud/team/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,321 +18,403 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0\n" -#: ajax/createcalendar.php:18 ajax/settimezone.php:19 -#: ajax/updatecalendar.php:18 -msgid "Authentication error" -msgstr "Kesalahan otentikasi" - -#: ajax/editeventform.php:25 -msgid "Wrong calendar" +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" msgstr "" -#: ajax/settimezone.php:27 +#: ajax/settimezone.php:22 msgid "Timezone changed" msgstr "Zona waktu telah diubah" -#: ajax/settimezone.php:29 +#: ajax/settimezone.php:24 msgid "Invalid request" msgstr "Permintaan tidak sah" -#: appinfo/app.php:19 templates/part.eventform.php:27 -#: templates/part.eventinfo.php:18 +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 msgid "Calendar" msgstr "Kalender" -#: lib/object.php:292 +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "" + +#: lib/app.php:60 lib/object.php:332 msgid "Birthday" msgstr "" -#: lib/object.php:293 +#: lib/app.php:61 lib/object.php:333 msgid "Business" msgstr "" -#: lib/object.php:294 +#: lib/app.php:62 lib/object.php:334 msgid "Call" msgstr "" -#: lib/object.php:295 +#: lib/app.php:63 lib/object.php:335 msgid "Clients" msgstr "" -#: lib/object.php:296 +#: lib/app.php:64 lib/object.php:336 msgid "Deliverer" msgstr "" -#: lib/object.php:297 +#: lib/app.php:65 lib/object.php:337 msgid "Holidays" msgstr "" -#: lib/object.php:298 +#: lib/app.php:66 lib/object.php:338 msgid "Ideas" msgstr "" -#: lib/object.php:299 +#: lib/app.php:67 lib/object.php:339 msgid "Journey" msgstr "" -#: lib/object.php:300 +#: lib/app.php:68 lib/object.php:340 msgid "Jubilee" msgstr "" -#: lib/object.php:301 +#: lib/app.php:69 lib/object.php:341 msgid "Meeting" msgstr "" -#: lib/object.php:302 +#: lib/app.php:70 lib/object.php:342 msgid "Other" msgstr "" -#: lib/object.php:303 +#: lib/app.php:71 lib/object.php:343 msgid "Personal" msgstr "" -#: lib/object.php:304 +#: lib/app.php:72 lib/object.php:344 msgid "Projects" msgstr "" -#: lib/object.php:305 +#: lib/app.php:73 lib/object.php:345 msgid "Questions" msgstr "" -#: lib/object.php:306 +#: lib/app.php:74 lib/object.php:346 msgid "Work" msgstr "" -#: lib/object.php:313 +#: lib/object.php:353 msgid "Does not repeat" msgstr "Tidak akan mengulangi" -#: lib/object.php:314 +#: lib/object.php:354 msgid "Daily" msgstr "Harian" -#: lib/object.php:315 +#: lib/object.php:355 msgid "Weekly" msgstr "Mingguan" -#: lib/object.php:316 +#: lib/object.php:356 msgid "Every Weekday" msgstr "Setiap Hari Minggu" -#: lib/object.php:317 +#: lib/object.php:357 msgid "Bi-Weekly" msgstr "Dwi-mingguan" -#: lib/object.php:318 +#: lib/object.php:358 msgid "Monthly" msgstr "Bulanan" -#: lib/object.php:319 +#: lib/object.php:359 msgid "Yearly" msgstr "Tahunan" -#: lib/object.php:337 +#: lib/object.php:366 +msgid "never" +msgstr "" + +#: lib/object.php:367 +msgid "by occurrences" +msgstr "" + +#: lib/object.php:368 +msgid "by date" +msgstr "" + +#: lib/object.php:375 +msgid "by monthday" +msgstr "" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "" + +#: lib/object.php:383 templates/lAfix.php:3 +msgid "Monday" +msgstr "" + +#: lib/object.php:384 templates/lAfix.php:4 +msgid "Tuesday" +msgstr "" + +#: lib/object.php:385 templates/lAfix.php:5 +msgid "Wednesday" +msgstr "" + +#: lib/object.php:386 templates/lAfix.php:6 +msgid "Thursday" +msgstr "" + +#: lib/object.php:387 templates/lAfix.php:7 +msgid "Friday" +msgstr "" + +#: lib/object.php:388 templates/lAfix.php:8 +msgid "Saturday" +msgstr "" + +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "" + +#: lib/object.php:396 +msgid "events week of month" +msgstr "" + +#: lib/object.php:397 +msgid "first" +msgstr "" + +#: lib/object.php:398 +msgid "second" +msgstr "" + +#: lib/object.php:399 +msgid "third" +msgstr "" + +#: lib/object.php:400 +msgid "fourth" +msgstr "" + +#: lib/object.php:401 +msgid "fifth" +msgstr "" + +#: lib/object.php:402 +msgid "last" +msgstr "" + +#: lib/object.php:424 templates/lAfix.php:16 +msgid "January" +msgstr "" + +#: lib/object.php:425 templates/lAfix.php:17 +msgid "February" +msgstr "" + +#: lib/object.php:426 templates/lAfix.php:18 +msgid "March" +msgstr "" + +#: lib/object.php:427 templates/lAfix.php:19 +msgid "April" +msgstr "" + +#: lib/object.php:428 templates/lAfix.php:20 +msgid "May" +msgstr "" + +#: lib/object.php:429 templates/lAfix.php:21 +msgid "June" +msgstr "" + +#: lib/object.php:430 templates/lAfix.php:22 +msgid "July" +msgstr "" + +#: lib/object.php:431 templates/lAfix.php:23 +msgid "August" +msgstr "" + +#: lib/object.php:432 templates/lAfix.php:24 +msgid "September" +msgstr "" + +#: lib/object.php:433 templates/lAfix.php:25 +msgid "October" +msgstr "" + +#: lib/object.php:434 templates/lAfix.php:26 +msgid "November" +msgstr "" + +#: lib/object.php:435 templates/lAfix.php:27 +msgid "December" +msgstr "" + +#: lib/object.php:441 +msgid "by events date" +msgstr "" + +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "" + +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "" + +#: lib/object.php:444 +msgid "by day and month" +msgstr "" + +#: lib/object.php:467 msgid "Not an array" msgstr "" -#: templates/calendar.php:3 +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "" + +#: lib/search.php:40 +msgid "Cal." +msgstr "" + +#: templates/calendar.php:10 msgid "All day" msgstr "Semua Hari" -#: templates/calendar.php:32 -msgid "Sunday" -msgstr "Minggu" - -#: templates/calendar.php:32 -msgid "Monday" -msgstr "Senin" - -#: templates/calendar.php:32 -msgid "Tuesday" -msgstr "Selasa" - -#: templates/calendar.php:32 -msgid "Wednesday" -msgstr "Rabu" - -#: templates/calendar.php:32 -msgid "Thursday" -msgstr "Kamis" - -#: templates/calendar.php:32 -msgid "Friday" -msgstr "Jumat" - -#: templates/calendar.php:32 -msgid "Saturday" -msgstr "Sabtu" - -#: templates/calendar.php:33 -msgid "Sun." -msgstr "Min." - -#: templates/calendar.php:33 -msgid "Mon." -msgstr "Sen." - -#: templates/calendar.php:33 -msgid "Tue." -msgstr "Sel." - -#: templates/calendar.php:33 -msgid "Wed." -msgstr "Rab." - -#: templates/calendar.php:33 -msgid "Thu." -msgstr "Kam." - -#: templates/calendar.php:33 -msgid "Fri." -msgstr "Jum." - -#: templates/calendar.php:33 -msgid "Sat." -msgstr "Sab." - -#: templates/calendar.php:34 -msgid "January" -msgstr "Januari" - -#: templates/calendar.php:34 -msgid "February" -msgstr "Februari" - -#: templates/calendar.php:34 -msgid "March" -msgstr "Maret" - -#: templates/calendar.php:34 -msgid "April" -msgstr "April" - -#: templates/calendar.php:34 -msgid "May" -msgstr "Mei" - -#: templates/calendar.php:34 -msgid "June" -msgstr "Juni" - -#: templates/calendar.php:34 -msgid "July" -msgstr "Juli" - -#: templates/calendar.php:34 -msgid "August" -msgstr "Agustus" - -#: templates/calendar.php:34 -msgid "September" -msgstr "September" - -#: templates/calendar.php:34 -msgid "October" -msgstr "Oktober" - -#: templates/calendar.php:34 -msgid "November" -msgstr "November" - -#: templates/calendar.php:34 -msgid "December" -msgstr "Desember" - -#: templates/calendar.php:35 -msgid "Jan." -msgstr "Jan." - -#: templates/calendar.php:35 -msgid "Feb." -msgstr "Feb." - -#: templates/calendar.php:35 -msgid "Mar." -msgstr "Mar." - -#: templates/calendar.php:35 -msgid "Apr." -msgstr "Apr." - -#: templates/calendar.php:35 -msgid "May." +#: templates/calendar.php:11 +msgid "Missing fields" msgstr "" -#: templates/calendar.php:35 -msgid "Jun." -msgstr "Jun." +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" +msgstr "Judul" -#: templates/calendar.php:35 -msgid "Jul." -msgstr "Jul." +#: templates/calendar.php:14 +msgid "From Date" +msgstr "" -#: templates/calendar.php:35 -msgid "Aug." -msgstr "Agu." +#: templates/calendar.php:15 +msgid "From Time" +msgstr "" -#: templates/calendar.php:35 -msgid "Sep." -msgstr "Sep." +#: templates/calendar.php:16 +msgid "To Date" +msgstr "" -#: templates/calendar.php:35 -msgid "Oct." -msgstr "Okt." +#: templates/calendar.php:17 +msgid "To Time" +msgstr "" -#: templates/calendar.php:35 -msgid "Nov." -msgstr "Nov." +#: templates/calendar.php:18 +msgid "The event ends before it starts" +msgstr "" -#: templates/calendar.php:35 -msgid "Dec." -msgstr "Des." +#: templates/calendar.php:19 +msgid "There was a database fail" +msgstr "" -#: templates/calendar.php:36 templates/calendar.php:50 -#: templates/calendar.php:116 +#: templates/calendar.php:52 msgid "Week" msgstr "Minggu" -#: templates/calendar.php:37 templates/calendar.php:51 -msgid "Weeks" -msgstr "Minggu" - -#: templates/calendar.php:38 -msgid "More before {startdate}" -msgstr "" - -#: templates/calendar.php:39 -msgid "More after {enddate}" -msgstr "" - -#: templates/calendar.php:49 -msgid "Day" -msgstr "Hari" - -#: templates/calendar.php:52 +#: templates/calendar.php:53 msgid "Month" msgstr "Bulan" -#: templates/calendar.php:53 +#: templates/calendar.php:54 msgid "List" msgstr "" -#: templates/calendar.php:58 +#: templates/calendar.php:59 msgid "Today" msgstr "Hari ini" -#: templates/calendar.php:59 +#: templates/calendar.php:60 msgid "Calendars" msgstr "Kalender" -#: templates/calendar.php:76 templates/calendar.php:94 -msgid "Time" -msgstr "Waktu" - -#: templates/calendar.php:169 +#: templates/calendar.php:78 msgid "There was a fail, while parsing the file." msgstr "Terjadi kesalahan, saat mengurai berkas." +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "" + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "" + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "" + +#: templates/lAfix.php:32 +msgid "May." +msgstr "" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "" + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "" + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "" + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "" + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "" + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "" + #: templates/part.choosecalendar.php:1 msgid "Choose active calendars" msgstr "Pilih kalender aktif" @@ -351,12 +433,11 @@ msgid "Download" msgstr "Unduh" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.eventinfo.php:64 msgid "Edit" msgstr "Sunting" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.editevent.php:8 +#: templates/part.editevent.php:9 msgid "Delete" msgstr "" @@ -376,90 +457,181 @@ msgstr "Namatampilan" msgid "Active" msgstr "Aktif" -#: templates/part.editcalendar.php:29 templates/part.eventform.php:88 -#: templates/part.eventinfo.php:58 -msgid "Description" -msgstr "Deskripsi" - -#: templates/part.editcalendar.php:35 +#: templates/part.editcalendar.php:29 msgid "Calendar color" msgstr "Warna kalender" -#: templates/part.editcalendar.php:41 +#: templates/part.editcalendar.php:42 msgid "Save" msgstr "" -#: templates/part.editcalendar.php:41 templates/part.editevent.php:7 +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 #: templates/part.newevent.php:6 msgid "Submit" msgstr "Sampaikan" -#: templates/part.editcalendar.php:42 +#: templates/part.editcalendar.php:43 msgid "Cancel" msgstr "" -#: templates/part.editevent.php:1 templates/part.eventinfo.php:1 +#: templates/part.editevent.php:1 msgid "Edit an event" msgstr "Sunting agenda" -#: templates/part.eventform.php:3 templates/part.eventinfo.php:4 -msgid "Title" -msgstr "Judul" +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "" #: templates/part.eventform.php:5 msgid "Title of the Event" msgstr "Judul Agenda" -#: templates/part.eventform.php:9 templates/part.eventinfo.php:9 -msgid "Location" -msgstr "Lokasi" - #: templates/part.eventform.php:11 -msgid "Location of the Event" -msgstr "Lokasi Agenda" - -#: templates/part.eventform.php:17 templates/part.eventinfo.php:16 msgid "Category" msgstr "Kategori" -#: templates/part.eventform.php:19 +#: templates/part.eventform.php:13 msgid "Select category" msgstr "" -#: templates/part.eventform.php:45 templates/part.eventinfo.php:28 +#: templates/part.eventform.php:37 msgid "All Day Event" msgstr "Agenda di Semua Hari" -#: templates/part.eventform.php:49 templates/part.eventinfo.php:31 +#: templates/part.eventform.php:41 msgid "From" msgstr "Dari" -#: templates/part.eventform.php:57 templates/part.eventinfo.php:38 +#: templates/part.eventform.php:49 msgid "To" msgstr "Ke" -#: templates/part.eventform.php:65 templates/part.eventinfo.php:44 +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "" + +#: templates/part.eventform.php:61 msgid "Repeat" msgstr "Ulangi" -#: templates/part.eventform.php:81 templates/part.eventinfo.php:51 -msgid "Attendees" -msgstr "Yang menghadiri" +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "" -#: templates/part.eventform.php:89 +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Lokasi" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Lokasi Agenda" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Deskripsi" + +#: templates/part.eventform.php:218 msgid "Description of the Event" msgstr "Deskripsi dari Agenda" -#: templates/part.eventinfo.php:63 -msgid "Close" -msgstr "Tutup" +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "" #: templates/part.newevent.php:1 msgid "Create a new event" msgstr "Buat agenda baru" -#: templates/settings.php:11 +#: templates/settings.php:13 msgid "Timezone" msgstr "Zonawaktu" +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "" + +#: templates/settings.php:34 +msgid "24h" +msgstr "" + +#: templates/settings.php:35 +msgid "12h" +msgstr "" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "" + diff --git a/l10n/id/contacts.po b/l10n/id/contacts.po index 3a6360c599f..f38c4dbbc2d 100644 --- a/l10n/id/contacts.po +++ b/l10n/id/contacts.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 20:10+0200\n" -"PO-Revision-Date: 2011-09-23 18:10+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" "Language-Team: Indonesian (http://www.transifex.net/projects/p/owncloud/team/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,164 +17,265 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0\n" -#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 -#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 -#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 -#: ajax/showsetproperty.php:32 photo.php:32 -msgid "You need to log in." +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." msgstr "" -#: ajax/addcard.php:37 +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: lib/app.php:52 msgid "This is not your addressbook." msgstr "" -#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 -#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 -#: ajax/showsetproperty.php:38 photo.php:39 +#: lib/app.php:61 photo.php:36 msgid "Contact could not be found." msgstr "" -#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 -#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 -#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 -msgid "This is not your contact." -msgstr "" - -#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 -#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 -msgid "vCard could not be read." -msgstr "" - -#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 -#: ajax/showsetproperty.php:62 +#: lib/app.php:89 msgid "Information about vCard is incorrect. Please reload the page." msgstr "" -#: photo.php:53 -msgid "This card is not RFC compatible." -msgstr "" - -#: photo.php:90 -msgid "This card does not contain a photo." -msgstr "" - -#: templates/index.php:8 -msgid "Add Contact" -msgstr "" - -#: templates/part.addcardform.php:5 -msgid "Group" -msgstr "" - -#: templates/part.addcardform.php:12 templates/part.property.php:3 -msgid "Name" -msgstr "" - -#: templates/part.addcardform.php:14 -msgid "Create Contact" -msgstr "" - -#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 msgid "Address" msgstr "" -#: templates/part.addpropertyform.php:5 +#: lib/app.php:102 templates/part.addcardform.php:43 msgid "Telephone" msgstr "" -#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 msgid "Email" msgstr "" -#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 msgid "Organization" msgstr "" -#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +#: lib/app.php:116 lib/app.php:123 msgid "Work" msgstr "" -#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +#: lib/app.php:117 lib/app.php:121 msgid "Home" msgstr "" -#: templates/part.addpropertyform.php:20 templates/part.property.php:48 -#: templates/part.setpropertyform.php:5 -msgid "PO Box" -msgstr "" - -#: templates/part.addpropertyform.php:21 templates/part.property.php:51 -#: templates/part.setpropertyform.php:6 -msgid "Extended" -msgstr "" - -#: templates/part.addpropertyform.php:22 templates/part.property.php:54 -#: templates/part.setpropertyform.php:7 -msgid "Street" -msgstr "" - -#: templates/part.addpropertyform.php:23 templates/part.property.php:57 -#: templates/part.setpropertyform.php:8 -msgid "City" -msgstr "" - -#: templates/part.addpropertyform.php:24 templates/part.property.php:60 -#: templates/part.setpropertyform.php:9 -msgid "Region" -msgstr "" - -#: templates/part.addpropertyform.php:25 templates/part.property.php:63 -#: templates/part.setpropertyform.php:10 -msgid "Zipcode" -msgstr "" - -#: templates/part.addpropertyform.php:26 templates/part.property.php:66 -#: templates/part.setpropertyform.php:11 -msgid "Country" -msgstr "" - -#: templates/part.addpropertyform.php:31 +#: lib/app.php:122 msgid "Mobile" msgstr "" -#: templates/part.addpropertyform.php:33 +#: lib/app.php:124 msgid "Text" msgstr "" -#: templates/part.addpropertyform.php:34 +#: lib/app.php:125 msgid "Voice" msgstr "" -#: templates/part.addpropertyform.php:35 +#: lib/app.php:126 msgid "Fax" msgstr "" -#: templates/part.addpropertyform.php:36 +#: lib/app.php:127 msgid "Video" msgstr "" -#: templates/part.addpropertyform.php:37 +#: lib/app.php:128 msgid "Pager" msgstr "" -#: templates/part.details.php:33 -msgid "Delete" +#: lib/search.php:22 +msgid "Contact" msgstr "" -#: templates/part.details.php:34 -msgid "Add Property" +#: photo.php:42 +msgid "This is not your contact." msgstr "" -#: templates/part.property.php:9 -msgid "Birthday" +#: templates/index.php:6 +msgid "Add Contact" msgstr "" -#: templates/part.property.php:29 -msgid "Phone" +#: templates/index.php:7 +msgid "Addressbooks" msgstr "" -#: templates/part.setpropertyform.php:17 +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 msgid "Edit" msgstr "" +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "" + +#: templates/part.property.php:3 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "" + diff --git a/l10n/id/core.po b/l10n/id/core.po index d19793d98a1..b2751d7daa3 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-05 01:19+0000\n" -"Last-Translator: radifar \n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Indonesian (http://www.transifex.net/projects/p/owncloud/team/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,51 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0\n" +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Username" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Pribadi" @@ -46,54 +91,50 @@ msgstr "Cloud tidak ditemukan" msgid "Create an admin account" msgstr "Buat sebuah akun admin" -#: templates/installation.php:21 -msgid "Username" -msgstr "Username" - -#: templates/installation.php:22 +#: templates/installation.php:26 templates/login.php:12 msgid "Password" msgstr "Password" -#: templates/installation.php:27 -msgid "Configure the database" -msgstr "Konfigurasi database" - -#: templates/installation.php:32 templates/installation.php:43 -#: templates/installation.php:53 -msgid "will be used" -msgstr "akan digunakan" - -#: templates/installation.php:64 -msgid "Database user" -msgstr "Pengguna database" - -#: templates/installation.php:65 -msgid "Database password" -msgstr "Password database" - -#: templates/installation.php:66 -msgid "Database name" -msgstr "Nama database" - -#: templates/installation.php:72 +#: templates/installation.php:32 msgid "Advanced" msgstr "Tingkat Lanjut" -#: templates/installation.php:75 -msgid "Database host" -msgstr "Host database" - -#: templates/installation.php:76 +#: templates/installation.php:34 msgid "Data folder" msgstr "Folder data" +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Konfigurasi database" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "akan digunakan" + #: templates/installation.php:79 +msgid "Database user" +msgstr "Pengguna database" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Password database" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Nama database" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Host database" + +#: templates/installation.php:98 msgid "Finish setup" msgstr "Selesaikan instalasi" #: templates/layout.guest.php:35 -msgid "gives you freedom and control over your own data" -msgstr "memberikan anda kebebasan dan kendali atas data anda sendiri" +msgid "web services under your control" +msgstr "" #: templates/layout.user.php:34 msgid "Log out" @@ -103,38 +144,22 @@ msgstr "Keluar" msgid "Settings" msgstr "Setelan" -#: templates/login.php:4 +#: templates/login.php:5 msgid "Lost your password?" msgstr "Lupa password anda?" -#: templates/login.php:9 templates/login.php:13 +#: templates/login.php:15 msgid "remember" msgstr "selalu login" +#: templates/login.php:16 +msgid "Log in" +msgstr "" + #: templates/logout.php:1 msgid "You are logged out." msgstr "Anda telah keluar." -#: templates/lostpassword.php:3 -msgid "You will receive a link to reset your password via Email." -msgstr "Anda akan menerima tautan untuk menset ulang password anda via Email." - -#: templates/lostpassword.php:5 -msgid "Requested" -msgstr "Telah diminta" - -#: templates/lostpassword.php:8 -msgid "Login failed!" -msgstr "Gagal masuk!" - -#: templates/lostpassword.php:10 -msgid "Username or Email" -msgstr "Nama Pengguna atau Email" - -#: templates/lostpassword.php:11 -msgid "Request reset" -msgstr "Meminta set ulang" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "sebelum" @@ -143,16 +168,4 @@ msgstr "sebelum" msgid "next" msgstr "selanjutnya" -#: templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "Password anda telah diset ulang" - -#: templates/resetpassword.php:6 -msgid "New password" -msgstr "Password Baru" - -#: templates/resetpassword.php:7 -msgid "Reset password" -msgstr "Set Ulang Password" - diff --git a/l10n/id/files.po b/l10n/id/files.po index 8b116d05259..7a7d4ce4b33 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Indonesian (http://www.transifex.net/projects/p/owncloud/team/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,33 +18,33 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0\n" -#: ajax/upload.php:24 +#: ajax/upload.php:19 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:20 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:21 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:22 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:23 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:24 msgid "Missing a temporary folder" msgstr "" -#: appinfo/app.php:7 +#: appinfo/app.php:8 msgid "Files" msgstr "Berkas" @@ -52,43 +52,55 @@ msgstr "Berkas" msgid "Maximum upload size" msgstr "Ukuran unggah maksimum" +#: templates/index.php:7 +msgid "New" +msgstr "" + #: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:11 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From the web" +msgstr "" + +#: templates/index.php:22 msgid "Upload" msgstr "Unggah" -#: templates/index.php:17 -msgid "New Folder" -msgstr "Folder Baru" - -#: templates/index.php:31 +#: templates/index.php:35 msgid "Nothing in here. Upload something!" msgstr "Tidak ada apa-apa di sini. Unggah sesuatu!" -#: templates/index.php:39 +#: templates/index.php:43 msgid "Name" msgstr "Nama" -#: templates/index.php:41 +#: templates/index.php:45 msgid "Download" msgstr "Unduh" -#: templates/index.php:45 +#: templates/index.php:49 msgid "Size" msgstr "Ukuran" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Modified" msgstr "Dimodifikasi" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Delete" msgstr "Hapus" -#: templates/index.php:54 +#: templates/index.php:58 msgid "Upload too large" msgstr "Unggahan terlalu besar" -#: templates/index.php:56 +#: templates/index.php:60 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." diff --git a/l10n/id/gallery.po b/l10n/id/gallery.po new file mode 100644 index 00000000000..1858e5d1140 --- /dev/null +++ b/l10n/id/gallery.po @@ -0,0 +1,52 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Indonesian (http://www.transifex.net/projects/p/owncloud/team/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" + + diff --git a/l10n/id/media.po b/l10n/id/media.po index 5e833cc559b..16f3ae710a1 100644 --- a/l10n/id/media.po +++ b/l10n/id/media.po @@ -2,14 +2,15 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# Translators: # Muhammad Radifar , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-08-20 05:08+0200\n" -"PO-Revision-Date: 2011-08-20 03:08+0000\n" -"Last-Translator: JanCBorchardt \n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Indonesian (http://www.transifex.net/projects/p/owncloud/team/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,39 +18,35 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0\n" -#: appinfo/app.php:31 +#: appinfo/app.php:32 msgid "Music" msgstr "Musik" -#: templates/music.php:3 +#: templates/music.php:3 templates/player.php:13 msgid "Play" -msgstr "" +msgstr "Mainkan" -#: templates/music.php:4 templates/music.php:30 +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 msgid "Pause" msgstr "Jeda" #: templates/music.php:5 msgid "Previous" -msgstr "" +msgstr "Sebelumnya" -#: templates/music.php:6 +#: templates/music.php:6 templates/player.php:15 msgid "Next" -msgstr "" +msgstr "Selanjutnya" #: templates/music.php:7 msgid "Mute" -msgstr "" +msgstr "Nonaktifkan suara" #: templates/music.php:8 msgid "Unmute" -msgstr "" +msgstr "Aktifkan suara" -#: templates/music.php:28 -msgid "Songs scanned" -msgstr "Lagu-lagu yang telah dipindai" - -#: templates/music.php:29 +#: templates/music.php:25 msgid "Rescan Collection" msgstr "Pindai ulang Koleksi" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 890bf7b34af..f27ff1d979a 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -2,14 +2,15 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# Translators: # Muhammad Radifar , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-08-28 01:11+0200\n" -"PO-Revision-Date: 2011-08-23 09:45+0000\n" -"Last-Translator: radifar \n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 16:32+0000\n" +"Last-Translator: icewind \n" "Language-Team: Indonesian (http://www.transifex.net/projects/p/owncloud/team/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,22 +18,30 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0\n" -#: ajax/openid.php:13 ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Otentikasi bermasalah" +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "" -#: ajax/openid.php:21 -msgid "OpenID Changed" -msgstr "OpenID telah dirubah" - -#: ajax/openid.php:23 ajax/setlanguage.php:23 +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 msgid "Invalid request" msgstr "Permintaan tidak valid" -#: ajax/setlanguage.php:21 +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID telah dirubah" + +#: ajax/setlanguage.php:14 msgid "Language changed" msgstr "Bahasa telah diganti" +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "" + #: templates/apps.php:8 msgid "Add your application" msgstr "Tambahkan aplikasi anda" @@ -53,15 +62,15 @@ msgstr "oleh" msgid "Ask a question" msgstr "Ajukan pertanyaan" -#: templates/help.php:17 +#: templates/help.php:20 msgid "Problems connecting to help database." msgstr "Bermasalah saat menghubungi database bantuan." -#: templates/help.php:18 +#: templates/help.php:21 msgid "Go there manually." msgstr "Pergi kesana secara manual." -#: templates/help.php:26 +#: templates/help.php:29 msgid "Answer" msgstr "Jawab" @@ -77,6 +86,10 @@ msgstr "dari yang tersedia" msgid "Your password got changed" msgstr "Password anda telah dirubah" +#: templates/personal.php:14 +msgid "Unable to change your password" +msgstr "Tidak dapat merubah password anda" + #: templates/personal.php:15 msgid "Current password" msgstr "Password saat ini" @@ -94,36 +107,52 @@ msgid "Change password" msgstr "Rubah password" #: templates/personal.php:24 +msgid "Email" +msgstr "" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:32 templates/personal.php:33 msgid "Language" msgstr "Bahasa" -#: templates/personal.php:30 -msgid "Help translating" -msgstr "Bantu terjemahkan" +#: templates/personal.php:38 +msgid "Help translate" +msgstr "" -#: templates/personal.php:36 +#: templates/personal.php:45 msgid "use this address to connect to your ownCloud in your file manager" msgstr "" "gunakan alamat ini untuk terhubung dengan ownCloud anda dalam file manager " "anda" -#: templates/users.php:16 +#: templates/users.php:15 templates/users.php:30 msgid "Name" msgstr "Nama" -#: templates/users.php:17 +#: templates/users.php:16 templates/users.php:31 msgid "Password" msgstr "Password" -#: templates/users.php:18 templates/users.php:36 +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 msgid "Groups" msgstr "Group" -#: templates/users.php:24 +#: templates/users.php:23 msgid "Create" msgstr "Buat" -#: templates/users.php:48 +#: templates/users.php:33 +msgid "Quota" +msgstr "" + +#: templates/users.php:58 msgid "Delete" msgstr "Hapus" diff --git a/l10n/it/calendar.po b/l10n/it/calendar.po index fab6060c487..8cd693ff57f 100644 --- a/l10n/it/calendar.po +++ b/l10n/it/calendar.po @@ -3,16 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Andrea Scarpino , 2011. # , 2011. +# , 2012. # Francesco Apruzzese , 2011. +# Lorenzo Beltrami , 2011. +# , 2011, 2012. # , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-15 15:26+0100\n" +"PO-Revision-Date: 2012-01-15 17:18+0000\n" +"Last-Translator: formalist \n" "Language-Team: Italian (http://www.transifex.net/projects/p/owncloud/team/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,321 +24,403 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/createcalendar.php:18 ajax/settimezone.php:19 -#: ajax/updatecalendar.php:18 -msgid "Authentication error" -msgstr "Errore di autenticazione" +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "Nuovo fuso orario:" -#: ajax/editeventform.php:25 -msgid "Wrong calendar" -msgstr "Calendario sbagliato" - -#: ajax/settimezone.php:27 +#: ajax/settimezone.php:22 msgid "Timezone changed" msgstr "Fuso orario cambiato" -#: ajax/settimezone.php:29 +#: ajax/settimezone.php:24 msgid "Invalid request" -msgstr "Richiesta non validia" +msgstr "Richiesta non valida" -#: appinfo/app.php:19 templates/part.eventform.php:27 -#: templates/part.eventinfo.php:18 +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 msgid "Calendar" msgstr "Calendario" -#: lib/object.php:292 +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Calendario sbagliato" + +#: lib/app.php:60 lib/object.php:332 msgid "Birthday" msgstr "Compleanno" -#: lib/object.php:293 +#: lib/app.php:61 lib/object.php:333 msgid "Business" msgstr "Azienda" -#: lib/object.php:294 +#: lib/app.php:62 lib/object.php:334 msgid "Call" msgstr "Chiama" -#: lib/object.php:295 +#: lib/app.php:63 lib/object.php:335 msgid "Clients" msgstr "Clienti" -#: lib/object.php:296 +#: lib/app.php:64 lib/object.php:336 msgid "Deliverer" msgstr "Consegna" -#: lib/object.php:297 +#: lib/app.php:65 lib/object.php:337 msgid "Holidays" msgstr "Vacanze" -#: lib/object.php:298 +#: lib/app.php:66 lib/object.php:338 msgid "Ideas" msgstr "Idee" -#: lib/object.php:299 +#: lib/app.php:67 lib/object.php:339 msgid "Journey" msgstr "Viaggio" -#: lib/object.php:300 +#: lib/app.php:68 lib/object.php:340 msgid "Jubilee" msgstr "Anniversario" -#: lib/object.php:301 +#: lib/app.php:69 lib/object.php:341 msgid "Meeting" msgstr "Riunione" -#: lib/object.php:302 +#: lib/app.php:70 lib/object.php:342 msgid "Other" msgstr "Altro" -#: lib/object.php:303 +#: lib/app.php:71 lib/object.php:343 msgid "Personal" msgstr "Personale" -#: lib/object.php:304 +#: lib/app.php:72 lib/object.php:344 msgid "Projects" msgstr "Progetti" -#: lib/object.php:305 +#: lib/app.php:73 lib/object.php:345 msgid "Questions" msgstr "Domande" -#: lib/object.php:306 +#: lib/app.php:74 lib/object.php:346 msgid "Work" msgstr "Lavoro" -#: lib/object.php:313 +#: lib/object.php:353 msgid "Does not repeat" msgstr "Non ripetere" -#: lib/object.php:314 +#: lib/object.php:354 msgid "Daily" msgstr "Giornaliero" -#: lib/object.php:315 +#: lib/object.php:355 msgid "Weekly" msgstr "Settimanale" -#: lib/object.php:316 +#: lib/object.php:356 msgid "Every Weekday" msgstr "Ogni settimana" -#: lib/object.php:317 +#: lib/object.php:357 msgid "Bi-Weekly" msgstr "Ogni due settimane" -#: lib/object.php:318 +#: lib/object.php:358 msgid "Monthly" msgstr "Mensile" -#: lib/object.php:319 +#: lib/object.php:359 msgid "Yearly" msgstr "Annuale" -#: lib/object.php:337 -msgid "Not an array" -msgstr "Non è un array" +#: lib/object.php:366 +msgid "never" +msgstr "mai" -#: templates/calendar.php:3 -msgid "All day" -msgstr "Tutti i giorni" +#: lib/object.php:367 +msgid "by occurrences" +msgstr "per occorrenze" -#: templates/calendar.php:32 -msgid "Sunday" -msgstr "Domenica" +#: lib/object.php:368 +msgid "by date" +msgstr "per data" -#: templates/calendar.php:32 +#: lib/object.php:375 +msgid "by monthday" +msgstr "per giorno del mese" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "per giorno della settimana" + +#: lib/object.php:383 templates/lAfix.php:3 msgid "Monday" msgstr "Lunedì" -#: templates/calendar.php:32 +#: lib/object.php:384 templates/lAfix.php:4 msgid "Tuesday" msgstr "Martedì" -#: templates/calendar.php:32 +#: lib/object.php:385 templates/lAfix.php:5 msgid "Wednesday" msgstr "Mercoledì" -#: templates/calendar.php:32 +#: lib/object.php:386 templates/lAfix.php:6 msgid "Thursday" msgstr "Giovedì" -#: templates/calendar.php:32 +#: lib/object.php:387 templates/lAfix.php:7 msgid "Friday" msgstr "Venerdì" -#: templates/calendar.php:32 +#: lib/object.php:388 templates/lAfix.php:8 msgid "Saturday" msgstr "Sabato" -#: templates/calendar.php:33 -msgid "Sun." -msgstr "Dom." +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "Domenica" -#: templates/calendar.php:33 -msgid "Mon." -msgstr "Lun." +#: lib/object.php:396 +msgid "events week of month" +msgstr "settimana del mese degli eventi" -#: templates/calendar.php:33 -msgid "Tue." -msgstr "Mar." +#: lib/object.php:397 +msgid "first" +msgstr "primo" -#: templates/calendar.php:33 -msgid "Wed." -msgstr "Mer." +#: lib/object.php:398 +msgid "second" +msgstr "secondo" -#: templates/calendar.php:33 -msgid "Thu." -msgstr "Gio." +#: lib/object.php:399 +msgid "third" +msgstr "terzo" -#: templates/calendar.php:33 -msgid "Fri." -msgstr "Ven." +#: lib/object.php:400 +msgid "fourth" +msgstr "quarto" -#: templates/calendar.php:33 -msgid "Sat." -msgstr "Sab." +#: lib/object.php:401 +msgid "fifth" +msgstr "quinto" -#: templates/calendar.php:34 +#: lib/object.php:402 +msgid "last" +msgstr "ultimo" + +#: lib/object.php:424 templates/lAfix.php:16 msgid "January" msgstr "Gennaio" -#: templates/calendar.php:34 +#: lib/object.php:425 templates/lAfix.php:17 msgid "February" msgstr "Febbraio" -#: templates/calendar.php:34 +#: lib/object.php:426 templates/lAfix.php:18 msgid "March" msgstr "Marzo" -#: templates/calendar.php:34 +#: lib/object.php:427 templates/lAfix.php:19 msgid "April" msgstr "Aprile" -#: templates/calendar.php:34 +#: lib/object.php:428 templates/lAfix.php:20 msgid "May" msgstr "Maggio" -#: templates/calendar.php:34 +#: lib/object.php:429 templates/lAfix.php:21 msgid "June" msgstr "Giugno" -#: templates/calendar.php:34 +#: lib/object.php:430 templates/lAfix.php:22 msgid "July" msgstr "Luglio" -#: templates/calendar.php:34 +#: lib/object.php:431 templates/lAfix.php:23 msgid "August" msgstr "Agosto" -#: templates/calendar.php:34 +#: lib/object.php:432 templates/lAfix.php:24 msgid "September" msgstr "Settembre" -#: templates/calendar.php:34 +#: lib/object.php:433 templates/lAfix.php:25 msgid "October" msgstr "Ottobre" -#: templates/calendar.php:34 +#: lib/object.php:434 templates/lAfix.php:26 msgid "November" msgstr "Novembre" -#: templates/calendar.php:34 +#: lib/object.php:435 templates/lAfix.php:27 msgid "December" msgstr "Dicembre" -#: templates/calendar.php:35 -msgid "Jan." -msgstr "Gen." +#: lib/object.php:441 +msgid "by events date" +msgstr "per data evento" -#: templates/calendar.php:35 -msgid "Feb." -msgstr "Feb." +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "per giorno/i dell'anno" -#: templates/calendar.php:35 -msgid "Mar." -msgstr "Mar." +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "per numero/i settimana" -#: templates/calendar.php:35 -msgid "Apr." -msgstr "Apr." +#: lib/object.php:444 +msgid "by day and month" +msgstr "per giorno e mese" -#: templates/calendar.php:35 -msgid "May." -msgstr "Maggio." +#: lib/object.php:467 +msgid "Not an array" +msgstr "Non è un array" -#: templates/calendar.php:35 -msgid "Jun." -msgstr "Giu." +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "Data" -#: templates/calendar.php:35 -msgid "Jul." -msgstr "Lug." +#: lib/search.php:40 +msgid "Cal." +msgstr "Cal." -#: templates/calendar.php:35 -msgid "Aug." -msgstr "Ago." +#: templates/calendar.php:10 +msgid "All day" +msgstr "Tutti i giorni" -#: templates/calendar.php:35 -msgid "Sep." -msgstr "Set." +#: templates/calendar.php:11 +msgid "Missing fields" +msgstr "Campi mancanti" -#: templates/calendar.php:35 -msgid "Oct." -msgstr "Ott." +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" +msgstr "Titolo" -#: templates/calendar.php:35 -msgid "Nov." -msgstr "Nov." +#: templates/calendar.php:14 +msgid "From Date" +msgstr "Dal giorno" -#: templates/calendar.php:35 -msgid "Dec." -msgstr "Dic." +#: templates/calendar.php:15 +msgid "From Time" +msgstr "Ora inizio" -#: templates/calendar.php:36 templates/calendar.php:50 -#: templates/calendar.php:116 +#: templates/calendar.php:16 +msgid "To Date" +msgstr "al giorno" + +#: templates/calendar.php:17 +msgid "To Time" +msgstr "Ora fine" + +#: templates/calendar.php:18 +msgid "The event ends before it starts" +msgstr "L'evento finisce prima d'iniziare" + +#: templates/calendar.php:19 +msgid "There was a database fail" +msgstr "C'è stato un errore col database" + +#: templates/calendar.php:52 msgid "Week" msgstr "Settimana" -#: templates/calendar.php:37 templates/calendar.php:51 -msgid "Weeks" -msgstr "Settimane" - -#: templates/calendar.php:38 -msgid "More before {startdate}" -msgstr "Prima di {startdate}" - -#: templates/calendar.php:39 -msgid "More after {enddate}" -msgstr "Dopo {enddate}" - -#: templates/calendar.php:49 -msgid "Day" -msgstr "Giorno" - -#: templates/calendar.php:52 +#: templates/calendar.php:53 msgid "Month" msgstr "Mese" -#: templates/calendar.php:53 +#: templates/calendar.php:54 msgid "List" msgstr "Lista" -#: templates/calendar.php:58 +#: templates/calendar.php:59 msgid "Today" msgstr "Oggi" -#: templates/calendar.php:59 +#: templates/calendar.php:60 msgid "Calendars" msgstr "Calendari" -#: templates/calendar.php:76 templates/calendar.php:94 -msgid "Time" -msgstr "Ora" - -#: templates/calendar.php:169 +#: templates/calendar.php:78 msgid "There was a fail, while parsing the file." msgstr "C'è stato un errore nel parsing del file." +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "Dom." + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "Lun." + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "Mar." + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "Mer." + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "Gio." + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "Ven." + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "Sab." + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "Gen." + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "Feb." + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "Mar." + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "Apr." + +#: templates/lAfix.php:32 +msgid "May." +msgstr "Mag." + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "Giu." + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "Lug." + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "Ago." + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "Set." + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "Ott." + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "Nov." + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "Dic." + #: templates/part.choosecalendar.php:1 msgid "Choose active calendars" msgstr "Selezionare calendari attivi" @@ -353,14 +439,13 @@ msgid "Download" msgstr "Download" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.eventinfo.php:64 msgid "Edit" msgstr "Modifica" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.editevent.php:8 +#: templates/part.editevent.php:9 msgid "Delete" -msgstr "" +msgstr "Elimina" #: templates/part.editcalendar.php:9 msgid "New calendar" @@ -378,90 +463,181 @@ msgstr "Mostra nome" msgid "Active" msgstr "Attivo" -#: templates/part.editcalendar.php:29 templates/part.eventform.php:88 -#: templates/part.eventinfo.php:58 -msgid "Description" -msgstr "Descrizione" - -#: templates/part.editcalendar.php:35 +#: templates/part.editcalendar.php:29 msgid "Calendar color" msgstr "Colore calendario" -#: templates/part.editcalendar.php:41 +#: templates/part.editcalendar.php:42 msgid "Save" msgstr "Salva" -#: templates/part.editcalendar.php:41 templates/part.editevent.php:7 +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 #: templates/part.newevent.php:6 msgid "Submit" msgstr "Invia" -#: templates/part.editcalendar.php:42 +#: templates/part.editcalendar.php:43 msgid "Cancel" msgstr "Annulla" -#: templates/part.editevent.php:1 templates/part.eventinfo.php:1 +#: templates/part.editevent.php:1 msgid "Edit an event" msgstr "Modifica evento" -#: templates/part.eventform.php:3 templates/part.eventinfo.php:4 -msgid "Title" -msgstr "Titolo" +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "Esporta" #: templates/part.eventform.php:5 msgid "Title of the Event" msgstr "Titolo evento" -#: templates/part.eventform.php:9 templates/part.eventinfo.php:9 -msgid "Location" -msgstr "Luogo" - #: templates/part.eventform.php:11 -msgid "Location of the Event" -msgstr "Luogo evento" - -#: templates/part.eventform.php:17 templates/part.eventinfo.php:16 msgid "Category" msgstr "Categoria" -#: templates/part.eventform.php:19 +#: templates/part.eventform.php:13 msgid "Select category" msgstr "Seleziona categoria" -#: templates/part.eventform.php:45 templates/part.eventinfo.php:28 +#: templates/part.eventform.php:37 msgid "All Day Event" msgstr "Tutti gli eventi del giorno" -#: templates/part.eventform.php:49 templates/part.eventinfo.php:31 +#: templates/part.eventform.php:41 msgid "From" msgstr "Da" -#: templates/part.eventform.php:57 templates/part.eventinfo.php:38 +#: templates/part.eventform.php:49 msgid "To" msgstr "A" -#: templates/part.eventform.php:65 templates/part.eventinfo.php:44 +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "Opzioni avanzate" + +#: templates/part.eventform.php:61 msgid "Repeat" msgstr "Ripeti" -#: templates/part.eventform.php:81 templates/part.eventinfo.php:51 -msgid "Attendees" -msgstr "Partecipanti" +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "Avanzato" -#: templates/part.eventform.php:89 +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "Seleziona i giorni della settimana" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "Seleziona i giorni" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "e il giorno dell'anno degli eventi" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "e il giorno del mese degli eventi" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "Seleziona i mesi" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "Seleziona le settimane" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "e la settimana dell'anno degli eventi" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "Intervallo" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "Fine" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "occorrenze" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Luogo" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Luogo evento" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Descrizione" + +#: templates/part.eventform.php:218 msgid "Description of the Event" msgstr "Descrizione evento" -#: templates/part.eventinfo.php:63 -msgid "Close" -msgstr "Chiuso" +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "Importa un file calendario" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "Per favore scegli il calendario" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "Crea un nuovo calendario" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "Nome del nuovo calendario" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "Importa" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "Sto importando il calendario" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "Calendario importato con successo" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "Chiudi la finestra di dialogo" #: templates/part.newevent.php:1 msgid "Create a new event" msgstr "Crea evento" -#: templates/settings.php:11 +#: templates/settings.php:13 msgid "Timezone" -msgstr "Timezone" +msgstr "Fuso orario" + +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "Controlla sempre i cambiamenti di fuso orario" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "Formato ora" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24h" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12h" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "Indirizzo sincronizzazione calendario CalDAV:" diff --git a/l10n/it/contacts.po b/l10n/it/contacts.po index 3f8e3bd1696..89d7850b449 100644 --- a/l10n/it/contacts.po +++ b/l10n/it/contacts.po @@ -3,14 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # Francesco Apruzzese , 2011. +# , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 20:10+0200\n" -"PO-Revision-Date: 2011-09-23 18:10+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" "Language-Team: Italian (http://www.transifex.net/projects/p/owncloud/team/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,164 +20,265 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 -#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 -#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 -#: ajax/showsetproperty.php:32 photo.php:32 -msgid "You need to log in." -msgstr "Bisogna effettuare il login." +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." +msgstr "Errore nel (dis)attivare la rubrica" -#: ajax/addcard.php:37 +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "Si è verificato un errore nell'aggiunta del contatto." + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "Impossibile aggiungere una proprietà vuota." + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "Deve essere riempito almeno un indirizzo ." + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "Errore durante l'aggiunta della proprietà del contatto." + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "Errore nell'aggiunta della rubrica." + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "Errore nell'attivazione della rubrica." + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "Errore nella cancellazione della proprietà del contatto." + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "Errore nell'aggiornamento della proprietà del contatto." + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "Errore nell'aggiornamento della rubrica." + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "Contatti" + +#: lib/app.php:52 msgid "This is not your addressbook." msgstr "Questa non è la tua rubrica." -#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 -#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 -#: ajax/showsetproperty.php:38 photo.php:39 +#: lib/app.php:61 photo.php:36 msgid "Contact could not be found." msgstr "Il contatto non può essere trovato" -#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 -#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 -#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 -msgid "This is not your contact." -msgstr "Questo non è un tuo contatto." - -#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 -#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 -msgid "vCard could not be read." -msgstr "La vCard non può essere letta" - -#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 -#: ajax/showsetproperty.php:62 +#: lib/app.php:89 msgid "Information about vCard is incorrect. Please reload the page." msgstr "Informazioni sulla vCard incorrette. Ricaricare la pagina." -#: photo.php:53 -msgid "This card is not RFC compatible." -msgstr "Questa card non è compatibile con il protocollo RFC." - -#: photo.php:90 -msgid "This card does not contain a photo." -msgstr "Questa card non contiene una foto." - -#: templates/index.php:8 -msgid "Add Contact" -msgstr "Aggiungi contatto" - -#: templates/part.addcardform.php:5 -msgid "Group" -msgstr "Gruppo" - -#: templates/part.addcardform.php:12 templates/part.property.php:3 -msgid "Name" -msgstr "Nome" - -#: templates/part.addcardform.php:14 -msgid "Create Contact" -msgstr "Crea contatto" - -#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 msgid "Address" msgstr "Indirizzo" -#: templates/part.addpropertyform.php:5 +#: lib/app.php:102 templates/part.addcardform.php:43 msgid "Telephone" msgstr "Telefono" -#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 msgid "Email" msgstr "Email" -#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 msgid "Organization" msgstr "Organizzazione" -#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +#: lib/app.php:116 lib/app.php:123 msgid "Work" msgstr "Lavoro" -#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +#: lib/app.php:117 lib/app.php:121 msgid "Home" msgstr "Casa" -#: templates/part.addpropertyform.php:20 templates/part.property.php:48 -#: templates/part.setpropertyform.php:5 -msgid "PO Box" -msgstr "PO Box" - -#: templates/part.addpropertyform.php:21 templates/part.property.php:51 -#: templates/part.setpropertyform.php:6 -msgid "Extended" -msgstr "Estendi" - -#: templates/part.addpropertyform.php:22 templates/part.property.php:54 -#: templates/part.setpropertyform.php:7 -msgid "Street" -msgstr "Via" - -#: templates/part.addpropertyform.php:23 templates/part.property.php:57 -#: templates/part.setpropertyform.php:8 -msgid "City" -msgstr "Città" - -#: templates/part.addpropertyform.php:24 templates/part.property.php:60 -#: templates/part.setpropertyform.php:9 -msgid "Region" -msgstr "Regione" - -#: templates/part.addpropertyform.php:25 templates/part.property.php:63 -#: templates/part.setpropertyform.php:10 -msgid "Zipcode" -msgstr "CAP" - -#: templates/part.addpropertyform.php:26 templates/part.property.php:66 -#: templates/part.setpropertyform.php:11 -msgid "Country" -msgstr "Stato" - -#: templates/part.addpropertyform.php:31 +#: lib/app.php:122 msgid "Mobile" msgstr "Cellulare" -#: templates/part.addpropertyform.php:33 +#: lib/app.php:124 msgid "Text" msgstr "Testo" -#: templates/part.addpropertyform.php:34 +#: lib/app.php:125 msgid "Voice" msgstr "Voce" -#: templates/part.addpropertyform.php:35 +#: lib/app.php:126 msgid "Fax" msgstr "Fax" -#: templates/part.addpropertyform.php:36 +#: lib/app.php:127 msgid "Video" msgstr "Video" -#: templates/part.addpropertyform.php:37 +#: lib/app.php:128 msgid "Pager" -msgstr "Pager" +msgstr "Cercapersone" -#: templates/part.details.php:33 -msgid "Delete" -msgstr "Cancella" +#: lib/search.php:22 +msgid "Contact" +msgstr "Contatto" -#: templates/part.details.php:34 -msgid "Add Property" -msgstr "Aggiungi proprietà" +#: photo.php:42 +msgid "This is not your contact." +msgstr "Questo non è un tuo contatto." -#: templates/part.property.php:9 -msgid "Birthday" -msgstr "Compleanno" +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Aggiungi contatto" -#: templates/part.property.php:29 -msgid "Phone" -msgstr "Telefono" +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "Rubriche" -#: templates/part.setpropertyform.php:17 +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "Rubrica" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Nome" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "Tipo" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "Casella postale" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Estendi" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Via" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Città" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Regione" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "CAP" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "Stato" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Crea contatto" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "Seleziona le rubriche attive" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "Nuova rubrica" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "Link CardDav" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "Scarica" + +#: templates/part.chooseaddressbook.rowfields.php:5 msgid "Edit" msgstr "Modifica" +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Delete" +msgstr "Cancella" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "Scarica contatto" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "Cancella contatto" + +#: templates/part.details.php:34 +msgid "Add" +msgstr "Aggiungi" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "Nuova Rubrica" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "Modifica Rubrica" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "Nome da mostrare" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "Attiva" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "Salva" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "Conferma" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "Annulla" + +#: templates/part.property.php:3 +msgid "Birthday" +msgstr "Compleanno" + +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "Preferito" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 +msgid "Phone" +msgstr "Telefono" + +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "Aggiorna" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "Indirizzo di sincronizzazione CarDAV:" + diff --git a/l10n/it/core.po b/l10n/it/core.po index cd840405802..1546b2da31c 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -4,15 +4,16 @@ # # Translators: # , 2011. -# Francesco Apruzzese , 2011. +# Francesco Apruzzese , 2011, 2012. +# , 2011, 2012. # , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-23 08:17+0000\n" -"Last-Translator: OpenCode \n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 08:55+0000\n" +"Last-Translator: Francesco Apruzzese \n" "Language-Team: Italian (http://www.transifex.net/projects/p/owncloud/team/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,6 +21,51 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "Azzera la password di Owncloud" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "Usa il link seguente per azzerare la password: {link}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "Riceverai un link per resettare la tua password via Email" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Richiesto" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Login fallito!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Nome utente" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Richiesta di ripristino" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "La password è stata reimpostata" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "Alla pagina di login" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Nuova password" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Reimposta password" + #: strings.php:5 msgid "Personal" msgstr "Personale" @@ -46,97 +92,77 @@ msgstr "Cloud non trovata" #: templates/installation.php:20 msgid "Create an admin account" -msgstr "Crea un <strong>account amministratore</strong>" +msgstr "Crea un account amministratore" -#: templates/installation.php:21 -msgid "Username" -msgstr "Nome utente" - -#: templates/installation.php:22 +#: templates/installation.php:26 templates/login.php:12 msgid "Password" msgstr "Password" -#: templates/installation.php:27 -msgid "Configure the database" -msgstr "Configura il database" - -#: templates/installation.php:32 templates/installation.php:43 -#: templates/installation.php:53 -msgid "will be used" -msgstr "sarà usato" - -#: templates/installation.php:64 -msgid "Database user" -msgstr "Utente database" - -#: templates/installation.php:65 -msgid "Database password" -msgstr "Password database" - -#: templates/installation.php:66 -msgid "Database name" -msgstr "Nome database" - -#: templates/installation.php:72 +#: templates/installation.php:32 msgid "Advanced" msgstr "Opzioni avanzate" -#: templates/installation.php:75 -msgid "Database host" -msgstr "Host del database" - -#: templates/installation.php:76 +#: templates/installation.php:34 msgid "Data folder" msgstr "Cartella dati" +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Configura il database" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "sarà usato" + #: templates/installation.php:79 +msgid "Database user" +msgstr "Utente database" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Password database" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Nome database" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Host del database" + +#: templates/installation.php:98 msgid "Finish setup" -msgstr "Termina" +msgstr "Termina Configurazione" #: templates/layout.guest.php:35 -msgid "gives you freedom and control over your own data" -msgstr "Libertà e controllo dei propri dati" +msgid "web services under your control" +msgstr "servizi web nelle tue mani" #: templates/layout.user.php:34 msgid "Log out" -msgstr "Log out" +msgstr "Esci" #: templates/layout.user.php:46 templates/layout.user.php:47 msgid "Settings" msgstr "Impostazioni" -#: templates/login.php:4 +#: templates/login.php:5 msgid "Lost your password?" -msgstr "Password persa?" +msgstr "Hai perso la password?" -#: templates/login.php:9 templates/login.php:13 +#: templates/login.php:15 msgid "remember" msgstr "ricorda" +#: templates/login.php:16 +msgid "Log in" +msgstr "Entra" + #: templates/logout.php:1 msgid "You are logged out." msgstr "Sei uscito." -#: templates/lostpassword.php:3 -msgid "You will receive a link to reset your password via Email." -msgstr "Riceverai via email un link per il reset della tua password" - -#: templates/lostpassword.php:5 -msgid "Requested" -msgstr "Richiesto" - -#: templates/lostpassword.php:8 -msgid "Login failed!" -msgstr "Login fallito!" - -#: templates/lostpassword.php:10 -msgid "Username or Email" -msgstr "Username o email" - -#: templates/lostpassword.php:11 -msgid "Request reset" -msgstr "Reset richiesta" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "precedente" @@ -145,16 +171,4 @@ msgstr "precedente" msgid "next" msgstr "successivo" -#: templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "tua password è stata resettata" - -#: templates/resetpassword.php:6 -msgid "New password" -msgstr "Nuova password" - -#: templates/resetpassword.php:7 -msgid "Reset password" -msgstr "Reset password" - diff --git a/l10n/it/files.po b/l10n/it/files.po index ee66302f62f..55c4e07c0ec 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -4,13 +4,15 @@ # # Translators: # , 2011. +# Francesco Apruzzese , 2011. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-12 20:53+0000\n" +"Last-Translator: ufic \n" "Language-Team: Italian (http://www.transifex.net/projects/p/owncloud/team/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,33 +20,34 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:24 +#: ajax/upload.php:19 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "Non ci sono errori, file caricato con successo" -#: ajax/upload.php:25 +#: ajax/upload.php:20 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" +msgstr "Il file caricato supera il valore upload_max_filesize in php.ini" -#: ajax/upload.php:26 +#: ajax/upload.php:21 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" +"Il file caricato supera il valore MAX_FILE_SIZE definito nel form HTML" -#: ajax/upload.php:27 +#: ajax/upload.php:22 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "Il file è stato parzialmente caricato" -#: ajax/upload.php:28 +#: ajax/upload.php:23 msgid "No file was uploaded" -msgstr "" +msgstr "Nessun file è stato caricato" -#: ajax/upload.php:29 +#: ajax/upload.php:24 msgid "Missing a temporary folder" -msgstr "" +msgstr "Cartella temporanea mancante" -#: appinfo/app.php:7 +#: appinfo/app.php:8 msgid "Files" msgstr "File" @@ -52,43 +55,55 @@ msgstr "File" msgid "Maximum upload size" msgstr "Dimensione massima upload" +#: templates/index.php:7 +msgid "New" +msgstr "Nuovo" + #: templates/index.php:10 +msgid "Text file" +msgstr "File di testo" + +#: templates/index.php:11 +msgid "Folder" +msgstr "Cartella" + +#: templates/index.php:12 +msgid "From the web" +msgstr "Dal web" + +#: templates/index.php:22 msgid "Upload" msgstr "Carica" -#: templates/index.php:17 -msgid "New Folder" -msgstr "Nuova Cartella" - -#: templates/index.php:31 +#: templates/index.php:35 msgid "Nothing in here. Upload something!" msgstr "Non c'è niente qui. Carica qualcosa!" -#: templates/index.php:39 +#: templates/index.php:43 msgid "Name" msgstr "Nome" -#: templates/index.php:41 +#: templates/index.php:45 msgid "Download" msgstr "Scarica" -#: templates/index.php:45 +#: templates/index.php:49 msgid "Size" msgstr "Dimensione" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Modified" msgstr "Modificato" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Delete" msgstr "Cancella" -#: templates/index.php:54 +#: templates/index.php:58 msgid "Upload too large" msgstr "Il file caricato è troppo grande" -#: templates/index.php:56 +#: templates/index.php:60 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." diff --git a/l10n/it/gallery.po b/l10n/it/gallery.po new file mode 100644 index 00000000000..c719316b9c5 --- /dev/null +++ b/l10n/it/gallery.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2012. +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-26 21:13+0000\n" +"Last-Translator: ufic \n" +"Language-Team: Italian (http://www.transifex.net/projects/p/owncloud/team/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "Galleria" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "Analisi cartelle in corso" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "Nessuna foto trovata" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "Creazione anteprime in corso" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "Vuoi rimuovere l'album" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "Inserisci il nome della nuova galleria" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "Rileggi" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "Indietro" + + diff --git a/l10n/it/media.po b/l10n/it/media.po index 7f27ceaf216..573b9775417 100644 --- a/l10n/it/media.po +++ b/l10n/it/media.po @@ -2,14 +2,16 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# Translators: # Francesco Apruzzese , 2011. +# , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-08-23 11:09+0200\n" -"PO-Revision-Date: 2011-08-21 23:18+0000\n" -"Last-Translator: OpenCode \n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Italian (http://www.transifex.net/projects/p/owncloud/team/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,15 +19,15 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: appinfo/app.php:31 +#: appinfo/app.php:32 msgid "Music" msgstr "Musica" -#: templates/music.php:3 +#: templates/music.php:3 templates/player.php:13 msgid "Play" msgstr "Play" -#: templates/music.php:4 templates/music.php:30 +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 msgid "Pause" msgstr "Pausa" @@ -33,7 +35,7 @@ msgstr "Pausa" msgid "Previous" msgstr "Precedente" -#: templates/music.php:6 +#: templates/music.php:6 templates/player.php:15 msgid "Next" msgstr "Successiva" @@ -45,13 +47,9 @@ msgstr "Disattiva audio" msgid "Unmute" msgstr "Riattiva audio" -#: templates/music.php:28 -msgid "Songs scanned" -msgstr "Canzoni analizzate" - -#: templates/music.php:29 +#: templates/music.php:25 msgid "Rescan Collection" -msgstr "Rianalizza colezione" +msgstr "Rianalizza collezione" #: templates/music.php:37 msgid "Artist" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 8e0042ea43d..c1c04905081 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -2,16 +2,20 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # -# , 2011. +# Translators: +# , 2012. # Francesco Apruzzese , 2011. +# , 2012. # Jan-Christoph Borchardt , 2011. +# , 2011, 2012. +# , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-04 16:48+0200\n" -"PO-Revision-Date: 2011-09-04 12:49+0000\n" -"Last-Translator: RColombo \n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-16 16:38+0000\n" +"Last-Translator: icewind \n" "Language-Team: Italian (http://www.transifex.net/projects/p/owncloud/team/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,22 +23,30 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/openid.php:13 ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Errore nell'autenticazione" +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "email modificata" -#: ajax/openid.php:21 -msgid "OpenID Changed" -msgstr "OpenID Modificato" - -#: ajax/openid.php:23 ajax/setlanguage.php:23 +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 msgid "Invalid request" msgstr "Richiesta non valida" -#: ajax/setlanguage.php:21 +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID Modificato" + +#: ajax/setlanguage.php:14 msgid "Language changed" msgstr "Lingua modificata" +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "Italiano" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "Livello di log" + #: templates/apps.php:8 msgid "Add your application" msgstr "Aggiungi un applicazione" @@ -45,7 +57,7 @@ msgstr "Seleziona un applicazione" #: templates/apps.php:23 msgid "-licensed" -msgstr "-licensed" +msgstr "-rilasciato" #: templates/apps.php:23 msgid "by" @@ -55,15 +67,15 @@ msgstr "da" msgid "Ask a question" msgstr "Fai una domanda" -#: templates/help.php:17 +#: templates/help.php:20 msgid "Problems connecting to help database." msgstr "Problemi di connessione al database di aiuto" -#: templates/help.php:18 +#: templates/help.php:21 msgid "Go there manually." msgstr "Vai lì manualmente." -#: templates/help.php:26 +#: templates/help.php:29 msgid "Answer" msgstr "Risposta" @@ -99,37 +111,53 @@ msgstr "mostra" msgid "Change password" msgstr "Modifica password" -#: templates/personal.php:24 templates/personal.php:25 +#: templates/personal.php:24 +msgid "Email" +msgstr "Email" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "Il tuo indirizzo email" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "Inserici il tuo indirizzo email per abilitare il recupero password" + +#: templates/personal.php:32 templates/personal.php:33 msgid "Language" msgstr "Lingua" -#: templates/personal.php:30 -msgid "Help translating" -msgstr "Aiuta nella traduzione" +#: templates/personal.php:38 +msgid "Help translate" +msgstr "Migliora la traduzione" -#: templates/personal.php:37 +#: templates/personal.php:45 msgid "use this address to connect to your ownCloud in your file manager" msgstr "" "usa questo indirizzo per connettersi al proprio ownCloud nel tuo file " "manager" -#: templates/users.php:16 +#: templates/users.php:15 templates/users.php:30 msgid "Name" msgstr "Nome" -#: templates/users.php:17 +#: templates/users.php:16 templates/users.php:31 msgid "Password" msgstr "Password" -#: templates/users.php:18 templates/users.php:36 +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 msgid "Groups" msgstr "Gruppi" -#: templates/users.php:24 +#: templates/users.php:23 msgid "Create" msgstr "Crea" -#: templates/users.php:48 +#: templates/users.php:33 +msgid "Quota" +msgstr "Quota" + +#: templates/users.php:58 msgid "Delete" msgstr "Cancella" diff --git a/l10n/ja_JP/calendar.po b/l10n/ja_JP/calendar.po new file mode 100644 index 00000000000..76d8d431e9e --- /dev/null +++ b/l10n/ja_JP/calendar.po @@ -0,0 +1,636 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-25 13:53+0000\n" +"Last-Translator: nn nn \n" +"Language-Team: Japanese (Japan) (http://www.transifex.net/projects/p/owncloud/team/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "新しいタイムゾーン:" + +#: ajax/settimezone.php:22 +msgid "Timezone changed" +msgstr "タイムゾーンが変更されました" + +#: ajax/settimezone.php:24 +msgid "Invalid request" +msgstr "無効なリクエストです" + +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 +msgid "Calendar" +msgstr "カレンダー" + +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "誤ったカレンダーです" + +#: lib/app.php:60 lib/object.php:332 +msgid "Birthday" +msgstr "誕生日" + +#: lib/app.php:61 lib/object.php:333 +msgid "Business" +msgstr "ビジネス" + +#: lib/app.php:62 lib/object.php:334 +msgid "Call" +msgstr "電話をかける" + +#: lib/app.php:63 lib/object.php:335 +msgid "Clients" +msgstr "顧客" + +#: lib/app.php:64 lib/object.php:336 +msgid "Deliverer" +msgstr "運送会社" + +#: lib/app.php:65 lib/object.php:337 +msgid "Holidays" +msgstr "休日" + +#: lib/app.php:66 lib/object.php:338 +msgid "Ideas" +msgstr "アイデア" + +#: lib/app.php:67 lib/object.php:339 +msgid "Journey" +msgstr "旅行" + +#: lib/app.php:68 lib/object.php:340 +msgid "Jubilee" +msgstr "記念祭" + +#: lib/app.php:69 lib/object.php:341 +msgid "Meeting" +msgstr "ミーティング" + +#: lib/app.php:70 lib/object.php:342 +msgid "Other" +msgstr "その他" + +#: lib/app.php:71 lib/object.php:343 +msgid "Personal" +msgstr "個人" + +#: lib/app.php:72 lib/object.php:344 +msgid "Projects" +msgstr "プロジェクト" + +#: lib/app.php:73 lib/object.php:345 +msgid "Questions" +msgstr "質問事項" + +#: lib/app.php:74 lib/object.php:346 +msgid "Work" +msgstr "仕事" + +#: lib/object.php:353 +msgid "Does not repeat" +msgstr "繰り返さない" + +#: lib/object.php:354 +msgid "Daily" +msgstr "毎日" + +#: lib/object.php:355 +msgid "Weekly" +msgstr "毎週" + +#: lib/object.php:356 +msgid "Every Weekday" +msgstr "毎平日" + +#: lib/object.php:357 +msgid "Bi-Weekly" +msgstr "2週間ごと" + +#: lib/object.php:358 +msgid "Monthly" +msgstr "毎月" + +#: lib/object.php:359 +msgid "Yearly" +msgstr "毎年" + +#: lib/object.php:366 +msgid "never" +msgstr "無し" + +#: lib/object.php:367 +msgid "by occurrences" +msgstr "回数で指定" + +#: lib/object.php:368 +msgid "by date" +msgstr "日付で指定" + +#: lib/object.php:375 +msgid "by monthday" +msgstr "日にちで指定" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "曜日で指定" + +#: lib/object.php:383 templates/lAfix.php:3 +msgid "Monday" +msgstr "月曜日" + +#: lib/object.php:384 templates/lAfix.php:4 +msgid "Tuesday" +msgstr "火曜日" + +#: lib/object.php:385 templates/lAfix.php:5 +msgid "Wednesday" +msgstr "水曜日" + +#: lib/object.php:386 templates/lAfix.php:6 +msgid "Thursday" +msgstr "木曜日" + +#: lib/object.php:387 templates/lAfix.php:7 +msgid "Friday" +msgstr "金曜日" + +#: lib/object.php:388 templates/lAfix.php:8 +msgid "Saturday" +msgstr "土曜日" + +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "日曜日" + +#: lib/object.php:396 +msgid "events week of month" +msgstr "予定のある週を指定" + +#: lib/object.php:397 +msgid "first" +msgstr "1週目" + +#: lib/object.php:398 +msgid "second" +msgstr "2週目" + +#: lib/object.php:399 +msgid "third" +msgstr "3週目" + +#: lib/object.php:400 +msgid "fourth" +msgstr "4週目" + +#: lib/object.php:401 +msgid "fifth" +msgstr "5週目" + +#: lib/object.php:402 +msgid "last" +msgstr "最終週" + +#: lib/object.php:424 templates/lAfix.php:16 +msgid "January" +msgstr "1月" + +#: lib/object.php:425 templates/lAfix.php:17 +msgid "February" +msgstr "2月" + +#: lib/object.php:426 templates/lAfix.php:18 +msgid "March" +msgstr "3月" + +#: lib/object.php:427 templates/lAfix.php:19 +msgid "April" +msgstr "4月" + +#: lib/object.php:428 templates/lAfix.php:20 +msgid "May" +msgstr "5月" + +#: lib/object.php:429 templates/lAfix.php:21 +msgid "June" +msgstr "6月" + +#: lib/object.php:430 templates/lAfix.php:22 +msgid "July" +msgstr "7月" + +#: lib/object.php:431 templates/lAfix.php:23 +msgid "August" +msgstr "8月" + +#: lib/object.php:432 templates/lAfix.php:24 +msgid "September" +msgstr "9月" + +#: lib/object.php:433 templates/lAfix.php:25 +msgid "October" +msgstr "10月" + +#: lib/object.php:434 templates/lAfix.php:26 +msgid "November" +msgstr "11月" + +#: lib/object.php:435 templates/lAfix.php:27 +msgid "December" +msgstr "12月" + +#: lib/object.php:441 +msgid "by events date" +msgstr "日付で指定" + +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "日番号で指定" + +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "週番号で指定" + +#: lib/object.php:444 +msgid "by day and month" +msgstr "月と日で指定" + +#: lib/object.php:467 +msgid "Not an array" +msgstr "配列ではありません" + +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "日付" + +#: lib/search.php:40 +msgid "Cal." +msgstr "カレンダー" + +#: templates/calendar.php:10 +msgid "All day" +msgstr "終日" + +#: templates/calendar.php:11 +msgid "Missing fields" +msgstr "項目がありません" + +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" +msgstr "タイトル" + +#: templates/calendar.php:14 +msgid "From Date" +msgstr "開始日" + +#: templates/calendar.php:15 +msgid "From Time" +msgstr "開始時間" + +#: templates/calendar.php:16 +msgid "To Date" +msgstr "終了日" + +#: templates/calendar.php:17 +msgid "To Time" +msgstr "終了時間" + +#: templates/calendar.php:18 +msgid "The event ends before it starts" +msgstr "イベント終了時間が開始時間より先です" + +#: templates/calendar.php:19 +msgid "There was a database fail" +msgstr "データベースフェイルがありました" + +#: templates/calendar.php:52 +msgid "Week" +msgstr "週" + +#: templates/calendar.php:53 +msgid "Month" +msgstr "月" + +#: templates/calendar.php:54 +msgid "List" +msgstr "リスト" + +#: templates/calendar.php:59 +msgid "Today" +msgstr "今日" + +#: templates/calendar.php:60 +msgid "Calendars" +msgstr "カレンダー" + +#: templates/calendar.php:78 +msgid "There was a fail, while parsing the file." +msgstr "ファイルを構文解析する際に失敗しました" + +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "日" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "月" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "火" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "水" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "木" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "金" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "土" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "1月" + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "2月" + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "3月" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "4月" + +#: templates/lAfix.php:32 +msgid "May." +msgstr "5月" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "6月" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "7月" + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "8月" + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "9月" + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "10月" + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "11月" + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "12月" + +#: templates/part.choosecalendar.php:1 +msgid "Choose active calendars" +msgstr "アクティブなカレンダーを選択してください" + +#: templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "新しくカレンダーを作成する" + +#: templates/part.choosecalendar.php:20 +#: templates/part.choosecalendar.rowfields.php:4 +msgid "CalDav Link" +msgstr "CalDavへのリンク" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Download" +msgstr "ダウンロード" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Edit" +msgstr "編集" + +#: templates/part.choosecalendar.rowfields.php:4 +#: templates/part.editevent.php:9 +msgid "Delete" +msgstr "削除" + +#: templates/part.editcalendar.php:9 +msgid "New calendar" +msgstr "新しくカレンダーを作成する" + +#: templates/part.editcalendar.php:9 +msgid "Edit calendar" +msgstr "カレンダーを編集" + +#: templates/part.editcalendar.php:12 +msgid "Displayname" +msgstr "表示名" + +#: templates/part.editcalendar.php:23 +msgid "Active" +msgstr "アクティブ" + +#: templates/part.editcalendar.php:29 +msgid "Calendar color" +msgstr "カレンダーの色" + +#: templates/part.editcalendar.php:42 +msgid "Save" +msgstr "保存" + +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 +#: templates/part.newevent.php:6 +msgid "Submit" +msgstr "完了" + +#: templates/part.editcalendar.php:43 +msgid "Cancel" +msgstr "キャンセル" + +#: templates/part.editevent.php:1 +msgid "Edit an event" +msgstr "イベントを編集" + +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "エクスポート" + +#: templates/part.eventform.php:5 +msgid "Title of the Event" +msgstr "イベントのタイトル" + +#: templates/part.eventform.php:11 +msgid "Category" +msgstr "カテゴリー" + +#: templates/part.eventform.php:13 +msgid "Select category" +msgstr "カテゴリーを選択してください" + +#: templates/part.eventform.php:37 +msgid "All Day Event" +msgstr "終日イベント" + +#: templates/part.eventform.php:41 +msgid "From" +msgstr "開始" + +#: templates/part.eventform.php:49 +msgid "To" +msgstr "終了" + +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "詳細設定" + +#: templates/part.eventform.php:61 +msgid "Repeat" +msgstr "繰り返す" + +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "詳細設定" + +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "曜日を指定" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "日付を指定" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "対象の年を選択する。" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "対象の月を選択する。" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "月を指定する" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "週を指定する" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "対象の週を選択する。" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "周期" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "繰り返す期間" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "回繰り返す" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "場所" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "イベントの場所" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "メモ" + +#: templates/part.eventform.php:218 +msgid "Description of the Event" +msgstr "イベントのメモ" + +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "カレンダーファイルをインポート" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "カレンダーを選択してください" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "新規カレンダーの作成" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "新規カレンダーの名称" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "インポート" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "カレンダーを取り込み中" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "カレンダーの取り込みに成功しました" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "閉じる" + +#: templates/part.newevent.php:1 +msgid "Create a new event" +msgstr "新しいイベントを作成する" + +#: templates/settings.php:13 +msgid "Timezone" +msgstr "タイムゾーン" + +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "タイムゾーン変更を常に確認する" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "時刻のフォーマット" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24時間制" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12時間制" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "カレンダーのCalDAVシンクアドレス" + + diff --git a/l10n/ja_JP/contacts.po b/l10n/ja_JP/contacts.po new file mode 100644 index 00000000000..69f4226ff41 --- /dev/null +++ b/l10n/ja_JP/contacts.po @@ -0,0 +1,281 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-25 14:02+0000\n" +"Last-Translator: nn nn \n" +"Language-Team: Japanese (Japan) (http://www.transifex.net/projects/p/owncloud/team/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." +msgstr "電話帳の有効/無効化に失敗しました。" + +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "連絡先の追加でエラーが発生しました。" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "項目の新規追加に失敗しました。" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "アドレス項目の1つは記入して下さい。" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "連絡先の追加に失敗しました。" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "電話帳の追加に失敗しました。" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "電話帳の有効化に失敗しました。" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "連絡先の削除に失敗しました。" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "連絡先の更新に失敗しました。" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "電話帳の更新に失敗しました。" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "連絡先" + +#: lib/app.php:52 +msgid "This is not your addressbook." +msgstr "これはあなたの電話帳ではありません。" + +#: lib/app.php:61 photo.php:36 +msgid "Contact could not be found." +msgstr "連絡先を見つける事ができません。" + +#: lib/app.php:89 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "vCardの情報に誤りがあります。ページをリロードして下さい。" + +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 +msgid "Address" +msgstr "住所" + +#: lib/app.php:102 templates/part.addcardform.php:43 +msgid "Telephone" +msgstr "電話番号" + +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 +msgid "Email" +msgstr "メールアドレス" + +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 +msgid "Organization" +msgstr "所属" + +#: lib/app.php:116 lib/app.php:123 +msgid "Work" +msgstr "勤務先" + +#: lib/app.php:117 lib/app.php:121 +msgid "Home" +msgstr "住居" + +#: lib/app.php:122 +msgid "Mobile" +msgstr "携帯電話" + +#: lib/app.php:124 +msgid "Text" +msgstr "TTY TDD" + +#: lib/app.php:125 +msgid "Voice" +msgstr "音声番号" + +#: lib/app.php:126 +msgid "Fax" +msgstr "FAX" + +#: lib/app.php:127 +msgid "Video" +msgstr "テレビ電話" + +#: lib/app.php:128 +msgid "Pager" +msgstr "ポケベル" + +#: lib/search.php:22 +msgid "Contact" +msgstr "連絡先" + +#: photo.php:42 +msgid "This is not your contact." +msgstr "あなたの連絡先ではありません。" + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "連絡先の追加" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "電話帳" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "電話帳" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "氏名" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "種類" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "私書箱" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "拡張番地" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "街路番地" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "都市" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "地域" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "郵便番号" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "国名" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "追加" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "有効な電話帳の選択" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "新規電話帳" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "CardDAV リンク" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "ダウンロード" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "編集" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Delete" +msgstr "削除" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "連絡先のダウンロード" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "連絡先の削除" + +#: templates/part.details.php:34 +msgid "Add" +msgstr "追加" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "電話帳の新規作成" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "電話帳の編集" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "表示名" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "アクティブ" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "保存" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "送信" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "取り消し" + +#: templates/part.property.php:3 +msgid "Birthday" +msgstr "生年月日" + +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "推奨" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 +msgid "Phone" +msgstr "電話番号" + +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "更新" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "CardDAV 同期アドレス:" + + diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po new file mode 100644 index 00000000000..ee1a642fc61 --- /dev/null +++ b/l10n/ja_JP/core.po @@ -0,0 +1,170 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:25+0100\n" +"PO-Revision-Date: 2012-01-25 14:20+0000\n" +"Last-Translator: nn nn \n" +"Language-Team: Japanese (Japan) (http://www.transifex.net/projects/p/owncloud/team/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "Owncloud のパスワードをリセット" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "パスワードをリセットするには次のリンクをクリックして下さい: {link}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "パスワードをリセットするリンクがメールで届きます。" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "送信されました" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "ログインに失敗しました。" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "ユーザ名" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "リセットを要求する。" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "あなたのパスワードはリセットされました。" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "ログインページへ戻る" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "新しいパスワードを入力" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "パスワードをリセット" + +#: strings.php:5 +msgid "Personal" +msgstr "個人設定" + +#: strings.php:6 +msgid "Users" +msgstr "ユーザ" + +#: strings.php:7 +msgid "Apps" +msgstr "アプリ" + +#: strings.php:8 +msgid "Admin" +msgstr "管理者" + +#: strings.php:9 +msgid "Help" +msgstr "ヘルプ" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "見つけられません" + +#: templates/installation.php:20 +msgid "Create an admin account" +msgstr "管理者アカウントを作成してください" + +#: templates/installation.php:26 templates/login.php:12 +msgid "Password" +msgstr "パスワード" + +#: templates/installation.php:32 +msgid "Advanced" +msgstr "詳細設定" + +#: templates/installation.php:34 +msgid "Data folder" +msgstr "データフォルダ" + +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "データベースを設定してください" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "が使用されます" + +#: templates/installation.php:79 +msgid "Database user" +msgstr "データベースのユーザ名" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "データベースのパスワード" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "データベース名" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "データベースのホスト名" + +#: templates/installation.php:98 +msgid "Finish setup" +msgstr "セットアップを完了します" + +#: templates/layout.guest.php:35 +msgid "web services under your control" +msgstr "管理下にあるウェブサービス" + +#: templates/layout.user.php:34 +msgid "Log out" +msgstr "ログアウト" + +#: templates/layout.user.php:46 templates/layout.user.php:47 +msgid "Settings" +msgstr "設定" + +#: templates/login.php:5 +msgid "Lost your password?" +msgstr "パスワードがわからなくなりましたか?" + +#: templates/login.php:15 +msgid "remember" +msgstr "パスワードを記憶する" + +#: templates/login.php:16 +msgid "Log in" +msgstr "ログイン" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "ログアウトしました。" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "前" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "次" + + diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po new file mode 100644 index 00000000000..25e82ba37e0 --- /dev/null +++ b/l10n/ja_JP/files.po @@ -0,0 +1,108 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:25+0100\n" +"PO-Revision-Date: 2012-01-25 15:06+0000\n" +"Last-Translator: nn nn \n" +"Language-Team: Japanese (Japan) (http://www.transifex.net/projects/p/owncloud/team/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ajax/upload.php:19 +msgid "There is no error, the file uploaded with success" +msgstr "エラーはありません。ファイルのアップロードは成功しました。" + +#: ajax/upload.php:20 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "アップロードされたファイルはphp.iniのupload_max_filesizeに設定されたサイズを超えています" + +#: ajax/upload.php:21 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "アップロードされたファイルはHTMLのフォームに設定されたMAX_FILE_SIZEに設定されたサイズを超えています" + +#: ajax/upload.php:22 +msgid "The uploaded file was only partially uploaded" +msgstr "ファイルは一部分しかアップロードされませんでした" + +#: ajax/upload.php:23 +msgid "No file was uploaded" +msgstr "ファイルはアップロードされませんでした" + +#: ajax/upload.php:24 +msgid "Missing a temporary folder" +msgstr "テンポラリフォルダが見つかりません" + +#: appinfo/app.php:8 +msgid "Files" +msgstr "ファイル" + +#: templates/admin.php:5 +msgid "Maximum upload size" +msgstr "最大アップロードサイズ" + +#: templates/index.php:7 +msgid "New" +msgstr "新規作成" + +#: templates/index.php:10 +msgid "Text file" +msgstr "テキストファイル" + +#: templates/index.php:11 +msgid "Folder" +msgstr "フォルダ" + +#: templates/index.php:12 +msgid "From the web" +msgstr "ウェブ経由" + +#: templates/index.php:22 +msgid "Upload" +msgstr "アップロード" + +#: templates/index.php:35 +msgid "Nothing in here. Upload something!" +msgstr "ここには何もありません。何かアップロードしてください。" + +#: templates/index.php:43 +msgid "Name" +msgstr "名前" + +#: templates/index.php:45 +msgid "Download" +msgstr "ダウンロード" + +#: templates/index.php:49 +msgid "Size" +msgstr "サイズ" + +#: templates/index.php:50 +msgid "Modified" +msgstr "更新日時" + +#: templates/index.php:50 +msgid "Delete" +msgstr "削除" + +#: templates/index.php:58 +msgid "Upload too large" +msgstr "ファイルサイズが大きすぎます" + +#: templates/index.php:60 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "アップロードしようとしているファイルはサーバで規定された最大サイズを超えています" + + diff --git a/l10n/ja_JP/gallery.po b/l10n/ja_JP/gallery.po new file mode 100644 index 00000000000..2d2d0898dfc --- /dev/null +++ b/l10n/ja_JP/gallery.po @@ -0,0 +1,52 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-25 14:05+0000\n" +"Last-Translator: nn nn \n" +"Language-Team: Japanese (Japan) (http://www.transifex.net/projects/p/owncloud/team/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "ギャラリー" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "ディレクトリをスキャン中" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "写真が見つかりませんでした" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "サムネイルを作成中" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "アルバムを削除しますか" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "新しいギャラリー名を作る" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "再スキャン" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "戻る" + + diff --git a/l10n/ja_JP/media.po b/l10n/ja_JP/media.po new file mode 100644 index 00000000000..7288c83d3a2 --- /dev/null +++ b/l10n/ja_JP/media.po @@ -0,0 +1,64 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Japanese (Japan) (http://www.transifex.net/projects/p/owncloud/team/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: appinfo/app.php:32 +msgid "Music" +msgstr "ミュージック" + +#: templates/music.php:3 templates/player.php:13 +msgid "Play" +msgstr "再生" + +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 +msgid "Pause" +msgstr "一時停止" + +#: templates/music.php:5 +msgid "Previous" +msgstr "前" + +#: templates/music.php:6 templates/player.php:15 +msgid "Next" +msgstr "次" + +#: templates/music.php:7 +msgid "Mute" +msgstr "ミュート" + +#: templates/music.php:8 +msgid "Unmute" +msgstr "ミュート解除" + +#: templates/music.php:25 +msgid "Rescan Collection" +msgstr "コレクションを再読み込みする" + +#: templates/music.php:37 +msgid "Artist" +msgstr "アーティスト" + +#: templates/music.php:38 +msgid "Album" +msgstr "アルバム" + +#: templates/music.php:39 +msgid "Title" +msgstr "曲名" + + diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po new file mode 100644 index 00000000000..edc1d158660 --- /dev/null +++ b/l10n/ja_JP/settings.po @@ -0,0 +1,156 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:25+0100\n" +"PO-Revision-Date: 2012-01-25 14:15+0000\n" +"Last-Translator: nn nn \n" +"Language-Team: Japanese (Japan) (http://www.transifex.net/projects/p/owncloud/team/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "メールアドレスを変更しました" + +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 +msgid "Invalid request" +msgstr "無効なリクエストです" + +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenIDが変更されました" + +#: ajax/setlanguage.php:14 +msgid "Language changed" +msgstr "言語が変更されました" + +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "Japanese(日本語)" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "ログレベル" + +#: templates/apps.php:8 +msgid "Add your application" +msgstr "アプリを追加してください" + +#: templates/apps.php:21 +msgid "Select an App" +msgstr "アプリを選択してください" + +#: templates/apps.php:23 +msgid "-licensed" +msgstr "権利を保持されています" + +#: templates/apps.php:23 +msgid "by" +msgstr "によって" + +#: templates/help.php:8 +msgid "Ask a question" +msgstr "質問してください" + +#: templates/help.php:20 +msgid "Problems connecting to help database." +msgstr "ヘルプ用データベース接続に問題が生じました" + +#: templates/help.php:21 +msgid "Go there manually." +msgstr "手動で移動してください" + +#: templates/help.php:29 +msgid "Answer" +msgstr "解答" + +#: templates/personal.php:8 +msgid "You use" +msgstr "あなたが使っているのは" + +#: templates/personal.php:8 +msgid "of the available" +msgstr "です。利用可能容量は" + +#: templates/personal.php:13 +msgid "Your password got changed" +msgstr "パスワードは変更されました" + +#: templates/personal.php:14 +msgid "Unable to change your password" +msgstr "パスワードを変更することができません" + +#: templates/personal.php:15 +msgid "Current password" +msgstr "現在のパスワード" + +#: templates/personal.php:16 +msgid "New password" +msgstr "新しいパスワード" + +#: templates/personal.php:17 +msgid "show" +msgstr "表示" + +#: templates/personal.php:18 +msgid "Change password" +msgstr "パスワードを変更する" + +#: templates/personal.php:24 +msgid "Email" +msgstr "メールアドレス" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "あなたのメールアドレス" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "パスワードの回復を有効にするにはメールアドレスを入力してください" + +#: templates/personal.php:32 templates/personal.php:33 +msgid "Language" +msgstr "言語" + +#: templates/personal.php:38 +msgid "Help translate" +msgstr "翻訳を手伝う" + +#: templates/personal.php:45 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "ファイルマネージャーであなたのownCloudに接続するときはこのアドレスを使用してください" + +#: templates/users.php:15 templates/users.php:30 +msgid "Name" +msgstr "名前" + +#: templates/users.php:16 templates/users.php:31 +msgid "Password" +msgstr "パスワード" + +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 +msgid "Groups" +msgstr "グループ" + +#: templates/users.php:23 +msgid "Create" +msgstr "作成" + +#: templates/users.php:33 +msgid "Quota" +msgstr "クオータ" + +#: templates/users.php:58 +msgid "Delete" +msgstr "削除" + + diff --git a/l10n/lb/calendar.po b/l10n/lb/calendar.po index 9aea18b69ac..b65ae8ac132 100644 --- a/l10n/lb/calendar.po +++ b/l10n/lb/calendar.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-15 13:45+0000\n" +"Last-Translator: icewind \n" "Language-Team: Luxembourgish (http://www.transifex.net/projects/p/owncloud/team/lb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,351 +18,432 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/createcalendar.php:18 ajax/settimezone.php:19 -#: ajax/updatecalendar.php:18 -msgid "Authentication error" -msgstr "Authentifizéierung's Feeler" - -#: ajax/editeventform.php:25 -msgid "Wrong calendar" +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" msgstr "" -#: ajax/settimezone.php:27 +#: ajax/settimezone.php:22 msgid "Timezone changed" msgstr "Zäitzon geännert" -#: ajax/settimezone.php:29 +#: ajax/settimezone.php:24 msgid "Invalid request" msgstr "Ongülteg Requête" -#: appinfo/app.php:19 templates/part.eventform.php:27 -#: templates/part.eventinfo.php:18 +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 msgid "Calendar" msgstr "Kalenner" -#: lib/object.php:292 +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Falschen Kalenner" + +#: lib/app.php:60 lib/object.php:332 msgid "Birthday" -msgstr "" +msgstr "Gebuertsdag" -#: lib/object.php:293 +#: lib/app.php:61 lib/object.php:333 msgid "Business" -msgstr "" +msgstr "Geschäftlech" -#: lib/object.php:294 +#: lib/app.php:62 lib/object.php:334 msgid "Call" -msgstr "" +msgstr "Uruff" -#: lib/object.php:295 +#: lib/app.php:63 lib/object.php:335 msgid "Clients" -msgstr "" +msgstr "Clienten" -#: lib/object.php:296 +#: lib/app.php:64 lib/object.php:336 msgid "Deliverer" -msgstr "" +msgstr "Liwwerant" -#: lib/object.php:297 +#: lib/app.php:65 lib/object.php:337 msgid "Holidays" -msgstr "" +msgstr "Vakanzen" -#: lib/object.php:298 +#: lib/app.php:66 lib/object.php:338 msgid "Ideas" -msgstr "" +msgstr "Ideeën" -#: lib/object.php:299 +#: lib/app.php:67 lib/object.php:339 msgid "Journey" -msgstr "" +msgstr "Dag" -#: lib/object.php:300 +#: lib/app.php:68 lib/object.php:340 msgid "Jubilee" -msgstr "" +msgstr "Jubiläum" -#: lib/object.php:301 +#: lib/app.php:69 lib/object.php:341 msgid "Meeting" -msgstr "" +msgstr "Meeting" -#: lib/object.php:302 +#: lib/app.php:70 lib/object.php:342 msgid "Other" -msgstr "" +msgstr "Aner" -#: lib/object.php:303 +#: lib/app.php:71 lib/object.php:343 msgid "Personal" -msgstr "" +msgstr "Perséinlech" -#: lib/object.php:304 +#: lib/app.php:72 lib/object.php:344 msgid "Projects" -msgstr "" +msgstr "Projeten" -#: lib/object.php:305 +#: lib/app.php:73 lib/object.php:345 msgid "Questions" -msgstr "" +msgstr "Froen" -#: lib/object.php:306 +#: lib/app.php:74 lib/object.php:346 msgid "Work" -msgstr "" +msgstr "Aarbecht" -#: lib/object.php:313 +#: lib/object.php:353 msgid "Does not repeat" msgstr "Widderhëlt sech net" -#: lib/object.php:314 +#: lib/object.php:354 msgid "Daily" msgstr "Deeglech" -#: lib/object.php:315 +#: lib/object.php:355 msgid "Weekly" msgstr "All Woch" -#: lib/object.php:316 +#: lib/object.php:356 msgid "Every Weekday" msgstr "All Wochendag" -#: lib/object.php:317 +#: lib/object.php:357 msgid "Bi-Weekly" msgstr "All zweet Woch" -#: lib/object.php:318 +#: lib/object.php:358 msgid "Monthly" msgstr "All Mount" -#: lib/object.php:319 +#: lib/object.php:359 msgid "Yearly" msgstr "All Joer" -#: lib/object.php:337 -msgid "Not an array" +#: lib/object.php:366 +msgid "never" msgstr "" -#: templates/calendar.php:3 +#: lib/object.php:367 +msgid "by occurrences" +msgstr "" + +#: lib/object.php:368 +msgid "by date" +msgstr "" + +#: lib/object.php:375 +msgid "by monthday" +msgstr "" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "" + +#: lib/object.php:383 templates/lAfix.php:3 +msgid "Monday" +msgstr "" + +#: lib/object.php:384 templates/lAfix.php:4 +msgid "Tuesday" +msgstr "" + +#: lib/object.php:385 templates/lAfix.php:5 +msgid "Wednesday" +msgstr "" + +#: lib/object.php:386 templates/lAfix.php:6 +msgid "Thursday" +msgstr "" + +#: lib/object.php:387 templates/lAfix.php:7 +msgid "Friday" +msgstr "" + +#: lib/object.php:388 templates/lAfix.php:8 +msgid "Saturday" +msgstr "" + +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "" + +#: lib/object.php:396 +msgid "events week of month" +msgstr "" + +#: lib/object.php:397 +msgid "first" +msgstr "" + +#: lib/object.php:398 +msgid "second" +msgstr "" + +#: lib/object.php:399 +msgid "third" +msgstr "" + +#: lib/object.php:400 +msgid "fourth" +msgstr "" + +#: lib/object.php:401 +msgid "fifth" +msgstr "" + +#: lib/object.php:402 +msgid "last" +msgstr "" + +#: lib/object.php:424 templates/lAfix.php:16 +msgid "January" +msgstr "" + +#: lib/object.php:425 templates/lAfix.php:17 +msgid "February" +msgstr "" + +#: lib/object.php:426 templates/lAfix.php:18 +msgid "March" +msgstr "" + +#: lib/object.php:427 templates/lAfix.php:19 +msgid "April" +msgstr "" + +#: lib/object.php:428 templates/lAfix.php:20 +msgid "May" +msgstr "" + +#: lib/object.php:429 templates/lAfix.php:21 +msgid "June" +msgstr "" + +#: lib/object.php:430 templates/lAfix.php:22 +msgid "July" +msgstr "" + +#: lib/object.php:431 templates/lAfix.php:23 +msgid "August" +msgstr "" + +#: lib/object.php:432 templates/lAfix.php:24 +msgid "September" +msgstr "" + +#: lib/object.php:433 templates/lAfix.php:25 +msgid "October" +msgstr "" + +#: lib/object.php:434 templates/lAfix.php:26 +msgid "November" +msgstr "" + +#: lib/object.php:435 templates/lAfix.php:27 +msgid "December" +msgstr "" + +#: lib/object.php:441 +msgid "by events date" +msgstr "" + +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "" + +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "" + +#: lib/object.php:444 +msgid "by day and month" +msgstr "" + +#: lib/object.php:467 +msgid "Not an array" +msgstr "Keen array" + +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "" + +#: lib/search.php:40 +msgid "Cal." +msgstr "" + +#: templates/calendar.php:10 msgid "All day" msgstr "All Dag" -#: templates/calendar.php:32 -msgid "Sunday" -msgstr "Sonnden" +#: templates/calendar.php:11 +msgid "Missing fields" +msgstr "Felder déi feelen" -#: templates/calendar.php:32 -msgid "Monday" -msgstr "Méinden" +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" +msgstr "Titel" -#: templates/calendar.php:32 -msgid "Tuesday" -msgstr "Dënschden" +#: templates/calendar.php:14 +msgid "From Date" +msgstr "Vun Datum" -#: templates/calendar.php:32 -msgid "Wednesday" -msgstr "Mëttwoch" +#: templates/calendar.php:15 +msgid "From Time" +msgstr "Vun Zäit" -#: templates/calendar.php:32 -msgid "Thursday" -msgstr "Donneschden" +#: templates/calendar.php:16 +msgid "To Date" +msgstr "Bis Datum" -#: templates/calendar.php:32 -msgid "Friday" -msgstr "Freiden" +#: templates/calendar.php:17 +msgid "To Time" +msgstr "Bis Zäit" -#: templates/calendar.php:32 -msgid "Saturday" -msgstr "Samschden" +#: templates/calendar.php:18 +msgid "The event ends before it starts" +msgstr "D'Evenement hält op ier et ufänkt" -#: templates/calendar.php:33 -msgid "Sun." -msgstr "So. " +#: templates/calendar.php:19 +msgid "There was a database fail" +msgstr "En Datebank Feeler ass opgetrueden" -#: templates/calendar.php:33 -msgid "Mon." -msgstr "Méin. " - -#: templates/calendar.php:33 -msgid "Tue." -msgstr "Dën." - -#: templates/calendar.php:33 -msgid "Wed." -msgstr "Mëtt." - -#: templates/calendar.php:33 -msgid "Thu." -msgstr "Do." - -#: templates/calendar.php:33 -msgid "Fri." -msgstr "Fr." - -#: templates/calendar.php:33 -msgid "Sat." -msgstr "Sam." - -#: templates/calendar.php:34 -msgid "January" -msgstr "Januar" - -#: templates/calendar.php:34 -msgid "February" -msgstr "Februar" - -#: templates/calendar.php:34 -msgid "March" -msgstr "Mäerz" - -#: templates/calendar.php:34 -msgid "April" -msgstr "Abrëll" - -#: templates/calendar.php:34 -msgid "May" -msgstr "Mäi" - -#: templates/calendar.php:34 -msgid "June" -msgstr "Juni" - -#: templates/calendar.php:34 -msgid "July" -msgstr "Juli" - -#: templates/calendar.php:34 -msgid "August" -msgstr "August" - -#: templates/calendar.php:34 -msgid "September" -msgstr "September" - -#: templates/calendar.php:34 -msgid "October" -msgstr "Oktober" - -#: templates/calendar.php:34 -msgid "November" -msgstr "November" - -#: templates/calendar.php:34 -msgid "December" -msgstr "Dezember" - -#: templates/calendar.php:35 -msgid "Jan." -msgstr "Jan." - -#: templates/calendar.php:35 -msgid "Feb." -msgstr "Feb." - -#: templates/calendar.php:35 -msgid "Mar." -msgstr "Mär." - -#: templates/calendar.php:35 -msgid "Apr." -msgstr "Abr." - -#: templates/calendar.php:35 -msgid "May." -msgstr "" - -#: templates/calendar.php:35 -msgid "Jun." -msgstr "Jun." - -#: templates/calendar.php:35 -msgid "Jul." -msgstr "Jul." - -#: templates/calendar.php:35 -msgid "Aug." -msgstr "Aug." - -#: templates/calendar.php:35 -msgid "Sep." -msgstr "Sep." - -#: templates/calendar.php:35 -msgid "Oct." -msgstr "Okt." - -#: templates/calendar.php:35 -msgid "Nov." -msgstr "Nov." - -#: templates/calendar.php:35 -msgid "Dec." -msgstr "Dez." - -#: templates/calendar.php:36 templates/calendar.php:50 -#: templates/calendar.php:116 +#: templates/calendar.php:52 msgid "Week" msgstr "Woch" -#: templates/calendar.php:37 templates/calendar.php:51 -msgid "Weeks" -msgstr "Wochen" - -#: templates/calendar.php:38 -msgid "More before {startdate}" -msgstr "" - -#: templates/calendar.php:39 -msgid "More after {enddate}" -msgstr "" - -#: templates/calendar.php:49 -msgid "Day" -msgstr "Dag" - -#: templates/calendar.php:52 +#: templates/calendar.php:53 msgid "Month" msgstr "Mount" -#: templates/calendar.php:53 +#: templates/calendar.php:54 msgid "List" -msgstr "" +msgstr "Lescht" -#: templates/calendar.php:58 +#: templates/calendar.php:59 msgid "Today" msgstr "Haut" -#: templates/calendar.php:59 +#: templates/calendar.php:60 msgid "Calendars" msgstr "Kalenneren" -#: templates/calendar.php:76 templates/calendar.php:94 -msgid "Time" -msgstr "Zäit" - -#: templates/calendar.php:169 +#: templates/calendar.php:78 msgid "There was a fail, while parsing the file." msgstr "Feeler beim lueden vum Fichier." +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "" + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "" + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "" + +#: templates/lAfix.php:32 +msgid "May." +msgstr "" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "" + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "" + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "" + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "" + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "" + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "" + #: templates/part.choosecalendar.php:1 msgid "Choose active calendars" msgstr "Wiel aktiv Kalenneren aus" #: templates/part.choosecalendar.php:15 msgid "New Calendar" -msgstr "" +msgstr "Neien Kalenner" #: templates/part.choosecalendar.php:20 #: templates/part.choosecalendar.rowfields.php:4 msgid "CalDav Link" -msgstr "" +msgstr "CalDav Link" #: templates/part.choosecalendar.rowfields.php:4 msgid "Download" msgstr "Eroflueden" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.eventinfo.php:64 msgid "Edit" msgstr "Editéieren" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.editevent.php:8 +#: templates/part.editevent.php:9 msgid "Delete" -msgstr "" +msgstr "Läschen" #: templates/part.editcalendar.php:9 msgid "New calendar" -msgstr "" +msgstr "Neien Kalenner" #: templates/part.editcalendar.php:9 msgid "Edit calendar" @@ -376,90 +457,181 @@ msgstr "Numm" msgid "Active" msgstr "Aktiv" -#: templates/part.editcalendar.php:29 templates/part.eventform.php:88 -#: templates/part.eventinfo.php:58 -msgid "Description" -msgstr "Beschreiwung" - -#: templates/part.editcalendar.php:35 +#: templates/part.editcalendar.php:29 msgid "Calendar color" msgstr "Fuerf vum Kalenner" -#: templates/part.editcalendar.php:41 +#: templates/part.editcalendar.php:42 msgid "Save" -msgstr "" +msgstr "Späicheren" -#: templates/part.editcalendar.php:41 templates/part.editevent.php:7 +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 #: templates/part.newevent.php:6 msgid "Submit" msgstr "Fortschécken" -#: templates/part.editcalendar.php:42 +#: templates/part.editcalendar.php:43 msgid "Cancel" -msgstr "" +msgstr "Ofbriechen" -#: templates/part.editevent.php:1 templates/part.eventinfo.php:1 +#: templates/part.editevent.php:1 msgid "Edit an event" msgstr "Evenement editéieren" -#: templates/part.eventform.php:3 templates/part.eventinfo.php:4 -msgid "Title" -msgstr "Titel" +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "Export" #: templates/part.eventform.php:5 msgid "Title of the Event" msgstr "Titel vum Evenement" -#: templates/part.eventform.php:9 templates/part.eventinfo.php:9 -msgid "Location" -msgstr "Uert" - #: templates/part.eventform.php:11 -msgid "Location of the Event" -msgstr "Uert vum Evenement" - -#: templates/part.eventform.php:17 templates/part.eventinfo.php:16 msgid "Category" msgstr "Kategorie" -#: templates/part.eventform.php:19 +#: templates/part.eventform.php:13 msgid "Select category" -msgstr "" +msgstr "Kategorie auswielen" -#: templates/part.eventform.php:45 templates/part.eventinfo.php:28 +#: templates/part.eventform.php:37 msgid "All Day Event" msgstr "Ganz-Dag Evenement" -#: templates/part.eventform.php:49 templates/part.eventinfo.php:31 +#: templates/part.eventform.php:41 msgid "From" msgstr "Vun" -#: templates/part.eventform.php:57 templates/part.eventinfo.php:38 +#: templates/part.eventform.php:49 msgid "To" msgstr "Fir" -#: templates/part.eventform.php:65 templates/part.eventinfo.php:44 +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "Avancéiert Optiounen" + +#: templates/part.eventform.php:61 msgid "Repeat" msgstr "Widderhuelen" -#: templates/part.eventform.php:81 templates/part.eventinfo.php:51 -msgid "Attendees" -msgstr "Participanten" +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "" -#: templates/part.eventform.php:89 +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Uert" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Uert vum Evenement" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Beschreiwung" + +#: templates/part.eventform.php:218 msgid "Description of the Event" msgstr "Beschreiwung vum Evenement" -#: templates/part.eventinfo.php:63 -msgid "Close" -msgstr "Zoumaachen" +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "Wiel den Kalenner aus" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "Import" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "" #: templates/part.newevent.php:1 msgid "Create a new event" msgstr "En Evenement maachen" -#: templates/settings.php:11 +#: templates/settings.php:13 msgid "Timezone" msgstr "Zäitzon" +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "Zäit Format" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24h" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12h" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "CalDAV Kalenner Synchronisatioun's Adress:" + diff --git a/l10n/lb/contacts.po b/l10n/lb/contacts.po index 63d22e6f7c8..558e54c309a 100644 --- a/l10n/lb/contacts.po +++ b/l10n/lb/contacts.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 20:10+0200\n" -"PO-Revision-Date: 2011-09-23 18:11+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" "Language-Team: Luxembourgish (http://www.transifex.net/projects/p/owncloud/team/lb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,164 +18,265 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 -#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 -#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 -#: ajax/showsetproperty.php:32 photo.php:32 -msgid "You need to log in." +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." msgstr "" -#: ajax/addcard.php:37 +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: lib/app.php:52 msgid "This is not your addressbook." -msgstr "" +msgstr "Dat do ass net däin Adressbuch." -#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 -#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 -#: ajax/showsetproperty.php:38 photo.php:39 +#: lib/app.php:61 photo.php:36 msgid "Contact could not be found." -msgstr "" +msgstr "Konnt den Kontakt net fannen." -#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 -#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 -#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 -msgid "This is not your contact." -msgstr "" - -#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 -#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 -msgid "vCard could not be read." -msgstr "" - -#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 -#: ajax/showsetproperty.php:62 +#: lib/app.php:89 msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" +msgstr "Informatioun iwwert vCard ass net richteg. Lued d'Säit wegl nei." -#: photo.php:53 -msgid "This card is not RFC compatible." -msgstr "" - -#: photo.php:90 -msgid "This card does not contain a photo." -msgstr "" - -#: templates/index.php:8 -msgid "Add Contact" -msgstr "" - -#: templates/part.addcardform.php:5 -msgid "Group" -msgstr "" - -#: templates/part.addcardform.php:12 templates/part.property.php:3 -msgid "Name" -msgstr "" - -#: templates/part.addcardform.php:14 -msgid "Create Contact" -msgstr "" - -#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 msgid "Address" -msgstr "" +msgstr "Adress" -#: templates/part.addpropertyform.php:5 +#: lib/app.php:102 templates/part.addcardform.php:43 msgid "Telephone" -msgstr "" +msgstr "Telefon's Nummer" -#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 msgid "Email" -msgstr "" +msgstr "Email" -#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 msgid "Organization" -msgstr "" +msgstr "Firma" -#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +#: lib/app.php:116 lib/app.php:123 msgid "Work" -msgstr "" +msgstr "Aarbecht" -#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +#: lib/app.php:117 lib/app.php:121 msgid "Home" -msgstr "" +msgstr "Doheem" -#: templates/part.addpropertyform.php:20 templates/part.property.php:48 -#: templates/part.setpropertyform.php:5 -msgid "PO Box" -msgstr "" - -#: templates/part.addpropertyform.php:21 templates/part.property.php:51 -#: templates/part.setpropertyform.php:6 -msgid "Extended" -msgstr "" - -#: templates/part.addpropertyform.php:22 templates/part.property.php:54 -#: templates/part.setpropertyform.php:7 -msgid "Street" -msgstr "" - -#: templates/part.addpropertyform.php:23 templates/part.property.php:57 -#: templates/part.setpropertyform.php:8 -msgid "City" -msgstr "" - -#: templates/part.addpropertyform.php:24 templates/part.property.php:60 -#: templates/part.setpropertyform.php:9 -msgid "Region" -msgstr "" - -#: templates/part.addpropertyform.php:25 templates/part.property.php:63 -#: templates/part.setpropertyform.php:10 -msgid "Zipcode" -msgstr "" - -#: templates/part.addpropertyform.php:26 templates/part.property.php:66 -#: templates/part.setpropertyform.php:11 -msgid "Country" -msgstr "" - -#: templates/part.addpropertyform.php:31 +#: lib/app.php:122 msgid "Mobile" -msgstr "" +msgstr "GSM" -#: templates/part.addpropertyform.php:33 +#: lib/app.php:124 msgid "Text" -msgstr "" +msgstr "SMS" -#: templates/part.addpropertyform.php:34 +#: lib/app.php:125 msgid "Voice" -msgstr "" +msgstr "Voice" -#: templates/part.addpropertyform.php:35 +#: lib/app.php:126 msgid "Fax" -msgstr "" +msgstr "Fax" -#: templates/part.addpropertyform.php:36 +#: lib/app.php:127 msgid "Video" -msgstr "" +msgstr "Video" -#: templates/part.addpropertyform.php:37 +#: lib/app.php:128 msgid "Pager" +msgstr "Pager" + +#: lib/search.php:22 +msgid "Contact" msgstr "" -#: templates/part.details.php:33 +#: photo.php:42 +msgid "This is not your contact." +msgstr "Dat do ass net däin Kontakt." + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Kontakt bäisetzen" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Numm" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "Postleetzuel" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Erweidert" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Strooss" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Staat" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Regioun" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "Postleetzuel" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "Land" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Kontakt erstellen" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Editéieren" + +#: templates/part.chooseaddressbook.rowfields.php:5 msgid "Delete" +msgstr "Läschen" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "" + +#: templates/part.details.php:4 +msgid "Delete contact" msgstr "" #: templates/part.details.php:34 -msgid "Add Property" +msgid "Add" msgstr "" -#: templates/part.property.php:9 +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "" + +#: templates/part.property.php:3 msgid "Birthday" +msgstr "Gebuertsdag" + +#: templates/part.property.php:23 +msgid "Preferred" msgstr "" -#: templates/part.property.php:29 +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 msgid "Phone" +msgstr "Telefon" + +#: templates/part.setpropertyform.php:57 +msgid "Update" msgstr "" -#: templates/part.setpropertyform.php:17 -msgid "Edit" +#: templates/settings.php:4 +msgid "CardDAV syncing address:" msgstr "" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 9e0db1c821d..325db00a595 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-17 14:32+0000\n" -"Last-Translator: sim0n \n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Luxembourgish (http://www.transifex.net/projects/p/owncloud/team/lb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,52 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" +"Du kriss en Link fir däin Passwuert nei ze setzen via Email geschéckt." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Gefrot" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Falschen Login!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Benotzernumm" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Reset ufroen" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Dän Passwuert ass zeréck gesat gin" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Neit Passwuert" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Passwuert zeréck setzen" + #: strings.php:5 msgid "Personal" msgstr "Perséinlech" @@ -46,54 +92,50 @@ msgstr "Cloud net fonnt" msgid "Create an admin account" msgstr "En Admin Account uleeën" -#: templates/installation.php:21 -msgid "Username" -msgstr "Benotzernumm" - -#: templates/installation.php:22 +#: templates/installation.php:26 templates/login.php:12 msgid "Password" msgstr "Passwuert" -#: templates/installation.php:27 -msgid "Configure the database" -msgstr "Datebank konfiguréieren" - -#: templates/installation.php:32 templates/installation.php:43 -#: templates/installation.php:53 -msgid "will be used" -msgstr "wärt benotzt ginn" - -#: templates/installation.php:64 -msgid "Database user" -msgstr "Datebank Benotzer" - -#: templates/installation.php:65 -msgid "Database password" -msgstr "Datebank Passwuert" - -#: templates/installation.php:66 -msgid "Database name" -msgstr "Datebank Numm" - -#: templates/installation.php:72 +#: templates/installation.php:32 msgid "Advanced" msgstr "Erweidert" -#: templates/installation.php:75 -msgid "Database host" -msgstr "Datebank Server" - -#: templates/installation.php:76 +#: templates/installation.php:34 msgid "Data folder" msgstr "Daten Dossier" +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Datebank konfiguréieren" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "wärt benotzt ginn" + #: templates/installation.php:79 +msgid "Database user" +msgstr "Datebank Benotzer" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Datebank Passwuert" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Datebank Numm" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Datebank Server" + +#: templates/installation.php:98 msgid "Finish setup" msgstr "Installatioun ofschléissen" #: templates/layout.guest.php:35 -msgid "gives you freedom and control over your own data" -msgstr "gëtt dir Fräiheet an Kontroll iwwert deng eegen Daten" +msgid "web services under your control" +msgstr "" #: templates/layout.user.php:34 msgid "Log out" @@ -103,39 +145,22 @@ msgstr "Ausloggen" msgid "Settings" msgstr "Astellungen" -#: templates/login.php:4 +#: templates/login.php:5 msgid "Lost your password?" msgstr "Passwuert vergiess?" -#: templates/login.php:9 templates/login.php:13 +#: templates/login.php:15 msgid "remember" msgstr "verhalen" +#: templates/login.php:16 +msgid "Log in" +msgstr "" + #: templates/logout.php:1 msgid "You are logged out." msgstr "Du bass ausgeloggt." -#: templates/lostpassword.php:3 -msgid "You will receive a link to reset your password via Email." -msgstr "" -"Du kriss per E-mail en Link geschéckt fir däin Passwuert nei ze setzen." - -#: templates/lostpassword.php:5 -msgid "Requested" -msgstr "Verlaangt" - -#: templates/lostpassword.php:8 -msgid "Login failed!" -msgstr "Aloggen feelgeschloen!" - -#: templates/lostpassword.php:10 -msgid "Username or Email" -msgstr "Benotzernumm oder E-Mail" - -#: templates/lostpassword.php:11 -msgid "Request reset" -msgstr "Reset ufroen" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "zeréck" @@ -144,16 +169,4 @@ msgstr "zeréck" msgid "next" msgstr "weider" -#: templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "Dän Passwuert ass nei gesat ginn" - -#: templates/resetpassword.php:6 -msgid "New password" -msgstr "Neit Passwuert" - -#: templates/resetpassword.php:7 -msgid "Reset password" -msgstr "Passwuert nei setzen" - diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 795847eb7ab..2580734d259 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Luxembourgish (http://www.transifex.net/projects/p/owncloud/team/lb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,33 +18,37 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:24 +#: ajax/upload.php:19 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "Keen Feeler, Datei ass komplett ropgelueden ginn" -#: ajax/upload.php:25 +#: ajax/upload.php:20 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "" +"Déi ropgelueden Datei ass méi grouss wei d'upload_max_filesize Eegenschaft " +"an der php.ini" -#: ajax/upload.php:26 +#: ajax/upload.php:21 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" +"Déi ropgelueden Datei ass méi grouss wei d'MAX_FILE_SIZE Eegenschaft déi an " +"der HTML form uginn ass" -#: ajax/upload.php:27 +#: ajax/upload.php:22 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "Déi ropgelueden Datei ass nëmmen hallef ropgelueden ginn" -#: ajax/upload.php:28 +#: ajax/upload.php:23 msgid "No file was uploaded" -msgstr "" +msgstr "Et ass keng Datei ropgelueden ginn" -#: ajax/upload.php:29 +#: ajax/upload.php:24 msgid "Missing a temporary folder" -msgstr "" +msgstr "Et feelt en temporären Dossier" -#: appinfo/app.php:7 +#: appinfo/app.php:8 msgid "Files" msgstr "Dateien" @@ -52,43 +56,55 @@ msgstr "Dateien" msgid "Maximum upload size" msgstr "Maximum Upload Gréisst " +#: templates/index.php:7 +msgid "New" +msgstr "" + #: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:11 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From the web" +msgstr "" + +#: templates/index.php:22 msgid "Upload" msgstr "Eroplueden" -#: templates/index.php:17 -msgid "New Folder" -msgstr "Neien Dossier" - -#: templates/index.php:31 +#: templates/index.php:35 msgid "Nothing in here. Upload something!" msgstr "Hei ass näischt. Lued eppes rop!" -#: templates/index.php:39 +#: templates/index.php:43 msgid "Name" msgstr "Numm" -#: templates/index.php:41 +#: templates/index.php:45 msgid "Download" msgstr "Eroflueden" -#: templates/index.php:45 +#: templates/index.php:49 msgid "Size" msgstr "Gréisst" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Modified" msgstr "Geännert" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Delete" msgstr "Läschen" -#: templates/index.php:54 +#: templates/index.php:58 msgid "Upload too large" msgstr "Upload ze grouss" -#: templates/index.php:56 +#: templates/index.php:60 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." diff --git a/l10n/lb/gallery.po b/l10n/lb/gallery.po new file mode 100644 index 00000000000..3ed140c2756 --- /dev/null +++ b/l10n/lb/gallery.po @@ -0,0 +1,52 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Luxembourgish (http://www.transifex.net/projects/p/owncloud/team/lb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lb\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" + + diff --git a/l10n/lb/media.po b/l10n/lb/media.po index a6123404729..57de6b20880 100644 --- a/l10n/lb/media.po +++ b/l10n/lb/media.po @@ -2,14 +2,15 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# Translators: # , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-09-03 14:50+0200\n" -"PO-Revision-Date: 2011-08-25 14:24+0000\n" -"Last-Translator: sim0n \n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Luxembourgish (http://www.transifex.net/projects/p/owncloud/team/lb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,15 +18,15 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: appinfo/app.php:31 +#: appinfo/app.php:32 msgid "Music" msgstr "Musek" -#: templates/music.php:3 +#: templates/music.php:3 templates/player.php:13 msgid "Play" msgstr "Ofspillen" -#: templates/music.php:4 templates/music.php:30 +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 msgid "Pause" msgstr "Paus" @@ -33,7 +34,7 @@ msgstr "Paus" msgid "Previous" msgstr "Zeréck" -#: templates/music.php:6 +#: templates/music.php:6 templates/player.php:15 msgid "Next" msgstr "Weider" @@ -45,11 +46,7 @@ msgstr "Toun ausmaachen" msgid "Unmute" msgstr "Toun umaachen" -#: templates/music.php:28 -msgid "Songs scanned" -msgstr "Lidder gescannt" - -#: templates/music.php:29 +#: templates/music.php:25 msgid "Rescan Collection" msgstr "Kollektioun nei scannen" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 3f8ef7ff305..98eb2381dd2 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-17 14:28+0000\n" -"Last-Translator: sim0n \n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 16:32+0000\n" +"Last-Translator: icewind \n" "Language-Team: Luxembourgish (http://www.transifex.net/projects/p/owncloud/team/lb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,30 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/openid.php:13 ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Authentifikatioun's Feeler" +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "" -#: ajax/openid.php:21 -msgid "OpenID Changed" -msgstr "OpenID huet geännert" - -#: ajax/openid.php:23 ajax/setlanguage.php:23 +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 msgid "Invalid request" msgstr "Ongülteg Requête" -#: ajax/setlanguage.php:21 +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID huet geännert" + +#: ajax/setlanguage.php:14 msgid "Language changed" msgstr "Sprooch huet geännert" +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "" + #: templates/apps.php:8 msgid "Add your application" msgstr "Sätz deng Applikatioun bäi" @@ -54,17 +62,17 @@ msgstr "vun" msgid "Ask a question" msgstr "Stell eng Fro" -#: templates/help.php:17 +#: templates/help.php:20 msgid "Problems connecting to help database." msgstr "" "Problemer sinn opgetrueden beim Versuch sech un d'Hëllef Datebank ze " "verbannen." -#: templates/help.php:18 +#: templates/help.php:21 msgid "Go there manually." msgstr "Gei manuell dohinner." -#: templates/help.php:26 +#: templates/help.php:29 msgid "Answer" msgstr "Äntwert" @@ -100,37 +108,53 @@ msgstr "weisen" msgid "Change password" msgstr "Passwuert änneren" -#: templates/personal.php:24 templates/personal.php:25 +#: templates/personal.php:24 +msgid "Email" +msgstr "" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:32 templates/personal.php:33 msgid "Language" msgstr "Sprooch" -#: templates/personal.php:30 -msgid "Help translating" -msgstr "Hëllef ze Iwwersetzen" +#: templates/personal.php:38 +msgid "Help translate" +msgstr "" -#: templates/personal.php:37 +#: templates/personal.php:45 msgid "use this address to connect to your ownCloud in your file manager" msgstr "" "benotz dës Adress fir dech un deng ownCloud iwwert däin Datei Manager ze " "verbannen" -#: templates/users.php:16 +#: templates/users.php:15 templates/users.php:30 msgid "Name" msgstr "Numm" -#: templates/users.php:17 +#: templates/users.php:16 templates/users.php:31 msgid "Password" msgstr "Passwuert" -#: templates/users.php:18 templates/users.php:36 +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 msgid "Groups" msgstr "Gruppen" -#: templates/users.php:24 +#: templates/users.php:23 msgid "Create" msgstr "Erstellen" -#: templates/users.php:48 +#: templates/users.php:33 +msgid "Quota" +msgstr "" + +#: templates/users.php:58 msgid "Delete" msgstr "Läschen" diff --git a/l10n/lt_LT/calendar.po b/l10n/lt_LT/calendar.po new file mode 100644 index 00000000000..d26b774fbbb --- /dev/null +++ b/l10n/lt_LT/calendar.po @@ -0,0 +1,637 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Dr. ROX , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-15 13:45+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Lithuanian (Lithuania) (http://www.transifex.net/projects/p/owncloud/team/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt_LT\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "" + +#: ajax/settimezone.php:22 +msgid "Timezone changed" +msgstr "Laiko zona pakeista" + +#: ajax/settimezone.php:24 +msgid "Invalid request" +msgstr "Klaidinga užklausa" + +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 +msgid "Calendar" +msgstr "Kalendorius" + +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Ne tas kalendorius" + +#: lib/app.php:60 lib/object.php:332 +msgid "Birthday" +msgstr "Gimtadienis" + +#: lib/app.php:61 lib/object.php:333 +msgid "Business" +msgstr "Verslas" + +#: lib/app.php:62 lib/object.php:334 +msgid "Call" +msgstr "Skambučiai" + +#: lib/app.php:63 lib/object.php:335 +msgid "Clients" +msgstr "Klientai" + +#: lib/app.php:64 lib/object.php:336 +msgid "Deliverer" +msgstr "" + +#: lib/app.php:65 lib/object.php:337 +msgid "Holidays" +msgstr "Išeiginės" + +#: lib/app.php:66 lib/object.php:338 +msgid "Ideas" +msgstr "Idėjos" + +#: lib/app.php:67 lib/object.php:339 +msgid "Journey" +msgstr "Kelionė" + +#: lib/app.php:68 lib/object.php:340 +msgid "Jubilee" +msgstr "Jubiliejus" + +#: lib/app.php:69 lib/object.php:341 +msgid "Meeting" +msgstr "Susitikimas" + +#: lib/app.php:70 lib/object.php:342 +msgid "Other" +msgstr "" + +#: lib/app.php:71 lib/object.php:343 +msgid "Personal" +msgstr "" + +#: lib/app.php:72 lib/object.php:344 +msgid "Projects" +msgstr "" + +#: lib/app.php:73 lib/object.php:345 +msgid "Questions" +msgstr "" + +#: lib/app.php:74 lib/object.php:346 +msgid "Work" +msgstr "" + +#: lib/object.php:353 +msgid "Does not repeat" +msgstr "Nekartoti" + +#: lib/object.php:354 +msgid "Daily" +msgstr "Kasdien" + +#: lib/object.php:355 +msgid "Weekly" +msgstr "Kiekvieną savaitę" + +#: lib/object.php:356 +msgid "Every Weekday" +msgstr "Kiekvieną savaitės dieną" + +#: lib/object.php:357 +msgid "Bi-Weekly" +msgstr "Kas dvi savaites" + +#: lib/object.php:358 +msgid "Monthly" +msgstr "Kiekvieną mėnesį" + +#: lib/object.php:359 +msgid "Yearly" +msgstr "Kiekvienais metais" + +#: lib/object.php:366 +msgid "never" +msgstr "" + +#: lib/object.php:367 +msgid "by occurrences" +msgstr "" + +#: lib/object.php:368 +msgid "by date" +msgstr "" + +#: lib/object.php:375 +msgid "by monthday" +msgstr "" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "" + +#: lib/object.php:383 templates/lAfix.php:3 +msgid "Monday" +msgstr "" + +#: lib/object.php:384 templates/lAfix.php:4 +msgid "Tuesday" +msgstr "" + +#: lib/object.php:385 templates/lAfix.php:5 +msgid "Wednesday" +msgstr "" + +#: lib/object.php:386 templates/lAfix.php:6 +msgid "Thursday" +msgstr "" + +#: lib/object.php:387 templates/lAfix.php:7 +msgid "Friday" +msgstr "" + +#: lib/object.php:388 templates/lAfix.php:8 +msgid "Saturday" +msgstr "" + +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "" + +#: lib/object.php:396 +msgid "events week of month" +msgstr "" + +#: lib/object.php:397 +msgid "first" +msgstr "" + +#: lib/object.php:398 +msgid "second" +msgstr "" + +#: lib/object.php:399 +msgid "third" +msgstr "" + +#: lib/object.php:400 +msgid "fourth" +msgstr "" + +#: lib/object.php:401 +msgid "fifth" +msgstr "" + +#: lib/object.php:402 +msgid "last" +msgstr "" + +#: lib/object.php:424 templates/lAfix.php:16 +msgid "January" +msgstr "" + +#: lib/object.php:425 templates/lAfix.php:17 +msgid "February" +msgstr "" + +#: lib/object.php:426 templates/lAfix.php:18 +msgid "March" +msgstr "" + +#: lib/object.php:427 templates/lAfix.php:19 +msgid "April" +msgstr "" + +#: lib/object.php:428 templates/lAfix.php:20 +msgid "May" +msgstr "" + +#: lib/object.php:429 templates/lAfix.php:21 +msgid "June" +msgstr "" + +#: lib/object.php:430 templates/lAfix.php:22 +msgid "July" +msgstr "" + +#: lib/object.php:431 templates/lAfix.php:23 +msgid "August" +msgstr "" + +#: lib/object.php:432 templates/lAfix.php:24 +msgid "September" +msgstr "" + +#: lib/object.php:433 templates/lAfix.php:25 +msgid "October" +msgstr "" + +#: lib/object.php:434 templates/lAfix.php:26 +msgid "November" +msgstr "" + +#: lib/object.php:435 templates/lAfix.php:27 +msgid "December" +msgstr "" + +#: lib/object.php:441 +msgid "by events date" +msgstr "" + +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "" + +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "" + +#: lib/object.php:444 +msgid "by day and month" +msgstr "" + +#: lib/object.php:467 +msgid "Not an array" +msgstr "Ne masyvas" + +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "" + +#: lib/search.php:40 +msgid "Cal." +msgstr "" + +#: templates/calendar.php:10 +msgid "All day" +msgstr "Visa diena" + +#: templates/calendar.php:11 +msgid "Missing fields" +msgstr "Trūkstami laukai" + +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" +msgstr "Pavadinimas" + +#: templates/calendar.php:14 +msgid "From Date" +msgstr "" + +#: templates/calendar.php:15 +msgid "From Time" +msgstr "" + +#: templates/calendar.php:16 +msgid "To Date" +msgstr "Iki datos" + +#: templates/calendar.php:17 +msgid "To Time" +msgstr "Iki laiko" + +#: templates/calendar.php:18 +msgid "The event ends before it starts" +msgstr "Įvykis baigiasi anksčiau nei jis prasideda" + +#: templates/calendar.php:19 +msgid "There was a database fail" +msgstr "Įvyko duomenų bazės klaida" + +#: templates/calendar.php:52 +msgid "Week" +msgstr "Savaitė" + +#: templates/calendar.php:53 +msgid "Month" +msgstr "Mėnuo" + +#: templates/calendar.php:54 +msgid "List" +msgstr "Sąrašas" + +#: templates/calendar.php:59 +msgid "Today" +msgstr "Šiandien" + +#: templates/calendar.php:60 +msgid "Calendars" +msgstr "Kalendoriai" + +#: templates/calendar.php:78 +msgid "There was a fail, while parsing the file." +msgstr "Apdorojant failą įvyko klaida." + +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "" + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "" + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "" + +#: templates/lAfix.php:32 +msgid "May." +msgstr "" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "" + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "" + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "" + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "" + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "" + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "" + +#: templates/part.choosecalendar.php:1 +msgid "Choose active calendars" +msgstr "Pasirinkite naudojamus kalendorius" + +#: templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "Naujas kalendorius" + +#: templates/part.choosecalendar.php:20 +#: templates/part.choosecalendar.rowfields.php:4 +msgid "CalDav Link" +msgstr "CalDav adresas" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Download" +msgstr "Atsisiųsti" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Edit" +msgstr "Keisti" + +#: templates/part.choosecalendar.rowfields.php:4 +#: templates/part.editevent.php:9 +msgid "Delete" +msgstr "Trinti" + +#: templates/part.editcalendar.php:9 +msgid "New calendar" +msgstr "Naujas kalendorius" + +#: templates/part.editcalendar.php:9 +msgid "Edit calendar" +msgstr "Taisyti kalendorių" + +#: templates/part.editcalendar.php:12 +msgid "Displayname" +msgstr "Pavadinimas" + +#: templates/part.editcalendar.php:23 +msgid "Active" +msgstr "Naudojamas" + +#: templates/part.editcalendar.php:29 +msgid "Calendar color" +msgstr "" + +#: templates/part.editcalendar.php:42 +msgid "Save" +msgstr "Išsaugoti" + +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 +#: templates/part.newevent.php:6 +msgid "Submit" +msgstr "Išsaugoti" + +#: templates/part.editcalendar.php:43 +msgid "Cancel" +msgstr "Atšaukti" + +#: templates/part.editevent.php:1 +msgid "Edit an event" +msgstr "Taisyti įvykį" + +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "Eksportuoti" + +#: templates/part.eventform.php:5 +msgid "Title of the Event" +msgstr "Įvykio pavadinimas" + +#: templates/part.eventform.php:11 +msgid "Category" +msgstr "Kategorija" + +#: templates/part.eventform.php:13 +msgid "Select category" +msgstr "Pasirinkite kategoriją" + +#: templates/part.eventform.php:37 +msgid "All Day Event" +msgstr "Visos dienos įvykis" + +#: templates/part.eventform.php:41 +msgid "From" +msgstr "Nuo" + +#: templates/part.eventform.php:49 +msgid "To" +msgstr "Iki" + +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "Papildomi nustatymai" + +#: templates/part.eventform.php:61 +msgid "Repeat" +msgstr "Kartoti" + +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "" + +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Vieta" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Įvykio vieta" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Aprašymas" + +#: templates/part.eventform.php:218 +msgid "Description of the Event" +msgstr "Įvykio aprašymas" + +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "Pasirinkite kalendorių" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "Importuoti" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "" + +#: templates/part.newevent.php:1 +msgid "Create a new event" +msgstr "Sukurti naują įvykį" + +#: templates/settings.php:13 +msgid "Timezone" +msgstr "Laiko juosta" + +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "Laiko formatas" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24val" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12val" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "CalDAV kalendoriaus synchronizavimo adresas:" + + diff --git a/l10n/lt_LT/contacts.po b/l10n/lt_LT/contacts.po new file mode 100644 index 00000000000..77d85c36edb --- /dev/null +++ b/l10n/lt_LT/contacts.po @@ -0,0 +1,282 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Dr. ROX , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Lithuanian (Lithuania) (http://www.transifex.net/projects/p/owncloud/team/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt_LT\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." +msgstr "" + +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: lib/app.php:52 +msgid "This is not your addressbook." +msgstr "Tai ne jūsų adresų knygelė." + +#: lib/app.php:61 photo.php:36 +msgid "Contact could not be found." +msgstr "Kontaktas nerastas" + +#: lib/app.php:89 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "Informacija apie vCard yra neteisinga. " + +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 +msgid "Address" +msgstr "Adresas" + +#: lib/app.php:102 templates/part.addcardform.php:43 +msgid "Telephone" +msgstr "Telefonas" + +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 +msgid "Email" +msgstr "El. paštas" + +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 +msgid "Organization" +msgstr "Organizacija" + +#: lib/app.php:116 lib/app.php:123 +msgid "Work" +msgstr "Darbo" + +#: lib/app.php:117 lib/app.php:121 +msgid "Home" +msgstr "Namų" + +#: lib/app.php:122 +msgid "Mobile" +msgstr "Mobilusis" + +#: lib/app.php:124 +msgid "Text" +msgstr "Tekstas" + +#: lib/app.php:125 +msgid "Voice" +msgstr "Balso" + +#: lib/app.php:126 +msgid "Fax" +msgstr "Faksas" + +#: lib/app.php:127 +msgid "Video" +msgstr "Vaizdo" + +#: lib/app.php:128 +msgid "Pager" +msgstr "Pranešimų gaviklis" + +#: lib/search.php:22 +msgid "Contact" +msgstr "" + +#: photo.php:42 +msgid "This is not your contact." +msgstr "Tai ne jūsų kontaktas" + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Pridėti kontaktą" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Vardas" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "Pašto dėžutė" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Gatvė" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Miestas" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Regionas" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "Pašto indeksas" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "Šalis" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Sukurti kontaktą" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Keisti" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Delete" +msgstr "Trinti" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "" + +#: templates/part.property.php:3 +msgid "Birthday" +msgstr "Gimtadienis" + +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 +msgid "Phone" +msgstr "Telefonas" + +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "" + + diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po new file mode 100644 index 00000000000..0f9ca6992ca --- /dev/null +++ b/l10n/lt_LT/core.po @@ -0,0 +1,173 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Dr. ROX , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Lithuanian (Lithuania) (http://www.transifex.net/projects/p/owncloud/team/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt_LT\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" +"Elektroniniu paštu gausite nuorodą, su kuria galėsite iš naujo nustatyti " +"slaptažodį." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Užklausta" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Prisijungti nepavyko!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Prisijungimo vardas" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Prašyti nustatymo iš najo" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Jūsų slaptažodis buvo nustatytas iš naujo" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Naujas slaptažodis" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Atkurti slaptažodį" + +#: strings.php:5 +msgid "Personal" +msgstr "Asmeniniai" + +#: strings.php:6 +msgid "Users" +msgstr "Vartotojai" + +#: strings.php:7 +msgid "Apps" +msgstr "Programos" + +#: strings.php:8 +msgid "Admin" +msgstr "Administravimas" + +#: strings.php:9 +msgid "Help" +msgstr "Pagalba" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "Negalima rasti" + +#: templates/installation.php:20 +msgid "Create an admin account" +msgstr "Sukurti administratoriaus paskyrą" + +#: templates/installation.php:26 templates/login.php:12 +msgid "Password" +msgstr "Slaptažodis" + +#: templates/installation.php:32 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:34 +msgid "Data folder" +msgstr "Duomenų katalogas" + +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Nustatyti duomenų bazę" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "bus naudojama" + +#: templates/installation.php:79 +msgid "Database user" +msgstr "Duomenų bazės vartotojas" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Duomenų bazės slaptažodis" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Duomenų bazės pavadinimas" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Duomenų bazės serveris" + +#: templates/installation.php:98 +msgid "Finish setup" +msgstr "Baigti diegimą" + +#: templates/layout.guest.php:35 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:34 +msgid "Log out" +msgstr "Atsijungti" + +#: templates/layout.user.php:46 templates/layout.user.php:47 +msgid "Settings" +msgstr "Nustatymai" + +#: templates/login.php:5 +msgid "Lost your password?" +msgstr "Pamiršote slaptažodį?" + +#: templates/login.php:15 +msgid "remember" +msgstr "prisiminti" + +#: templates/login.php:16 +msgid "Log in" +msgstr "" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "Jūs atsijungėte." + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "atgal" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "kitas" + + diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po new file mode 100644 index 00000000000..6ad89a67524 --- /dev/null +++ b/l10n/lt_LT/files.po @@ -0,0 +1,112 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Dr. ROX , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Lithuanian (Lithuania) (http://www.transifex.net/projects/p/owncloud/team/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt_LT\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: ajax/upload.php:19 +msgid "There is no error, the file uploaded with success" +msgstr "Klaidų nėra, failas įkeltas sėkmingai" + +#: ajax/upload.php:20 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "Įkeliamo failo dydis viršija upload_max_filesize parametrą php.ini" + +#: ajax/upload.php:21 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" +"Įkeliamo failo dydis viršija MAX_FILE_SIZE parametrą, kuris yra nustatytas " +"HTML formoje" + +#: ajax/upload.php:22 +msgid "The uploaded file was only partially uploaded" +msgstr "Failas buvo įkeltas tik dalinai" + +#: ajax/upload.php:23 +msgid "No file was uploaded" +msgstr "Nebuvo įkeltas nė vienas failas" + +#: ajax/upload.php:24 +msgid "Missing a temporary folder" +msgstr "Nėra laikinojo katalogo" + +#: appinfo/app.php:8 +msgid "Files" +msgstr "Failai" + +#: templates/admin.php:5 +msgid "Maximum upload size" +msgstr "Maksimalus failo dydis" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:11 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From the web" +msgstr "" + +#: templates/index.php:22 +msgid "Upload" +msgstr "Įkelti" + +#: templates/index.php:35 +msgid "Nothing in here. Upload something!" +msgstr "Čia tuščia. Įkelkite ką nors!" + +#: templates/index.php:43 +msgid "Name" +msgstr "Pavadinimas" + +#: templates/index.php:45 +msgid "Download" +msgstr "Atsisiųsti" + +#: templates/index.php:49 +msgid "Size" +msgstr "Dydis" + +#: templates/index.php:50 +msgid "Modified" +msgstr "Pakeista" + +#: templates/index.php:50 +msgid "Delete" +msgstr "Ištrinti" + +#: templates/index.php:58 +msgid "Upload too large" +msgstr "Įkėlimui failas per didelis" + +#: templates/index.php:60 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" +"Bandomų įkelti failų dydis viršija maksimalų leidžiamą šiame serveryje" + + diff --git a/l10n/lt_LT/gallery.po b/l10n/lt_LT/gallery.po new file mode 100644 index 00000000000..24c6f1f913b --- /dev/null +++ b/l10n/lt_LT/gallery.po @@ -0,0 +1,52 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Lithuanian (Lithuania) (http://www.transifex.net/projects/p/owncloud/team/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt_LT\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" + + diff --git a/l10n/lt_LT/media.po b/l10n/lt_LT/media.po new file mode 100644 index 00000000000..3cf68998f16 --- /dev/null +++ b/l10n/lt_LT/media.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Dr. ROX , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Lithuanian (Lithuania) (http://www.transifex.net/projects/p/owncloud/team/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt_LT\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: appinfo/app.php:32 +msgid "Music" +msgstr "Muzika" + +#: templates/music.php:3 templates/player.php:13 +msgid "Play" +msgstr "Groti" + +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 +msgid "Pause" +msgstr "Pristabdyti" + +#: templates/music.php:5 +msgid "Previous" +msgstr "Atgal" + +#: templates/music.php:6 templates/player.php:15 +msgid "Next" +msgstr "Kitas" + +#: templates/music.php:7 +msgid "Mute" +msgstr "Nutildyti" + +#: templates/music.php:8 +msgid "Unmute" +msgstr "Įjungti garsą" + +#: templates/music.php:25 +msgid "Rescan Collection" +msgstr "Atnaujinti kolekciją" + +#: templates/music.php:37 +msgid "Artist" +msgstr "Atlikėjas" + +#: templates/music.php:38 +msgid "Album" +msgstr "Albumas" + +#: templates/music.php:39 +msgid "Title" +msgstr "Pavadinimas" + + diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po new file mode 100644 index 00000000000..066f574751c --- /dev/null +++ b/l10n/lt_LT/settings.po @@ -0,0 +1,158 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Dr. ROX , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 16:32+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Lithuanian (Lithuania) (http://www.transifex.net/projects/p/owncloud/team/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt_LT\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "" + +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 +msgid "Invalid request" +msgstr "Klaidinga užklausa" + +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID pakeistas" + +#: ajax/setlanguage.php:14 +msgid "Language changed" +msgstr "Kalba pakeista" + +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "" + +#: templates/apps.php:8 +msgid "Add your application" +msgstr "Pridėti jūsų programą" + +#: templates/apps.php:21 +msgid "Select an App" +msgstr "Pasirinkite programą" + +#: templates/apps.php:23 +msgid "-licensed" +msgstr "-licencijuota" + +#: templates/apps.php:23 +msgid "by" +msgstr "" + +#: templates/help.php:8 +msgid "Ask a question" +msgstr "Užduoti klausimą" + +#: templates/help.php:20 +msgid "Problems connecting to help database." +msgstr "Problemos jungiantis prie duomenų bazės" + +#: templates/help.php:21 +msgid "Go there manually." +msgstr "" + +#: templates/help.php:29 +msgid "Answer" +msgstr "Atsakyti" + +#: templates/personal.php:8 +msgid "You use" +msgstr "Jūs naudojate" + +#: templates/personal.php:8 +msgid "of the available" +msgstr "iš galimų" + +#: templates/personal.php:13 +msgid "Your password got changed" +msgstr "Jūsų slaptažodis buvo pakeistas" + +#: templates/personal.php:14 +msgid "Unable to change your password" +msgstr "Neįmanoma pakeisti slaptažodžio" + +#: templates/personal.php:15 +msgid "Current password" +msgstr "Dabartinis slaptažodis" + +#: templates/personal.php:16 +msgid "New password" +msgstr "Naujas slaptažodis" + +#: templates/personal.php:17 +msgid "show" +msgstr "rodyti" + +#: templates/personal.php:18 +msgid "Change password" +msgstr "Pakeisti slaptažodį" + +#: templates/personal.php:24 +msgid "Email" +msgstr "" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:32 templates/personal.php:33 +msgid "Language" +msgstr "Kalba" + +#: templates/personal.php:38 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:45 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "" +"naudokite šį adresą, jei norite pasiekti savo ownCloud per failų tvarkyklę" + +#: templates/users.php:15 templates/users.php:30 +msgid "Name" +msgstr "Vardas" + +#: templates/users.php:16 templates/users.php:31 +msgid "Password" +msgstr "Slaptažodis" + +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 +msgid "Groups" +msgstr "Grupės" + +#: templates/users.php:23 +msgid "Create" +msgstr "Sukurti" + +#: templates/users.php:33 +msgid "Quota" +msgstr "" + +#: templates/users.php:58 +msgid "Delete" +msgstr "Ištrinti" + + diff --git a/l10n/ms_MY/calendar.po b/l10n/ms_MY/calendar.po index 24fa26eeda3..6ad7fe344e0 100644 --- a/l10n/ms_MY/calendar.po +++ b/l10n/ms_MY/calendar.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-15 13:45+0000\n" +"Last-Translator: icewind \n" "Language-Team: Malay (Malaysia) (http://www.transifex.net/projects/p/owncloud/team/ms_MY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,321 +18,403 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0\n" -#: ajax/createcalendar.php:18 ajax/settimezone.php:19 -#: ajax/updatecalendar.php:18 -msgid "Authentication error" -msgstr "Ralat pengesahan" - -#: ajax/editeventform.php:25 -msgid "Wrong calendar" +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" msgstr "" -#: ajax/settimezone.php:27 +#: ajax/settimezone.php:22 msgid "Timezone changed" msgstr "Zon waktu diubah" -#: ajax/settimezone.php:29 +#: ajax/settimezone.php:24 msgid "Invalid request" msgstr "Permintaan tidak sah" -#: appinfo/app.php:19 templates/part.eventform.php:27 -#: templates/part.eventinfo.php:18 +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 msgid "Calendar" msgstr "Kalendar" -#: lib/object.php:292 +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "" + +#: lib/app.php:60 lib/object.php:332 msgid "Birthday" msgstr "" -#: lib/object.php:293 +#: lib/app.php:61 lib/object.php:333 msgid "Business" msgstr "" -#: lib/object.php:294 +#: lib/app.php:62 lib/object.php:334 msgid "Call" msgstr "" -#: lib/object.php:295 +#: lib/app.php:63 lib/object.php:335 msgid "Clients" msgstr "" -#: lib/object.php:296 +#: lib/app.php:64 lib/object.php:336 msgid "Deliverer" msgstr "" -#: lib/object.php:297 +#: lib/app.php:65 lib/object.php:337 msgid "Holidays" msgstr "" -#: lib/object.php:298 +#: lib/app.php:66 lib/object.php:338 msgid "Ideas" msgstr "" -#: lib/object.php:299 +#: lib/app.php:67 lib/object.php:339 msgid "Journey" msgstr "" -#: lib/object.php:300 +#: lib/app.php:68 lib/object.php:340 msgid "Jubilee" msgstr "" -#: lib/object.php:301 +#: lib/app.php:69 lib/object.php:341 msgid "Meeting" msgstr "" -#: lib/object.php:302 +#: lib/app.php:70 lib/object.php:342 msgid "Other" msgstr "" -#: lib/object.php:303 +#: lib/app.php:71 lib/object.php:343 msgid "Personal" msgstr "" -#: lib/object.php:304 +#: lib/app.php:72 lib/object.php:344 msgid "Projects" msgstr "" -#: lib/object.php:305 +#: lib/app.php:73 lib/object.php:345 msgid "Questions" msgstr "" -#: lib/object.php:306 +#: lib/app.php:74 lib/object.php:346 msgid "Work" msgstr "" -#: lib/object.php:313 +#: lib/object.php:353 msgid "Does not repeat" msgstr "Tidak berulang" -#: lib/object.php:314 +#: lib/object.php:354 msgid "Daily" msgstr "Harian" -#: lib/object.php:315 +#: lib/object.php:355 msgid "Weekly" msgstr "Mingguan" -#: lib/object.php:316 +#: lib/object.php:356 msgid "Every Weekday" msgstr "Setiap hari minggu" -#: lib/object.php:317 +#: lib/object.php:357 msgid "Bi-Weekly" msgstr "Dua kali seminggu" -#: lib/object.php:318 +#: lib/object.php:358 msgid "Monthly" msgstr "Bulanan" -#: lib/object.php:319 +#: lib/object.php:359 msgid "Yearly" msgstr "Tahunan" -#: lib/object.php:337 +#: lib/object.php:366 +msgid "never" +msgstr "" + +#: lib/object.php:367 +msgid "by occurrences" +msgstr "" + +#: lib/object.php:368 +msgid "by date" +msgstr "" + +#: lib/object.php:375 +msgid "by monthday" +msgstr "" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "" + +#: lib/object.php:383 templates/lAfix.php:3 +msgid "Monday" +msgstr "" + +#: lib/object.php:384 templates/lAfix.php:4 +msgid "Tuesday" +msgstr "" + +#: lib/object.php:385 templates/lAfix.php:5 +msgid "Wednesday" +msgstr "" + +#: lib/object.php:386 templates/lAfix.php:6 +msgid "Thursday" +msgstr "" + +#: lib/object.php:387 templates/lAfix.php:7 +msgid "Friday" +msgstr "" + +#: lib/object.php:388 templates/lAfix.php:8 +msgid "Saturday" +msgstr "" + +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "" + +#: lib/object.php:396 +msgid "events week of month" +msgstr "" + +#: lib/object.php:397 +msgid "first" +msgstr "" + +#: lib/object.php:398 +msgid "second" +msgstr "" + +#: lib/object.php:399 +msgid "third" +msgstr "" + +#: lib/object.php:400 +msgid "fourth" +msgstr "" + +#: lib/object.php:401 +msgid "fifth" +msgstr "" + +#: lib/object.php:402 +msgid "last" +msgstr "" + +#: lib/object.php:424 templates/lAfix.php:16 +msgid "January" +msgstr "" + +#: lib/object.php:425 templates/lAfix.php:17 +msgid "February" +msgstr "" + +#: lib/object.php:426 templates/lAfix.php:18 +msgid "March" +msgstr "" + +#: lib/object.php:427 templates/lAfix.php:19 +msgid "April" +msgstr "" + +#: lib/object.php:428 templates/lAfix.php:20 +msgid "May" +msgstr "" + +#: lib/object.php:429 templates/lAfix.php:21 +msgid "June" +msgstr "" + +#: lib/object.php:430 templates/lAfix.php:22 +msgid "July" +msgstr "" + +#: lib/object.php:431 templates/lAfix.php:23 +msgid "August" +msgstr "" + +#: lib/object.php:432 templates/lAfix.php:24 +msgid "September" +msgstr "" + +#: lib/object.php:433 templates/lAfix.php:25 +msgid "October" +msgstr "" + +#: lib/object.php:434 templates/lAfix.php:26 +msgid "November" +msgstr "" + +#: lib/object.php:435 templates/lAfix.php:27 +msgid "December" +msgstr "" + +#: lib/object.php:441 +msgid "by events date" +msgstr "" + +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "" + +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "" + +#: lib/object.php:444 +msgid "by day and month" +msgstr "" + +#: lib/object.php:467 msgid "Not an array" msgstr "" -#: templates/calendar.php:3 +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "" + +#: lib/search.php:40 +msgid "Cal." +msgstr "" + +#: templates/calendar.php:10 msgid "All day" msgstr "Sepanjang hari" -#: templates/calendar.php:32 -msgid "Sunday" -msgstr "Ahad" - -#: templates/calendar.php:32 -msgid "Monday" -msgstr "Isnin" - -#: templates/calendar.php:32 -msgid "Tuesday" -msgstr "Selasa" - -#: templates/calendar.php:32 -msgid "Wednesday" -msgstr "Rabu" - -#: templates/calendar.php:32 -msgid "Thursday" -msgstr "Khamis" - -#: templates/calendar.php:32 -msgid "Friday" -msgstr "Jumaat" - -#: templates/calendar.php:32 -msgid "Saturday" -msgstr "Sabtu" - -#: templates/calendar.php:33 -msgid "Sun." -msgstr "Ahad" - -#: templates/calendar.php:33 -msgid "Mon." -msgstr "Isnin" - -#: templates/calendar.php:33 -msgid "Tue." -msgstr "Selasa" - -#: templates/calendar.php:33 -msgid "Wed." -msgstr "Rabu" - -#: templates/calendar.php:33 -msgid "Thu." -msgstr "Khamis" - -#: templates/calendar.php:33 -msgid "Fri." -msgstr "Jumaat" - -#: templates/calendar.php:33 -msgid "Sat." -msgstr "Sabtu" - -#: templates/calendar.php:34 -msgid "January" -msgstr "Januari" - -#: templates/calendar.php:34 -msgid "February" -msgstr "Februari" - -#: templates/calendar.php:34 -msgid "March" -msgstr "Mac" - -#: templates/calendar.php:34 -msgid "April" -msgstr "April " - -#: templates/calendar.php:34 -msgid "May" -msgstr "Mei" - -#: templates/calendar.php:34 -msgid "June" -msgstr "Jun" - -#: templates/calendar.php:34 -msgid "July" -msgstr "Julai" - -#: templates/calendar.php:34 -msgid "August" -msgstr "Ogos" - -#: templates/calendar.php:34 -msgid "September" -msgstr "September" - -#: templates/calendar.php:34 -msgid "October" -msgstr "Oktober" - -#: templates/calendar.php:34 -msgid "November" -msgstr "November" - -#: templates/calendar.php:34 -msgid "December" -msgstr "Disember" - -#: templates/calendar.php:35 -msgid "Jan." -msgstr "Jan" - -#: templates/calendar.php:35 -msgid "Feb." -msgstr "Feb" - -#: templates/calendar.php:35 -msgid "Mar." -msgstr "Mac" - -#: templates/calendar.php:35 -msgid "Apr." -msgstr "Apr" - -#: templates/calendar.php:35 -msgid "May." +#: templates/calendar.php:11 +msgid "Missing fields" msgstr "" -#: templates/calendar.php:35 -msgid "Jun." -msgstr "Jun" +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" +msgstr "Tajuk" -#: templates/calendar.php:35 -msgid "Jul." -msgstr "Jul" +#: templates/calendar.php:14 +msgid "From Date" +msgstr "" -#: templates/calendar.php:35 -msgid "Aug." -msgstr "Ogos" +#: templates/calendar.php:15 +msgid "From Time" +msgstr "" -#: templates/calendar.php:35 -msgid "Sep." -msgstr "Sep" +#: templates/calendar.php:16 +msgid "To Date" +msgstr "" -#: templates/calendar.php:35 -msgid "Oct." -msgstr "Okt" +#: templates/calendar.php:17 +msgid "To Time" +msgstr "" -#: templates/calendar.php:35 -msgid "Nov." -msgstr "Nov" +#: templates/calendar.php:18 +msgid "The event ends before it starts" +msgstr "" -#: templates/calendar.php:35 -msgid "Dec." -msgstr "Dis" +#: templates/calendar.php:19 +msgid "There was a database fail" +msgstr "" -#: templates/calendar.php:36 templates/calendar.php:50 -#: templates/calendar.php:116 +#: templates/calendar.php:52 msgid "Week" msgstr "Minggu" -#: templates/calendar.php:37 templates/calendar.php:51 -msgid "Weeks" -msgstr "Minggu" - -#: templates/calendar.php:38 -msgid "More before {startdate}" -msgstr "" - -#: templates/calendar.php:39 -msgid "More after {enddate}" -msgstr "" - -#: templates/calendar.php:49 -msgid "Day" -msgstr "Hari" - -#: templates/calendar.php:52 +#: templates/calendar.php:53 msgid "Month" msgstr "Bulan" -#: templates/calendar.php:53 +#: templates/calendar.php:54 msgid "List" msgstr "" -#: templates/calendar.php:58 +#: templates/calendar.php:59 msgid "Today" msgstr "Hari ini" -#: templates/calendar.php:59 +#: templates/calendar.php:60 msgid "Calendars" msgstr "Kalendar" -#: templates/calendar.php:76 templates/calendar.php:94 -msgid "Time" -msgstr "Waktu" - -#: templates/calendar.php:169 +#: templates/calendar.php:78 msgid "There was a fail, while parsing the file." msgstr "Berlaku kegagalan ketika penguraian fail. " +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "" + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "" + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "" + +#: templates/lAfix.php:32 +msgid "May." +msgstr "" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "" + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "" + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "" + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "" + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "" + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "" + #: templates/part.choosecalendar.php:1 msgid "Choose active calendars" msgstr "Pilih kalendar yang aktif" @@ -351,12 +433,11 @@ msgid "Download" msgstr "Muat turun" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.eventinfo.php:64 msgid "Edit" msgstr "Edit" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.editevent.php:8 +#: templates/part.editevent.php:9 msgid "Delete" msgstr "" @@ -376,90 +457,181 @@ msgstr "Paparan nama" msgid "Active" msgstr "Aktif" -#: templates/part.editcalendar.php:29 templates/part.eventform.php:88 -#: templates/part.eventinfo.php:58 -msgid "Description" -msgstr "Huraian" - -#: templates/part.editcalendar.php:35 +#: templates/part.editcalendar.php:29 msgid "Calendar color" msgstr "Warna kalendar" -#: templates/part.editcalendar.php:41 +#: templates/part.editcalendar.php:42 msgid "Save" msgstr "" -#: templates/part.editcalendar.php:41 templates/part.editevent.php:7 +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 #: templates/part.newevent.php:6 msgid "Submit" msgstr "Hantar" -#: templates/part.editcalendar.php:42 +#: templates/part.editcalendar.php:43 msgid "Cancel" msgstr "" -#: templates/part.editevent.php:1 templates/part.eventinfo.php:1 +#: templates/part.editevent.php:1 msgid "Edit an event" msgstr "Edit agenda" -#: templates/part.eventform.php:3 templates/part.eventinfo.php:4 -msgid "Title" -msgstr "Tajuk" +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "" #: templates/part.eventform.php:5 msgid "Title of the Event" msgstr "Tajuk agenda" -#: templates/part.eventform.php:9 templates/part.eventinfo.php:9 -msgid "Location" -msgstr "Lokasi" - #: templates/part.eventform.php:11 -msgid "Location of the Event" -msgstr "Lokasi agenda" - -#: templates/part.eventform.php:17 templates/part.eventinfo.php:16 msgid "Category" msgstr "kategori" -#: templates/part.eventform.php:19 +#: templates/part.eventform.php:13 msgid "Select category" msgstr "" -#: templates/part.eventform.php:45 templates/part.eventinfo.php:28 +#: templates/part.eventform.php:37 msgid "All Day Event" msgstr "Agenda di sepanjang hari " -#: templates/part.eventform.php:49 templates/part.eventinfo.php:31 +#: templates/part.eventform.php:41 msgid "From" msgstr "Dari" -#: templates/part.eventform.php:57 templates/part.eventinfo.php:38 +#: templates/part.eventform.php:49 msgid "To" msgstr "ke" -#: templates/part.eventform.php:65 templates/part.eventinfo.php:44 +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "" + +#: templates/part.eventform.php:61 msgid "Repeat" msgstr "Ulang" -#: templates/part.eventform.php:81 templates/part.eventinfo.php:51 -msgid "Attendees" -msgstr "Hadirin" +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "" -#: templates/part.eventform.php:89 +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Lokasi" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Lokasi agenda" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Huraian" + +#: templates/part.eventform.php:218 msgid "Description of the Event" msgstr "Huraian agenda" -#: templates/part.eventinfo.php:63 -msgid "Close" -msgstr "Tutup" +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "" #: templates/part.newevent.php:1 msgid "Create a new event" msgstr "Buat agenda baru" -#: templates/settings.php:11 +#: templates/settings.php:13 msgid "Timezone" msgstr "Zon waktu" +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "" + +#: templates/settings.php:34 +msgid "24h" +msgstr "" + +#: templates/settings.php:35 +msgid "12h" +msgstr "" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "" + diff --git a/l10n/ms_MY/contacts.po b/l10n/ms_MY/contacts.po index 59b737d3660..35b7cc9d4d6 100644 --- a/l10n/ms_MY/contacts.po +++ b/l10n/ms_MY/contacts.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 20:10+0200\n" -"PO-Revision-Date: 2011-09-23 18:10+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" "Language-Team: Malay (Malaysia) (http://www.transifex.net/projects/p/owncloud/team/ms_MY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,164 +17,265 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0\n" -#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 -#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 -#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 -#: ajax/showsetproperty.php:32 photo.php:32 -msgid "You need to log in." +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." msgstr "" -#: ajax/addcard.php:37 +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: lib/app.php:52 msgid "This is not your addressbook." msgstr "" -#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 -#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 -#: ajax/showsetproperty.php:38 photo.php:39 +#: lib/app.php:61 photo.php:36 msgid "Contact could not be found." msgstr "" -#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 -#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 -#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 -msgid "This is not your contact." -msgstr "" - -#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 -#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 -msgid "vCard could not be read." -msgstr "" - -#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 -#: ajax/showsetproperty.php:62 +#: lib/app.php:89 msgid "Information about vCard is incorrect. Please reload the page." msgstr "" -#: photo.php:53 -msgid "This card is not RFC compatible." -msgstr "" - -#: photo.php:90 -msgid "This card does not contain a photo." -msgstr "" - -#: templates/index.php:8 -msgid "Add Contact" -msgstr "" - -#: templates/part.addcardform.php:5 -msgid "Group" -msgstr "" - -#: templates/part.addcardform.php:12 templates/part.property.php:3 -msgid "Name" -msgstr "" - -#: templates/part.addcardform.php:14 -msgid "Create Contact" -msgstr "" - -#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 msgid "Address" msgstr "" -#: templates/part.addpropertyform.php:5 +#: lib/app.php:102 templates/part.addcardform.php:43 msgid "Telephone" msgstr "" -#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 msgid "Email" msgstr "" -#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 msgid "Organization" msgstr "" -#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +#: lib/app.php:116 lib/app.php:123 msgid "Work" msgstr "" -#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +#: lib/app.php:117 lib/app.php:121 msgid "Home" msgstr "" -#: templates/part.addpropertyform.php:20 templates/part.property.php:48 -#: templates/part.setpropertyform.php:5 -msgid "PO Box" -msgstr "" - -#: templates/part.addpropertyform.php:21 templates/part.property.php:51 -#: templates/part.setpropertyform.php:6 -msgid "Extended" -msgstr "" - -#: templates/part.addpropertyform.php:22 templates/part.property.php:54 -#: templates/part.setpropertyform.php:7 -msgid "Street" -msgstr "" - -#: templates/part.addpropertyform.php:23 templates/part.property.php:57 -#: templates/part.setpropertyform.php:8 -msgid "City" -msgstr "" - -#: templates/part.addpropertyform.php:24 templates/part.property.php:60 -#: templates/part.setpropertyform.php:9 -msgid "Region" -msgstr "" - -#: templates/part.addpropertyform.php:25 templates/part.property.php:63 -#: templates/part.setpropertyform.php:10 -msgid "Zipcode" -msgstr "" - -#: templates/part.addpropertyform.php:26 templates/part.property.php:66 -#: templates/part.setpropertyform.php:11 -msgid "Country" -msgstr "" - -#: templates/part.addpropertyform.php:31 +#: lib/app.php:122 msgid "Mobile" msgstr "" -#: templates/part.addpropertyform.php:33 +#: lib/app.php:124 msgid "Text" msgstr "" -#: templates/part.addpropertyform.php:34 +#: lib/app.php:125 msgid "Voice" msgstr "" -#: templates/part.addpropertyform.php:35 +#: lib/app.php:126 msgid "Fax" msgstr "" -#: templates/part.addpropertyform.php:36 +#: lib/app.php:127 msgid "Video" msgstr "" -#: templates/part.addpropertyform.php:37 +#: lib/app.php:128 msgid "Pager" msgstr "" -#: templates/part.details.php:33 -msgid "Delete" +#: lib/search.php:22 +msgid "Contact" msgstr "" -#: templates/part.details.php:34 -msgid "Add Property" +#: photo.php:42 +msgid "This is not your contact." msgstr "" -#: templates/part.property.php:9 -msgid "Birthday" +#: templates/index.php:6 +msgid "Add Contact" msgstr "" -#: templates/part.property.php:29 -msgid "Phone" +#: templates/index.php:7 +msgid "Addressbooks" msgstr "" -#: templates/part.setpropertyform.php:17 +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 msgid "Edit" msgstr "" +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "" + +#: templates/part.property.php:3 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "" + diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index fdd7e66e3ae..7425a4e2781 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-15 13:57+0000\n" -"Last-Translator: hadrihilmi \n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Malay (Malaysia) (http://www.transifex.net/projects/p/owncloud/team/ms_MY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,51 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0\n" +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Nama pengguna" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Peribadi" @@ -46,54 +91,50 @@ msgstr "Awan tidak dijumpai" msgid "Create an admin account" msgstr "buat akaun admin" -#: templates/installation.php:21 -msgid "Username" -msgstr "Nama pengguna" - -#: templates/installation.php:22 +#: templates/installation.php:26 templates/login.php:12 msgid "Password" msgstr "Kata laluan" -#: templates/installation.php:27 -msgid "Configure the database" -msgstr "Konfigurasi pangkalan data" - -#: templates/installation.php:32 templates/installation.php:43 -#: templates/installation.php:53 -msgid "will be used" -msgstr "akan digunakan" - -#: templates/installation.php:64 -msgid "Database user" -msgstr "Nama pengguna pangkalan data" - -#: templates/installation.php:65 -msgid "Database password" -msgstr "Kata laluan pangkalan data" - -#: templates/installation.php:66 -msgid "Database name" -msgstr "Nama pangkalan data" - -#: templates/installation.php:72 +#: templates/installation.php:32 msgid "Advanced" msgstr "Maju" -#: templates/installation.php:75 -msgid "Database host" -msgstr "Hos pangkalan data" - -#: templates/installation.php:76 +#: templates/installation.php:34 msgid "Data folder" msgstr "Fail data" +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Konfigurasi pangkalan data" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "akan digunakan" + #: templates/installation.php:79 +msgid "Database user" +msgstr "Nama pengguna pangkalan data" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Kata laluan pangkalan data" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Nama pangkalan data" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Hos pangkalan data" + +#: templates/installation.php:98 msgid "Finish setup" msgstr "Setup selesai" #: templates/layout.guest.php:35 -msgid "gives you freedom and control over your own data" -msgstr "memberikan anda kebebasan dan kendalian keatas data anda" +msgid "web services under your control" +msgstr "" #: templates/layout.user.php:34 msgid "Log out" @@ -103,40 +144,22 @@ msgstr "Log keluar" msgid "Settings" msgstr "Tetapan" -#: templates/login.php:4 +#: templates/login.php:5 msgid "Lost your password?" msgstr "Hilang kata laluan?" -#: templates/login.php:9 templates/login.php:13 +#: templates/login.php:15 msgid "remember" msgstr "ingat" +#: templates/login.php:16 +msgid "Log in" +msgstr "" + #: templates/logout.php:1 msgid "You are logged out." msgstr "Anda telah log keluar." -#: templates/lostpassword.php:3 -msgid "You will receive a link to reset your password via Email." -msgstr "" -"Anda akan menerima link untuk menetapkan semula kata laluan anda melalui " -"emel" - -#: templates/lostpassword.php:5 -msgid "Requested" -msgstr "diminta" - -#: templates/lostpassword.php:8 -msgid "Login failed!" -msgstr "Log in gagal!" - -#: templates/lostpassword.php:10 -msgid "Username or Email" -msgstr "Nama pengguna atau Emel" - -#: templates/lostpassword.php:11 -msgid "Request reset" -msgstr "Minta set semula" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "sebelum" @@ -145,16 +168,4 @@ msgstr "sebelum" msgid "next" msgstr "seterus" -#: templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "Kata laluan anda diset semula" - -#: templates/resetpassword.php:6 -msgid "New password" -msgstr "Kata laluan baru" - -#: templates/resetpassword.php:7 -msgid "Reset password" -msgstr "Set semula kata laluan" - diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 2e340c01696..1d35a713693 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Malay (Malaysia) (http://www.transifex.net/projects/p/owncloud/team/ms_MY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,33 +18,33 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0\n" -#: ajax/upload.php:24 +#: ajax/upload.php:19 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:20 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:21 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:22 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:23 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:24 msgid "Missing a temporary folder" msgstr "" -#: appinfo/app.php:7 +#: appinfo/app.php:8 msgid "Files" msgstr "fail" @@ -52,43 +52,55 @@ msgstr "fail" msgid "Maximum upload size" msgstr "Saiz maksimum muat naik" +#: templates/index.php:7 +msgid "New" +msgstr "" + #: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:11 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From the web" +msgstr "" + +#: templates/index.php:22 msgid "Upload" msgstr "Muat naik" -#: templates/index.php:17 -msgid "New Folder" -msgstr "Folder baru" - -#: templates/index.php:31 +#: templates/index.php:35 msgid "Nothing in here. Upload something!" msgstr "Tiada apa-apa di sini. Muat naik sesuatu!" -#: templates/index.php:39 +#: templates/index.php:43 msgid "Name" msgstr "Nama " -#: templates/index.php:41 +#: templates/index.php:45 msgid "Download" msgstr "Muat turun" -#: templates/index.php:45 +#: templates/index.php:49 msgid "Size" msgstr "Saiz" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Modified" msgstr "Dimodifikasi" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Delete" msgstr "Padam" -#: templates/index.php:54 +#: templates/index.php:58 msgid "Upload too large" msgstr "Muat naik terlalu besar" -#: templates/index.php:56 +#: templates/index.php:60 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." diff --git a/l10n/ms_MY/gallery.po b/l10n/ms_MY/gallery.po new file mode 100644 index 00000000000..dcab2af9804 --- /dev/null +++ b/l10n/ms_MY/gallery.po @@ -0,0 +1,52 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Malay (Malaysia) (http://www.transifex.net/projects/p/owncloud/team/ms_MY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ms_MY\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" + + diff --git a/l10n/ms_MY/media.po b/l10n/ms_MY/media.po index f6c41264bc1..b0ee4ec4540 100644 --- a/l10n/ms_MY/media.po +++ b/l10n/ms_MY/media.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-09 00:01+0000\n" -"Last-Translator: hadrihilmi \n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Malay (Malaysia) (http://www.transifex.net/projects/p/owncloud/team/ms_MY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,15 +18,15 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0\n" -#: appinfo/app.php:31 +#: appinfo/app.php:32 msgid "Music" msgstr "Muzik" -#: templates/music.php:3 +#: templates/music.php:3 templates/player.php:13 msgid "Play" msgstr "Main" -#: templates/music.php:4 templates/music.php:30 +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 msgid "Pause" msgstr "Jeda" @@ -34,7 +34,7 @@ msgstr "Jeda" msgid "Previous" msgstr "Sebelum" -#: templates/music.php:6 +#: templates/music.php:6 templates/player.php:15 msgid "Next" msgstr "Seterus" @@ -46,11 +46,7 @@ msgstr "Bisu" msgid "Unmute" msgstr "Nyahbisu" -#: templates/music.php:28 -msgid "Songs scanned" -msgstr "Lagu telah diimbas" - -#: templates/music.php:29 +#: templates/music.php:25 msgid "Rescan Collection" msgstr "Imbas semula koleksi" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index dda63fafd8d..4d30c8454be 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-15 14:00+0000\n" -"Last-Translator: hadrihilmi \n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 16:32+0000\n" +"Last-Translator: icewind \n" "Language-Team: Malay (Malaysia) (http://www.transifex.net/projects/p/owncloud/team/ms_MY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,30 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0\n" -#: ajax/openid.php:13 ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Ralat pengesahan" +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "" -#: ajax/openid.php:21 -msgid "OpenID Changed" -msgstr "OpenID ditukar" - -#: ajax/openid.php:23 ajax/setlanguage.php:23 +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 msgid "Invalid request" msgstr "Permintaan tidak sah" -#: ajax/setlanguage.php:21 +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID ditukar" + +#: ajax/setlanguage.php:14 msgid "Language changed" msgstr "Bahasa ditukar" +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "" + #: templates/apps.php:8 msgid "Add your application" msgstr "Tambah aplikasi anda" @@ -54,15 +62,15 @@ msgstr "oleh" msgid "Ask a question" msgstr "Tanya soalan" -#: templates/help.php:17 +#: templates/help.php:20 msgid "Problems connecting to help database." msgstr "Masalah menghubung untuk membantu pengkalan data" -#: templates/help.php:18 +#: templates/help.php:21 msgid "Go there manually." msgstr "Pergi ke sana secara manual" -#: templates/help.php:26 +#: templates/help.php:29 msgid "Answer" msgstr "Jawapan" @@ -98,36 +106,52 @@ msgstr "Papar" msgid "Change password" msgstr "Tukar kata laluan" -#: templates/personal.php:24 templates/personal.php:25 +#: templates/personal.php:24 +msgid "Email" +msgstr "" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:32 templates/personal.php:33 msgid "Language" msgstr "Bahasa" -#: templates/personal.php:30 -msgid "Help translating" -msgstr "Bantu perterjemahan" +#: templates/personal.php:38 +msgid "Help translate" +msgstr "" -#: templates/personal.php:37 +#: templates/personal.php:45 msgid "use this address to connect to your ownCloud in your file manager" msgstr "" "guna alamat ini untuk menyambung owncloud anda dalam pengurus fail anda" -#: templates/users.php:16 +#: templates/users.php:15 templates/users.php:30 msgid "Name" msgstr "Nama" -#: templates/users.php:17 +#: templates/users.php:16 templates/users.php:31 msgid "Password" msgstr "Kata laluan " -#: templates/users.php:18 templates/users.php:36 +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 msgid "Groups" msgstr "Kumpulan" -#: templates/users.php:24 +#: templates/users.php:23 msgid "Create" msgstr "Buat" -#: templates/users.php:48 +#: templates/users.php:33 +msgid "Quota" +msgstr "" + +#: templates/users.php:58 msgid "Delete" msgstr "Padam" diff --git a/l10n/nb_NO/calendar.po b/l10n/nb_NO/calendar.po index b80bf9cbb76..3021b6bb4cb 100644 --- a/l10n/nb_NO/calendar.po +++ b/l10n/nb_NO/calendar.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-15 13:45+0000\n" +"Last-Translator: icewind \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.net/projects/p/owncloud/team/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,321 +18,403 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/createcalendar.php:18 ajax/settimezone.php:19 -#: ajax/updatecalendar.php:18 -msgid "Authentication error" -msgstr "Autentifikasjonsfeil" - -#: ajax/editeventform.php:25 -msgid "Wrong calendar" +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" msgstr "" -#: ajax/settimezone.php:27 +#: ajax/settimezone.php:22 msgid "Timezone changed" msgstr "Tidssone endret" -#: ajax/settimezone.php:29 +#: ajax/settimezone.php:24 msgid "Invalid request" msgstr "Ugyldig forespørsel" -#: appinfo/app.php:19 templates/part.eventform.php:27 -#: templates/part.eventinfo.php:18 +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 msgid "Calendar" msgstr "Kalender" -#: lib/object.php:292 +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "" + +#: lib/app.php:60 lib/object.php:332 msgid "Birthday" msgstr "" -#: lib/object.php:293 +#: lib/app.php:61 lib/object.php:333 msgid "Business" msgstr "" -#: lib/object.php:294 +#: lib/app.php:62 lib/object.php:334 msgid "Call" msgstr "" -#: lib/object.php:295 +#: lib/app.php:63 lib/object.php:335 msgid "Clients" msgstr "" -#: lib/object.php:296 +#: lib/app.php:64 lib/object.php:336 msgid "Deliverer" msgstr "" -#: lib/object.php:297 +#: lib/app.php:65 lib/object.php:337 msgid "Holidays" msgstr "" -#: lib/object.php:298 +#: lib/app.php:66 lib/object.php:338 msgid "Ideas" msgstr "" -#: lib/object.php:299 +#: lib/app.php:67 lib/object.php:339 msgid "Journey" msgstr "" -#: lib/object.php:300 +#: lib/app.php:68 lib/object.php:340 msgid "Jubilee" msgstr "" -#: lib/object.php:301 +#: lib/app.php:69 lib/object.php:341 msgid "Meeting" msgstr "" -#: lib/object.php:302 +#: lib/app.php:70 lib/object.php:342 msgid "Other" msgstr "" -#: lib/object.php:303 +#: lib/app.php:71 lib/object.php:343 msgid "Personal" msgstr "" -#: lib/object.php:304 +#: lib/app.php:72 lib/object.php:344 msgid "Projects" msgstr "" -#: lib/object.php:305 +#: lib/app.php:73 lib/object.php:345 msgid "Questions" msgstr "" -#: lib/object.php:306 +#: lib/app.php:74 lib/object.php:346 msgid "Work" msgstr "" -#: lib/object.php:313 +#: lib/object.php:353 msgid "Does not repeat" msgstr "Gjentas ikke" -#: lib/object.php:314 +#: lib/object.php:354 msgid "Daily" msgstr "Daglig" -#: lib/object.php:315 +#: lib/object.php:355 msgid "Weekly" msgstr "Ukentlig" -#: lib/object.php:316 +#: lib/object.php:356 msgid "Every Weekday" msgstr "Hver ukedag" -#: lib/object.php:317 +#: lib/object.php:357 msgid "Bi-Weekly" msgstr "" -#: lib/object.php:318 +#: lib/object.php:358 msgid "Monthly" msgstr "Månedlig" -#: lib/object.php:319 +#: lib/object.php:359 msgid "Yearly" msgstr "Årlig" -#: lib/object.php:337 +#: lib/object.php:366 +msgid "never" +msgstr "" + +#: lib/object.php:367 +msgid "by occurrences" +msgstr "" + +#: lib/object.php:368 +msgid "by date" +msgstr "" + +#: lib/object.php:375 +msgid "by monthday" +msgstr "" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "" + +#: lib/object.php:383 templates/lAfix.php:3 +msgid "Monday" +msgstr "" + +#: lib/object.php:384 templates/lAfix.php:4 +msgid "Tuesday" +msgstr "" + +#: lib/object.php:385 templates/lAfix.php:5 +msgid "Wednesday" +msgstr "" + +#: lib/object.php:386 templates/lAfix.php:6 +msgid "Thursday" +msgstr "" + +#: lib/object.php:387 templates/lAfix.php:7 +msgid "Friday" +msgstr "" + +#: lib/object.php:388 templates/lAfix.php:8 +msgid "Saturday" +msgstr "" + +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "" + +#: lib/object.php:396 +msgid "events week of month" +msgstr "" + +#: lib/object.php:397 +msgid "first" +msgstr "" + +#: lib/object.php:398 +msgid "second" +msgstr "" + +#: lib/object.php:399 +msgid "third" +msgstr "" + +#: lib/object.php:400 +msgid "fourth" +msgstr "" + +#: lib/object.php:401 +msgid "fifth" +msgstr "" + +#: lib/object.php:402 +msgid "last" +msgstr "" + +#: lib/object.php:424 templates/lAfix.php:16 +msgid "January" +msgstr "" + +#: lib/object.php:425 templates/lAfix.php:17 +msgid "February" +msgstr "" + +#: lib/object.php:426 templates/lAfix.php:18 +msgid "March" +msgstr "" + +#: lib/object.php:427 templates/lAfix.php:19 +msgid "April" +msgstr "" + +#: lib/object.php:428 templates/lAfix.php:20 +msgid "May" +msgstr "" + +#: lib/object.php:429 templates/lAfix.php:21 +msgid "June" +msgstr "" + +#: lib/object.php:430 templates/lAfix.php:22 +msgid "July" +msgstr "" + +#: lib/object.php:431 templates/lAfix.php:23 +msgid "August" +msgstr "" + +#: lib/object.php:432 templates/lAfix.php:24 +msgid "September" +msgstr "" + +#: lib/object.php:433 templates/lAfix.php:25 +msgid "October" +msgstr "" + +#: lib/object.php:434 templates/lAfix.php:26 +msgid "November" +msgstr "" + +#: lib/object.php:435 templates/lAfix.php:27 +msgid "December" +msgstr "" + +#: lib/object.php:441 +msgid "by events date" +msgstr "" + +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "" + +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "" + +#: lib/object.php:444 +msgid "by day and month" +msgstr "" + +#: lib/object.php:467 msgid "Not an array" msgstr "" -#: templates/calendar.php:3 +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "" + +#: lib/search.php:40 +msgid "Cal." +msgstr "" + +#: templates/calendar.php:10 msgid "All day" msgstr "Hele dagen " -#: templates/calendar.php:32 -msgid "Sunday" -msgstr "Søndag" - -#: templates/calendar.php:32 -msgid "Monday" -msgstr "Mandag" - -#: templates/calendar.php:32 -msgid "Tuesday" -msgstr "Tirsdag" - -#: templates/calendar.php:32 -msgid "Wednesday" -msgstr "Onsdag" - -#: templates/calendar.php:32 -msgid "Thursday" -msgstr "Torsdag" - -#: templates/calendar.php:32 -msgid "Friday" -msgstr "Fredag" - -#: templates/calendar.php:32 -msgid "Saturday" -msgstr "Lørdag" - -#: templates/calendar.php:33 -msgid "Sun." -msgstr "Sø." - -#: templates/calendar.php:33 -msgid "Mon." -msgstr "Ma." - -#: templates/calendar.php:33 -msgid "Tue." -msgstr "Ti." - -#: templates/calendar.php:33 -msgid "Wed." -msgstr "On." - -#: templates/calendar.php:33 -msgid "Thu." -msgstr "To." - -#: templates/calendar.php:33 -msgid "Fri." -msgstr "Fr." - -#: templates/calendar.php:33 -msgid "Sat." -msgstr "Lø." - -#: templates/calendar.php:34 -msgid "January" -msgstr "Januar" - -#: templates/calendar.php:34 -msgid "February" -msgstr "Februar" - -#: templates/calendar.php:34 -msgid "March" -msgstr "Mars" - -#: templates/calendar.php:34 -msgid "April" -msgstr "April" - -#: templates/calendar.php:34 -msgid "May" -msgstr "Mai" - -#: templates/calendar.php:34 -msgid "June" -msgstr "Juni" - -#: templates/calendar.php:34 -msgid "July" -msgstr "Juli" - -#: templates/calendar.php:34 -msgid "August" -msgstr "August" - -#: templates/calendar.php:34 -msgid "September" -msgstr "September" - -#: templates/calendar.php:34 -msgid "October" -msgstr "Oktober" - -#: templates/calendar.php:34 -msgid "November" -msgstr "November" - -#: templates/calendar.php:34 -msgid "December" -msgstr "Desember" - -#: templates/calendar.php:35 -msgid "Jan." -msgstr "jan." - -#: templates/calendar.php:35 -msgid "Feb." -msgstr "feb." - -#: templates/calendar.php:35 -msgid "Mar." -msgstr "mar." - -#: templates/calendar.php:35 -msgid "Apr." -msgstr "apr." - -#: templates/calendar.php:35 -msgid "May." +#: templates/calendar.php:11 +msgid "Missing fields" msgstr "" -#: templates/calendar.php:35 -msgid "Jun." -msgstr "jun." +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" +msgstr "Tittel" -#: templates/calendar.php:35 -msgid "Jul." -msgstr "jul." +#: templates/calendar.php:14 +msgid "From Date" +msgstr "" -#: templates/calendar.php:35 -msgid "Aug." -msgstr "aug." +#: templates/calendar.php:15 +msgid "From Time" +msgstr "" -#: templates/calendar.php:35 -msgid "Sep." -msgstr "sep." +#: templates/calendar.php:16 +msgid "To Date" +msgstr "" -#: templates/calendar.php:35 -msgid "Oct." -msgstr "okt." +#: templates/calendar.php:17 +msgid "To Time" +msgstr "" -#: templates/calendar.php:35 -msgid "Nov." -msgstr "nov." +#: templates/calendar.php:18 +msgid "The event ends before it starts" +msgstr "" -#: templates/calendar.php:35 -msgid "Dec." -msgstr "des." +#: templates/calendar.php:19 +msgid "There was a database fail" +msgstr "" -#: templates/calendar.php:36 templates/calendar.php:50 -#: templates/calendar.php:116 +#: templates/calendar.php:52 msgid "Week" msgstr "Uke" -#: templates/calendar.php:37 templates/calendar.php:51 -msgid "Weeks" -msgstr "Uke" - -#: templates/calendar.php:38 -msgid "More before {startdate}" -msgstr "" - -#: templates/calendar.php:39 -msgid "More after {enddate}" -msgstr "" - -#: templates/calendar.php:49 -msgid "Day" -msgstr "Dag" - -#: templates/calendar.php:52 +#: templates/calendar.php:53 msgid "Month" msgstr "ned" -#: templates/calendar.php:53 +#: templates/calendar.php:54 msgid "List" msgstr "" -#: templates/calendar.php:58 +#: templates/calendar.php:59 msgid "Today" msgstr "I dag" -#: templates/calendar.php:59 +#: templates/calendar.php:60 msgid "Calendars" msgstr "Kalendre" -#: templates/calendar.php:76 templates/calendar.php:94 -msgid "Time" -msgstr "Tid" - -#: templates/calendar.php:169 +#: templates/calendar.php:78 msgid "There was a fail, while parsing the file." msgstr "" +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "" + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "" + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "" + +#: templates/lAfix.php:32 +msgid "May." +msgstr "" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "" + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "" + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "" + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "" + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "" + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "" + #: templates/part.choosecalendar.php:1 msgid "Choose active calendars" msgstr "Velg en aktiv kalender" @@ -351,12 +433,11 @@ msgid "Download" msgstr "Last ned" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.eventinfo.php:64 msgid "Edit" msgstr "Endre" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.editevent.php:8 +#: templates/part.editevent.php:9 msgid "Delete" msgstr "" @@ -376,90 +457,181 @@ msgstr "Visningsnavn" msgid "Active" msgstr "Aktiv" -#: templates/part.editcalendar.php:29 templates/part.eventform.php:88 -#: templates/part.eventinfo.php:58 -msgid "Description" -msgstr "Beskrivelse" - -#: templates/part.editcalendar.php:35 +#: templates/part.editcalendar.php:29 msgid "Calendar color" msgstr "Kalenderfarge" -#: templates/part.editcalendar.php:41 +#: templates/part.editcalendar.php:42 msgid "Save" msgstr "" -#: templates/part.editcalendar.php:41 templates/part.editevent.php:7 +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 #: templates/part.newevent.php:6 msgid "Submit" msgstr "Lagre" -#: templates/part.editcalendar.php:42 +#: templates/part.editcalendar.php:43 msgid "Cancel" msgstr "" -#: templates/part.editevent.php:1 templates/part.eventinfo.php:1 +#: templates/part.editevent.php:1 msgid "Edit an event" msgstr "Rediger en hendelse" -#: templates/part.eventform.php:3 templates/part.eventinfo.php:4 -msgid "Title" -msgstr "Tittel" +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "" #: templates/part.eventform.php:5 msgid "Title of the Event" msgstr "Hendelsestittel" -#: templates/part.eventform.php:9 templates/part.eventinfo.php:9 -msgid "Location" -msgstr "Sted" - #: templates/part.eventform.php:11 -msgid "Location of the Event" -msgstr "Hendelsessted" - -#: templates/part.eventform.php:17 templates/part.eventinfo.php:16 msgid "Category" msgstr "Kategori" -#: templates/part.eventform.php:19 +#: templates/part.eventform.php:13 msgid "Select category" msgstr "" -#: templates/part.eventform.php:45 templates/part.eventinfo.php:28 +#: templates/part.eventform.php:37 msgid "All Day Event" msgstr "Hele dagen-hendelse" -#: templates/part.eventform.php:49 templates/part.eventinfo.php:31 +#: templates/part.eventform.php:41 msgid "From" msgstr "Fra" -#: templates/part.eventform.php:57 templates/part.eventinfo.php:38 +#: templates/part.eventform.php:49 msgid "To" msgstr "Til" -#: templates/part.eventform.php:65 templates/part.eventinfo.php:44 +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "" + +#: templates/part.eventform.php:61 msgid "Repeat" msgstr "Gjenta" -#: templates/part.eventform.php:81 templates/part.eventinfo.php:51 -msgid "Attendees" -msgstr "Deltakere" +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "" -#: templates/part.eventform.php:89 +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Sted" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Hendelsessted" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Beskrivelse" + +#: templates/part.eventform.php:218 msgid "Description of the Event" msgstr "Hendelesebeskrivelse" -#: templates/part.eventinfo.php:63 -msgid "Close" -msgstr "Lukk" +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "" #: templates/part.newevent.php:1 msgid "Create a new event" msgstr "Opprett en ny hendelse" -#: templates/settings.php:11 +#: templates/settings.php:13 msgid "Timezone" msgstr "Tidssone" +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "" + +#: templates/settings.php:34 +msgid "24h" +msgstr "" + +#: templates/settings.php:35 +msgid "12h" +msgstr "" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "" + diff --git a/l10n/nb_NO/contacts.po b/l10n/nb_NO/contacts.po index 430819ce1c9..80b66d6d4f3 100644 --- a/l10n/nb_NO/contacts.po +++ b/l10n/nb_NO/contacts.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 20:10+0200\n" -"PO-Revision-Date: 2011-09-23 18:11+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.net/projects/p/owncloud/team/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,164 +17,265 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 -#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 -#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 -#: ajax/showsetproperty.php:32 photo.php:32 -msgid "You need to log in." +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." msgstr "" -#: ajax/addcard.php:37 +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: lib/app.php:52 msgid "This is not your addressbook." msgstr "" -#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 -#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 -#: ajax/showsetproperty.php:38 photo.php:39 +#: lib/app.php:61 photo.php:36 msgid "Contact could not be found." msgstr "" -#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 -#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 -#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 -msgid "This is not your contact." -msgstr "" - -#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 -#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 -msgid "vCard could not be read." -msgstr "" - -#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 -#: ajax/showsetproperty.php:62 +#: lib/app.php:89 msgid "Information about vCard is incorrect. Please reload the page." msgstr "" -#: photo.php:53 -msgid "This card is not RFC compatible." -msgstr "" - -#: photo.php:90 -msgid "This card does not contain a photo." -msgstr "" - -#: templates/index.php:8 -msgid "Add Contact" -msgstr "" - -#: templates/part.addcardform.php:5 -msgid "Group" -msgstr "" - -#: templates/part.addcardform.php:12 templates/part.property.php:3 -msgid "Name" -msgstr "" - -#: templates/part.addcardform.php:14 -msgid "Create Contact" -msgstr "" - -#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 msgid "Address" msgstr "" -#: templates/part.addpropertyform.php:5 +#: lib/app.php:102 templates/part.addcardform.php:43 msgid "Telephone" msgstr "" -#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 msgid "Email" msgstr "" -#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 msgid "Organization" msgstr "" -#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +#: lib/app.php:116 lib/app.php:123 msgid "Work" msgstr "" -#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +#: lib/app.php:117 lib/app.php:121 msgid "Home" msgstr "" -#: templates/part.addpropertyform.php:20 templates/part.property.php:48 -#: templates/part.setpropertyform.php:5 -msgid "PO Box" -msgstr "" - -#: templates/part.addpropertyform.php:21 templates/part.property.php:51 -#: templates/part.setpropertyform.php:6 -msgid "Extended" -msgstr "" - -#: templates/part.addpropertyform.php:22 templates/part.property.php:54 -#: templates/part.setpropertyform.php:7 -msgid "Street" -msgstr "" - -#: templates/part.addpropertyform.php:23 templates/part.property.php:57 -#: templates/part.setpropertyform.php:8 -msgid "City" -msgstr "" - -#: templates/part.addpropertyform.php:24 templates/part.property.php:60 -#: templates/part.setpropertyform.php:9 -msgid "Region" -msgstr "" - -#: templates/part.addpropertyform.php:25 templates/part.property.php:63 -#: templates/part.setpropertyform.php:10 -msgid "Zipcode" -msgstr "" - -#: templates/part.addpropertyform.php:26 templates/part.property.php:66 -#: templates/part.setpropertyform.php:11 -msgid "Country" -msgstr "" - -#: templates/part.addpropertyform.php:31 +#: lib/app.php:122 msgid "Mobile" msgstr "" -#: templates/part.addpropertyform.php:33 +#: lib/app.php:124 msgid "Text" msgstr "" -#: templates/part.addpropertyform.php:34 +#: lib/app.php:125 msgid "Voice" msgstr "" -#: templates/part.addpropertyform.php:35 +#: lib/app.php:126 msgid "Fax" msgstr "" -#: templates/part.addpropertyform.php:36 +#: lib/app.php:127 msgid "Video" msgstr "" -#: templates/part.addpropertyform.php:37 +#: lib/app.php:128 msgid "Pager" msgstr "" -#: templates/part.details.php:33 -msgid "Delete" +#: lib/search.php:22 +msgid "Contact" msgstr "" -#: templates/part.details.php:34 -msgid "Add Property" +#: photo.php:42 +msgid "This is not your contact." msgstr "" -#: templates/part.property.php:9 -msgid "Birthday" +#: templates/index.php:6 +msgid "Add Contact" msgstr "" -#: templates/part.property.php:29 -msgid "Phone" +#: templates/index.php:7 +msgid "Addressbooks" msgstr "" -#: templates/part.setpropertyform.php:17 +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 msgid "Edit" msgstr "" +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "" + +#: templates/part.property.php:3 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "" + diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 018c1d81e7a..f29376cf89e 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -2,14 +2,15 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# Translators: # , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-04 18:14+0200\n" -"PO-Revision-Date: 2011-09-04 16:14+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.net/projects/p/owncloud/team/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +18,51 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Brukernavn" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personlig" @@ -45,53 +91,49 @@ msgstr "Sky ikke funnet" msgid "Create an admin account" msgstr "opprett en administrator-konto" -#: templates/installation.php:21 -msgid "Username" -msgstr "Brukernavn" - -#: templates/installation.php:22 +#: templates/installation.php:26 templates/login.php:12 msgid "Password" msgstr "Passord" -#: templates/installation.php:27 -msgid "Configure the database" -msgstr "Konfigurer databasen" - -#: templates/installation.php:32 templates/installation.php:43 -#: templates/installation.php:53 -msgid "will be used" -msgstr "vil bli brukt" - -#: templates/installation.php:64 -msgid "Database user" -msgstr "Databasebruker" - -#: templates/installation.php:65 -msgid "Database password" -msgstr "Databasepassord" - -#: templates/installation.php:66 -msgid "Database name" -msgstr "Databasenavn" - -#: templates/installation.php:72 +#: templates/installation.php:32 msgid "Advanced" msgstr "Avansert" -#: templates/installation.php:75 -msgid "Database host" -msgstr "" - -#: templates/installation.php:76 +#: templates/installation.php:34 msgid "Data folder" msgstr "Datamappe" +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Konfigurer databasen" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "vil bli brukt" + #: templates/installation.php:79 +msgid "Database user" +msgstr "Databasebruker" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Databasepassord" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Databasenavn" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "" + +#: templates/installation.php:98 msgid "Finish setup" msgstr "Fullfør oppsetting" #: templates/layout.guest.php:35 -msgid "gives you freedom and control over your own data" +msgid "web services under your control" msgstr "" #: templates/layout.user.php:34 @@ -102,38 +144,22 @@ msgstr "Logg ut" msgid "Settings" msgstr "Innstillinger" -#: templates/login.php:4 +#: templates/login.php:5 msgid "Lost your password?" msgstr "" -#: templates/login.php:9 templates/login.php:13 +#: templates/login.php:15 msgid "remember" msgstr "husk" +#: templates/login.php:16 +msgid "Log in" +msgstr "" + #: templates/logout.php:1 msgid "You are logged out." msgstr "Du er logget ut" -#: templates/lostpassword.php:3 -msgid "You will receive a link to reset your password via Email." -msgstr "" - -#: templates/lostpassword.php:5 -msgid "Requested" -msgstr "" - -#: templates/lostpassword.php:8 -msgid "Login failed!" -msgstr "Klarte ikke å logge inn!" - -#: templates/lostpassword.php:10 -msgid "Username or Email" -msgstr "" - -#: templates/lostpassword.php:11 -msgid "Request reset" -msgstr "" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "forrige" @@ -142,16 +168,4 @@ msgstr "forrige" msgid "next" msgstr "neste" -#: templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "" - -#: templates/resetpassword.php:6 -msgid "New password" -msgstr "" - -#: templates/resetpassword.php:7 -msgid "Reset password" -msgstr "" - diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index c3bfd2ffbfc..67190d755f6 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.net/projects/p/owncloud/team/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,33 +18,33 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:24 +#: ajax/upload.php:19 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:20 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:21 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:22 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:23 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:24 msgid "Missing a temporary folder" msgstr "" -#: appinfo/app.php:7 +#: appinfo/app.php:8 msgid "Files" msgstr "Filer" @@ -52,43 +52,55 @@ msgstr "Filer" msgid "Maximum upload size" msgstr "Maksimum opplastingsstørrelse" +#: templates/index.php:7 +msgid "New" +msgstr "" + #: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:11 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From the web" +msgstr "" + +#: templates/index.php:22 msgid "Upload" msgstr "Last opp" -#: templates/index.php:17 -msgid "New Folder" -msgstr "Ny mappe" - -#: templates/index.php:31 +#: templates/index.php:35 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last opp noe!" -#: templates/index.php:39 +#: templates/index.php:43 msgid "Name" msgstr "Navn" -#: templates/index.php:41 +#: templates/index.php:45 msgid "Download" msgstr "Last ned" -#: templates/index.php:45 +#: templates/index.php:49 msgid "Size" msgstr "Størrelse" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Modified" msgstr "Endret" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Delete" msgstr "Slett" -#: templates/index.php:54 +#: templates/index.php:58 msgid "Upload too large" msgstr "Opplasting for stor" -#: templates/index.php:56 +#: templates/index.php:60 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." diff --git a/l10n/nb_NO/gallery.po b/l10n/nb_NO/gallery.po new file mode 100644 index 00000000000..b975c154278 --- /dev/null +++ b/l10n/nb_NO/gallery.po @@ -0,0 +1,52 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.net/projects/p/owncloud/team/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" + + diff --git a/l10n/nb_NO/media.po b/l10n/nb_NO/media.po index 490bdb6f40f..7d52e2bc2b8 100644 --- a/l10n/nb_NO/media.po +++ b/l10n/nb_NO/media.po @@ -2,14 +2,15 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# Translators: # , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-09-03 14:50+0200\n" -"PO-Revision-Date: 2011-08-28 19:34+0000\n" -"Last-Translator: anjar \n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.net/projects/p/owncloud/team/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,15 +18,15 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: appinfo/app.php:31 +#: appinfo/app.php:32 msgid "Music" msgstr "Musikk" -#: templates/music.php:3 +#: templates/music.php:3 templates/player.php:13 msgid "Play" msgstr "Spill" -#: templates/music.php:4 templates/music.php:30 +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 msgid "Pause" msgstr "Pause" @@ -33,7 +34,7 @@ msgstr "Pause" msgid "Previous" msgstr "Forrige" -#: templates/music.php:6 +#: templates/music.php:6 templates/player.php:15 msgid "Next" msgstr "Neste" @@ -45,11 +46,7 @@ msgstr "Demp" msgid "Unmute" msgstr "Skru på lyd" -#: templates/music.php:28 -msgid "Songs scanned" -msgstr "Sanger skannet" - -#: templates/music.php:29 +#: templates/music.php:25 msgid "Rescan Collection" msgstr "Skan samling på nytt" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 46743d594a2..e0b31f5828b 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -2,14 +2,15 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# Translators: # , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-09-03 14:50+0200\n" -"PO-Revision-Date: 2011-08-28 19:31+0000\n" -"Last-Translator: anjar \n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 16:32+0000\n" +"Last-Translator: icewind \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.net/projects/p/owncloud/team/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,22 +18,30 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/openid.php:13 ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Autentifikasjonsfeil" +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "" -#: ajax/openid.php:21 -msgid "OpenID Changed" -msgstr "OpenID endret" - -#: ajax/openid.php:23 ajax/setlanguage.php:23 +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 msgid "Invalid request" msgstr "Ugyldig forespørsel" -#: ajax/setlanguage.php:21 +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID endret" + +#: ajax/setlanguage.php:14 msgid "Language changed" msgstr "Språk endret" +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "" + #: templates/apps.php:8 msgid "Add your application" msgstr "Legg til din applikasjon" @@ -53,15 +62,15 @@ msgstr "av" msgid "Ask a question" msgstr "Still et spørsmål" -#: templates/help.php:17 +#: templates/help.php:20 msgid "Problems connecting to help database." msgstr "Problemer med å koble til hjelp-databasen" -#: templates/help.php:18 +#: templates/help.php:21 msgid "Go there manually." msgstr "Gå dit manuelt" -#: templates/help.php:26 +#: templates/help.php:29 msgid "Answer" msgstr "Svar" @@ -97,36 +106,52 @@ msgstr "vis" msgid "Change password" msgstr "Endre passord" -#: templates/personal.php:24 templates/personal.php:25 +#: templates/personal.php:24 +msgid "Email" +msgstr "" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:32 templates/personal.php:33 msgid "Language" msgstr "Språk" -#: templates/personal.php:30 -msgid "Help translating" -msgstr "Hjelp oss å oversett" +#: templates/personal.php:38 +msgid "Help translate" +msgstr "" -#: templates/personal.php:36 +#: templates/personal.php:45 msgid "use this address to connect to your ownCloud in your file manager" msgstr "" "bruk denne adressen for å koble til din ownCloud gjennom filhåndtereren" -#: templates/users.php:16 +#: templates/users.php:15 templates/users.php:30 msgid "Name" msgstr "Navn" -#: templates/users.php:17 +#: templates/users.php:16 templates/users.php:31 msgid "Password" msgstr "Passord" -#: templates/users.php:18 templates/users.php:36 +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 msgid "Groups" msgstr "Grupper" -#: templates/users.php:24 +#: templates/users.php:23 msgid "Create" msgstr "Opprett" -#: templates/users.php:48 +#: templates/users.php:33 +msgid "Quota" +msgstr "" + +#: templates/users.php:58 msgid "Delete" msgstr "Slett" diff --git a/l10n/nl/calendar.po b/l10n/nl/calendar.po index 8688a7d55f4..54a5c245604 100644 --- a/l10n/nl/calendar.po +++ b/l10n/nl/calendar.po @@ -4,13 +4,16 @@ # # Translators: # , 2011. +# , 2011. +# , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-25 08:31+0000\n" +"Last-Translator: jgelauff \n" "Language-Team: Dutch (http://www.transifex.net/projects/p/owncloud/team/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,351 +21,432 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/createcalendar.php:18 ajax/settimezone.php:19 -#: ajax/updatecalendar.php:18 -msgid "Authentication error" -msgstr "Foute aanvraag" +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "Nieuwe tijdszone:" -#: ajax/editeventform.php:25 -msgid "Wrong calendar" -msgstr "" - -#: ajax/settimezone.php:27 +#: ajax/settimezone.php:22 msgid "Timezone changed" -msgstr "U kunt maar een venster tegelijk openen." +msgstr "Tijdzone is veranderd" -#: ajax/settimezone.php:29 +#: ajax/settimezone.php:24 msgid "Invalid request" msgstr "Ongeldige aanvraag" -#: appinfo/app.php:19 templates/part.eventform.php:27 -#: templates/part.eventinfo.php:18 +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 msgid "Calendar" -msgstr "Weergavenaam" +msgstr "Kalender" -#: lib/object.php:292 +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Verkeerde kalender" + +#: lib/app.php:60 lib/object.php:332 msgid "Birthday" -msgstr "" +msgstr "Verjaardag" -#: lib/object.php:293 +#: lib/app.php:61 lib/object.php:333 msgid "Business" -msgstr "" +msgstr "Zakelijk" -#: lib/object.php:294 +#: lib/app.php:62 lib/object.php:334 msgid "Call" -msgstr "" +msgstr "Bellen" -#: lib/object.php:295 +#: lib/app.php:63 lib/object.php:335 msgid "Clients" -msgstr "" +msgstr "Klanten" -#: lib/object.php:296 +#: lib/app.php:64 lib/object.php:336 msgid "Deliverer" -msgstr "" +msgstr "Leverancier" -#: lib/object.php:297 +#: lib/app.php:65 lib/object.php:337 msgid "Holidays" -msgstr "" +msgstr "Vakantie" -#: lib/object.php:298 +#: lib/app.php:66 lib/object.php:338 msgid "Ideas" -msgstr "" +msgstr "Ideeën" -#: lib/object.php:299 +#: lib/app.php:67 lib/object.php:339 msgid "Journey" -msgstr "" +msgstr "Reis" -#: lib/object.php:300 +#: lib/app.php:68 lib/object.php:340 msgid "Jubilee" -msgstr "" +msgstr "Jubileum" -#: lib/object.php:301 +#: lib/app.php:69 lib/object.php:341 msgid "Meeting" -msgstr "" +msgstr "Vergadering" -#: lib/object.php:302 +#: lib/app.php:70 lib/object.php:342 msgid "Other" -msgstr "" +msgstr "Ander" -#: lib/object.php:303 +#: lib/app.php:71 lib/object.php:343 msgid "Personal" -msgstr "" +msgstr "Persoonlijk" -#: lib/object.php:304 +#: lib/app.php:72 lib/object.php:344 msgid "Projects" -msgstr "" +msgstr "Projecten" -#: lib/object.php:305 +#: lib/app.php:73 lib/object.php:345 msgid "Questions" -msgstr "" +msgstr "Vragen" -#: lib/object.php:306 +#: lib/app.php:74 lib/object.php:346 msgid "Work" -msgstr "" +msgstr "Werk" -#: lib/object.php:313 +#: lib/object.php:353 msgid "Does not repeat" msgstr "Wordt niet herhaald" -#: lib/object.php:314 +#: lib/object.php:354 msgid "Daily" msgstr "Dagelijks" -#: lib/object.php:315 +#: lib/object.php:355 msgid "Weekly" msgstr "Wekelijks" -#: lib/object.php:316 +#: lib/object.php:356 msgid "Every Weekday" msgstr "Elke weekdag" -#: lib/object.php:317 +#: lib/object.php:357 msgid "Bi-Weekly" msgstr "Tweewekelijks" -#: lib/object.php:318 +#: lib/object.php:358 msgid "Monthly" msgstr "Maandelijks" -#: lib/object.php:319 +#: lib/object.php:359 msgid "Yearly" msgstr "Jaarlijks" -#: lib/object.php:337 -msgid "Not an array" -msgstr "" +#: lib/object.php:366 +msgid "never" +msgstr "nooit meer" -#: templates/calendar.php:3 -msgid "All day" -msgstr "Tweewekelijks" +#: lib/object.php:367 +msgid "by occurrences" +msgstr "volgens gebeurtenissen" -#: templates/calendar.php:32 -msgid "Sunday" -msgstr "Zondag" +#: lib/object.php:368 +msgid "by date" +msgstr "op datum" -#: templates/calendar.php:32 +#: lib/object.php:375 +msgid "by monthday" +msgstr "per dag van de maand" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "op weekdag" + +#: lib/object.php:383 templates/lAfix.php:3 msgid "Monday" msgstr "Maandag" -#: templates/calendar.php:32 +#: lib/object.php:384 templates/lAfix.php:4 msgid "Tuesday" msgstr "Dinsdag" -#: templates/calendar.php:32 +#: lib/object.php:385 templates/lAfix.php:5 msgid "Wednesday" msgstr "Woensdag" -#: templates/calendar.php:32 +#: lib/object.php:386 templates/lAfix.php:6 msgid "Thursday" msgstr "Donderdag" -#: templates/calendar.php:32 +#: lib/object.php:387 templates/lAfix.php:7 msgid "Friday" msgstr "Vrijdag" -#: templates/calendar.php:32 +#: lib/object.php:388 templates/lAfix.php:8 msgid "Saturday" msgstr "Zaterdag" -#: templates/calendar.php:33 -msgid "Sun." -msgstr "Zo" +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "Zondag" -#: templates/calendar.php:33 -msgid "Mon." -msgstr "Ma" +#: lib/object.php:396 +msgid "events week of month" +msgstr "" -#: templates/calendar.php:33 -msgid "Tue." -msgstr "Di" +#: lib/object.php:397 +msgid "first" +msgstr "eerste" -#: templates/calendar.php:33 -msgid "Wed." -msgstr "Wo" +#: lib/object.php:398 +msgid "second" +msgstr "tweede" -#: templates/calendar.php:33 -msgid "Thu." -msgstr "Do" +#: lib/object.php:399 +msgid "third" +msgstr "derde" -#: templates/calendar.php:33 -msgid "Fri." -msgstr "Vr" +#: lib/object.php:400 +msgid "fourth" +msgstr "vierde" -#: templates/calendar.php:33 -msgid "Sat." -msgstr "Za" +#: lib/object.php:401 +msgid "fifth" +msgstr "vijfde" -#: templates/calendar.php:34 +#: lib/object.php:402 +msgid "last" +msgstr "laatste" + +#: lib/object.php:424 templates/lAfix.php:16 msgid "January" msgstr "Januari" -#: templates/calendar.php:34 +#: lib/object.php:425 templates/lAfix.php:17 msgid "February" msgstr "Februari" -#: templates/calendar.php:34 +#: lib/object.php:426 templates/lAfix.php:18 msgid "March" msgstr "Maart" -#: templates/calendar.php:34 +#: lib/object.php:427 templates/lAfix.php:19 msgid "April" msgstr "April" -#: templates/calendar.php:34 +#: lib/object.php:428 templates/lAfix.php:20 msgid "May" msgstr "Mei" -#: templates/calendar.php:34 +#: lib/object.php:429 templates/lAfix.php:21 msgid "June" msgstr "Juni" -#: templates/calendar.php:34 +#: lib/object.php:430 templates/lAfix.php:22 msgid "July" msgstr "Juli" -#: templates/calendar.php:34 +#: lib/object.php:431 templates/lAfix.php:23 msgid "August" msgstr "Augustus" -#: templates/calendar.php:34 +#: lib/object.php:432 templates/lAfix.php:24 msgid "September" msgstr "September" -#: templates/calendar.php:34 +#: lib/object.php:433 templates/lAfix.php:25 msgid "October" msgstr "Oktober" -#: templates/calendar.php:34 +#: lib/object.php:434 templates/lAfix.php:26 msgid "November" msgstr "November" -#: templates/calendar.php:34 +#: lib/object.php:435 templates/lAfix.php:27 msgid "December" msgstr "December" -#: templates/calendar.php:35 -msgid "Jan." -msgstr "Jan" +#: lib/object.php:441 +msgid "by events date" +msgstr "volgens evenementsdatum" -#: templates/calendar.php:35 -msgid "Feb." -msgstr "Feb" +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "volgens jaardag(en)" -#: templates/calendar.php:35 -msgid "Mar." -msgstr "Maa" +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "volgens weeknummer(s)" -#: templates/calendar.php:35 -msgid "Apr." -msgstr "Apr" +#: lib/object.php:444 +msgid "by day and month" +msgstr "per dag en maand" -#: templates/calendar.php:35 -msgid "May." +#: lib/object.php:467 +msgid "Not an array" +msgstr "Geen array" + +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "Datum" + +#: lib/search.php:40 +msgid "Cal." msgstr "" -#: templates/calendar.php:35 -msgid "Jun." -msgstr "Jun" +#: templates/calendar.php:10 +msgid "All day" +msgstr "Hele dag" -#: templates/calendar.php:35 -msgid "Jul." -msgstr "Jul" +#: templates/calendar.php:11 +msgid "Missing fields" +msgstr "missende velden" -#: templates/calendar.php:35 -msgid "Aug." -msgstr "Aug" +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" +msgstr "Titel" -#: templates/calendar.php:35 -msgid "Sep." -msgstr "Sept" +#: templates/calendar.php:14 +msgid "From Date" +msgstr "Begindatum" -#: templates/calendar.php:35 -msgid "Oct." -msgstr "Okt" +#: templates/calendar.php:15 +msgid "From Time" +msgstr "Begintijd" -#: templates/calendar.php:35 -msgid "Nov." -msgstr "Nov" +#: templates/calendar.php:16 +msgid "To Date" +msgstr "Einddatum" -#: templates/calendar.php:35 -msgid "Dec." -msgstr "Dec" +#: templates/calendar.php:17 +msgid "To Time" +msgstr "Eindtijd" -#: templates/calendar.php:36 templates/calendar.php:50 -#: templates/calendar.php:116 +#: templates/calendar.php:18 +msgid "The event ends before it starts" +msgstr "Het evenement eindigt voordat het begint" + +#: templates/calendar.php:19 +msgid "There was a database fail" +msgstr "Er was een databasefout" + +#: templates/calendar.php:52 msgid "Week" msgstr "Week" -#: templates/calendar.php:37 templates/calendar.php:51 -msgid "Weeks" -msgstr "Weken" - -#: templates/calendar.php:38 -msgid "More before {startdate}" -msgstr "" - -#: templates/calendar.php:39 -msgid "More after {enddate}" -msgstr "" - -#: templates/calendar.php:49 -msgid "Day" -msgstr "Dag" - -#: templates/calendar.php:52 +#: templates/calendar.php:53 msgid "Month" msgstr "Maand" -#: templates/calendar.php:53 +#: templates/calendar.php:54 msgid "List" -msgstr "" +msgstr "Lijst" -#: templates/calendar.php:58 +#: templates/calendar.php:59 msgid "Today" msgstr "Vandaag" -#: templates/calendar.php:59 +#: templates/calendar.php:60 msgid "Calendars" msgstr "Kalenders" -#: templates/calendar.php:76 templates/calendar.php:94 -msgid "Time" -msgstr "Tijd" - -#: templates/calendar.php:169 +#: templates/calendar.php:78 msgid "There was a fail, while parsing the file." msgstr "Er is een fout opgetreden bij het verwerken van het bestand." +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "Zo." + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "Ma." + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "Di." + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "Woe." + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "Do." + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "Vrij." + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "Zat." + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "Jan." + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "Feb." + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "Maart" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "April" + +#: templates/lAfix.php:32 +msgid "May." +msgstr "Mei" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "Jun." + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "Jul." + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "Aug." + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "Sept." + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "Okt." + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "Nov." + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "Dec." + #: templates/part.choosecalendar.php:1 msgid "Choose active calendars" msgstr "Kies actieve kalenders" #: templates/part.choosecalendar.php:15 msgid "New Calendar" -msgstr "" +msgstr "Nieuwe Kalender" #: templates/part.choosecalendar.php:20 #: templates/part.choosecalendar.rowfields.php:4 msgid "CalDav Link" -msgstr "" +msgstr "CalDav Link" #: templates/part.choosecalendar.rowfields.php:4 msgid "Download" msgstr "Download" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.eventinfo.php:64 msgid "Edit" msgstr "Bewerken" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.editevent.php:8 +#: templates/part.editevent.php:9 msgid "Delete" -msgstr "" +msgstr "Verwijderen" #: templates/part.editcalendar.php:9 msgid "New calendar" -msgstr "" +msgstr "Nieuwe kalender" #: templates/part.editcalendar.php:9 msgid "Edit calendar" @@ -376,90 +460,181 @@ msgstr "Weergavenaam" msgid "Active" msgstr "Actief" -#: templates/part.editcalendar.php:29 templates/part.eventform.php:88 -#: templates/part.eventinfo.php:58 -msgid "Description" -msgstr "Beschrijving" - -#: templates/part.editcalendar.php:35 +#: templates/part.editcalendar.php:29 msgid "Calendar color" msgstr "Kalender kleur" -#: templates/part.editcalendar.php:41 +#: templates/part.editcalendar.php:42 msgid "Save" -msgstr "" +msgstr "Opslaan" -#: templates/part.editcalendar.php:41 templates/part.editevent.php:7 +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 #: templates/part.newevent.php:6 msgid "Submit" msgstr "Opslaan" -#: templates/part.editcalendar.php:42 +#: templates/part.editcalendar.php:43 msgid "Cancel" -msgstr "" +msgstr "Annuleren" -#: templates/part.editevent.php:1 templates/part.eventinfo.php:1 +#: templates/part.editevent.php:1 msgid "Edit an event" -msgstr "Bewerken een evenement" +msgstr "Bewerken van een afspraak" -#: templates/part.eventform.php:3 templates/part.eventinfo.php:4 -msgid "Title" -msgstr "Titel" +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "Exporteren" #: templates/part.eventform.php:5 msgid "Title of the Event" -msgstr "Titel van het evenement" - -#: templates/part.eventform.php:9 templates/part.eventinfo.php:9 -msgid "Location" -msgstr "Locatie" +msgstr "Titel van de afspraak" #: templates/part.eventform.php:11 -msgid "Location of the Event" -msgstr "Locatie van het evenement" - -#: templates/part.eventform.php:17 templates/part.eventinfo.php:16 msgid "Category" msgstr "Categorie" -#: templates/part.eventform.php:19 +#: templates/part.eventform.php:13 msgid "Select category" -msgstr "" +msgstr "Kies een categorie" -#: templates/part.eventform.php:45 templates/part.eventinfo.php:28 +#: templates/part.eventform.php:37 msgid "All Day Event" msgstr "Hele dag" -#: templates/part.eventform.php:49 templates/part.eventinfo.php:31 +#: templates/part.eventform.php:41 msgid "From" msgstr "Van" -#: templates/part.eventform.php:57 templates/part.eventinfo.php:38 +#: templates/part.eventform.php:49 msgid "To" msgstr "Aan" -#: templates/part.eventform.php:65 templates/part.eventinfo.php:44 +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "Geavanceerde opties" + +#: templates/part.eventform.php:61 msgid "Repeat" msgstr "Herhalen" -#: templates/part.eventform.php:81 templates/part.eventinfo.php:51 -msgid "Attendees" -msgstr "Deelnemers" +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "Geavanceerd" -#: templates/part.eventform.php:89 +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "Selecteer weekdagen" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "Selecteer dagen" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "Selecteer maanden" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "Selecteer weken" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "Einde" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "gebeurtenissen" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Locatie" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Locatie van de afspraak" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Beschrijving" + +#: templates/part.eventform.php:218 msgid "Description of the Event" msgstr "Beschrijving van het evenement" -#: templates/part.eventinfo.php:63 -msgid "Close" -msgstr "Sluiten" +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "Kies de kalender" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "Importeer" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "" #: templates/part.newevent.php:1 msgid "Create a new event" -msgstr "Maak een nieuw evenement" +msgstr "Maak een nieuwe afspraak" -#: templates/settings.php:11 +#: templates/settings.php:13 msgid "Timezone" msgstr "Tijdzone" +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "Controleer altijd op aanpassingen van de tijdszone" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "Tijdformaat" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24uur" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12uur" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "CalDAV kalender synchronisatie adres:" + diff --git a/l10n/nl/contacts.po b/l10n/nl/contacts.po index 48de047d7a4..a702fa3f1af 100644 --- a/l10n/nl/contacts.po +++ b/l10n/nl/contacts.po @@ -3,13 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2011. +# , 2011. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 20:10+0200\n" -"PO-Revision-Date: 2011-09-23 18:11+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" "Language-Team: Dutch (http://www.transifex.net/projects/p/owncloud/team/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,164 +20,265 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 -#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 -#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 -#: ajax/showsetproperty.php:32 photo.php:32 -msgid "You need to log in." +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." msgstr "" -#: ajax/addcard.php:37 +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: lib/app.php:52 msgid "This is not your addressbook." -msgstr "" +msgstr "Dit is niet uw adresboek." -#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 -#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 -#: ajax/showsetproperty.php:38 photo.php:39 +#: lib/app.php:61 photo.php:36 msgid "Contact could not be found." -msgstr "" +msgstr "Contact kon niet worden gevonden." -#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 -#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 -#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 -msgid "This is not your contact." -msgstr "" - -#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 -#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 -msgid "vCard could not be read." -msgstr "" - -#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 -#: ajax/showsetproperty.php:62 +#: lib/app.php:89 msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" +msgstr "Informatie over de vCard is onjuist. Herlaad de pagina." -#: photo.php:53 -msgid "This card is not RFC compatible." -msgstr "" - -#: photo.php:90 -msgid "This card does not contain a photo." -msgstr "" - -#: templates/index.php:8 -msgid "Add Contact" -msgstr "" - -#: templates/part.addcardform.php:5 -msgid "Group" -msgstr "" - -#: templates/part.addcardform.php:12 templates/part.property.php:3 -msgid "Name" -msgstr "" - -#: templates/part.addcardform.php:14 -msgid "Create Contact" -msgstr "" - -#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 msgid "Address" -msgstr "" +msgstr "Adres" -#: templates/part.addpropertyform.php:5 +#: lib/app.php:102 templates/part.addcardform.php:43 msgid "Telephone" -msgstr "" +msgstr "Telefoon" -#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 msgid "Email" -msgstr "" +msgstr "E-mail" -#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 msgid "Organization" -msgstr "" +msgstr "Organisatie" -#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +#: lib/app.php:116 lib/app.php:123 msgid "Work" -msgstr "" +msgstr "Werk" -#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +#: lib/app.php:117 lib/app.php:121 msgid "Home" -msgstr "" +msgstr "Thuis" -#: templates/part.addpropertyform.php:20 templates/part.property.php:48 -#: templates/part.setpropertyform.php:5 -msgid "PO Box" -msgstr "" - -#: templates/part.addpropertyform.php:21 templates/part.property.php:51 -#: templates/part.setpropertyform.php:6 -msgid "Extended" -msgstr "" - -#: templates/part.addpropertyform.php:22 templates/part.property.php:54 -#: templates/part.setpropertyform.php:7 -msgid "Street" -msgstr "" - -#: templates/part.addpropertyform.php:23 templates/part.property.php:57 -#: templates/part.setpropertyform.php:8 -msgid "City" -msgstr "" - -#: templates/part.addpropertyform.php:24 templates/part.property.php:60 -#: templates/part.setpropertyform.php:9 -msgid "Region" -msgstr "" - -#: templates/part.addpropertyform.php:25 templates/part.property.php:63 -#: templates/part.setpropertyform.php:10 -msgid "Zipcode" -msgstr "" - -#: templates/part.addpropertyform.php:26 templates/part.property.php:66 -#: templates/part.setpropertyform.php:11 -msgid "Country" -msgstr "" - -#: templates/part.addpropertyform.php:31 +#: lib/app.php:122 msgid "Mobile" -msgstr "" +msgstr "Mobiel" -#: templates/part.addpropertyform.php:33 +#: lib/app.php:124 msgid "Text" -msgstr "" +msgstr "Tekst" -#: templates/part.addpropertyform.php:34 +#: lib/app.php:125 msgid "Voice" -msgstr "" +msgstr "Stem" -#: templates/part.addpropertyform.php:35 +#: lib/app.php:126 msgid "Fax" -msgstr "" +msgstr "Fax" -#: templates/part.addpropertyform.php:36 +#: lib/app.php:127 msgid "Video" -msgstr "" +msgstr "Video" -#: templates/part.addpropertyform.php:37 +#: lib/app.php:128 msgid "Pager" +msgstr "Pieper" + +#: lib/search.php:22 +msgid "Contact" msgstr "" -#: templates/part.details.php:33 -msgid "Delete" +#: photo.php:42 +msgid "This is not your contact." +msgstr "Dit is niet uw contactpersoon." + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Contact toevoegen" + +#: templates/index.php:7 +msgid "Addressbooks" msgstr "" +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Naam" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "Type" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "Postbus" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Uitgebreide" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Straat" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Stad" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Regio" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "Postcode" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "Land" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Contact aanmaken" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "Kies actief Adresboek" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "Nieuw Adresboek" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "CardDav Link" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "Download" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Bewerken" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Delete" +msgstr "Verwijderen" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "Verwijder contact" + #: templates/part.details.php:34 -msgid "Add Property" +msgid "Add" +msgstr "Voeg toe" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" msgstr "" -#: templates/part.property.php:9 +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "Weergavenaam" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "Actief" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "Opslaan" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "Opslaan" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "Anuleren" + +#: templates/part.property.php:3 msgid "Birthday" -msgstr "" +msgstr "Verjaardag" -#: templates/part.property.php:29 +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "Voorkeur" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 msgid "Phone" -msgstr "" +msgstr "Telefoon" -#: templates/part.setpropertyform.php:17 -msgid "Edit" +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "Vernieuwe" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 0a296a3685d..cca07cade19 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -6,13 +6,14 @@ # , 2011. # , 2011. # , 2011. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-15 09:12+0000\n" -"Last-Translator: isama \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-15 13:00+0000\n" +"Last-Translator: Pietje8501 \n" "Language-Team: Dutch (http://www.transifex.net/projects/p/owncloud/team/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,6 +21,52 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "reset je Owncloud wachtwoord" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "Gebruik de volgende link om je wachtwoord te resetten: {link}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" +"U ontvangt een link om je wachtwoord opnieuw in te stellen via e-mail." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Gevraagd" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Login mislukt!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Gebruikersnaam" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Resetaanvraag" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Je wachtwoord is geweizigd" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "Naar de login-pagina" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Nieuw wachtwoord" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Reset wachtwoord" + #: strings.php:5 msgid "Personal" msgstr "Persoonlijk" @@ -48,54 +95,50 @@ msgstr "Cloud niet gevonden" msgid "Create an admin account" msgstr "Maak een beheerdersaccount aan" -#: templates/installation.php:21 -msgid "Username" -msgstr "Gebruikersnaam" - -#: templates/installation.php:22 +#: templates/installation.php:26 templates/login.php:12 msgid "Password" msgstr "Wachtwoord" -#: templates/installation.php:27 -msgid "Configure the database" -msgstr "Configureer de databank" - -#: templates/installation.php:32 templates/installation.php:43 -#: templates/installation.php:53 -msgid "will be used" -msgstr "zal gebruikt worden" - -#: templates/installation.php:64 -msgid "Database user" -msgstr "Gebruiker databank" - -#: templates/installation.php:65 -msgid "Database password" -msgstr "Wachtwoord databank" - -#: templates/installation.php:66 -msgid "Database name" -msgstr "Naam databank" - -#: templates/installation.php:72 +#: templates/installation.php:32 msgid "Advanced" msgstr "Geavanceerd" -#: templates/installation.php:75 -msgid "Database host" -msgstr "Database server" - -#: templates/installation.php:76 +#: templates/installation.php:34 msgid "Data folder" msgstr "Gegevensmap" +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Configureer de databank" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "zal gebruikt worden" + #: templates/installation.php:79 +msgid "Database user" +msgstr "Gebruiker databank" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Wachtwoord databank" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Naam databank" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Database server" + +#: templates/installation.php:98 msgid "Finish setup" msgstr "Installatie afronden" #: templates/layout.guest.php:35 -msgid "gives you freedom and control over your own data" -msgstr "geeft u vrijheid en controle over uw eigen data" +msgid "web services under your control" +msgstr "webdiensten die je beheerst" #: templates/layout.user.php:34 msgid "Log out" @@ -105,38 +148,22 @@ msgstr "Afmelden" msgid "Settings" msgstr "Instellingen" -#: templates/login.php:4 +#: templates/login.php:5 msgid "Lost your password?" msgstr "Uw wachtwoord vergeten?" -#: templates/login.php:9 templates/login.php:13 +#: templates/login.php:15 msgid "remember" msgstr "onthoud gegevens" +#: templates/login.php:16 +msgid "Log in" +msgstr "Meld je aan" + #: templates/logout.php:1 msgid "You are logged out." msgstr "U bent afgemeld." -#: templates/lostpassword.php:3 -msgid "You will receive a link to reset your password via Email." -msgstr "U ontvangt een link om uw wachtwoord te wijzigen via Email" - -#: templates/lostpassword.php:5 -msgid "Requested" -msgstr "Aangevraagd" - -#: templates/lostpassword.php:8 -msgid "Login failed!" -msgstr "Aanmelden mislukt!" - -#: templates/lostpassword.php:10 -msgid "Username or Email" -msgstr "Gebruikersnaam of Email" - -#: templates/lostpassword.php:11 -msgid "Request reset" -msgstr "Wachtwoordreset aanvragen" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "vorige" @@ -145,16 +172,4 @@ msgstr "vorige" msgid "next" msgstr "volgende" -#: templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "Uw wachtwoord is opnieuw ingesteld" - -#: templates/resetpassword.php:6 -msgid "New password" -msgstr "Nieuw wachtwoord" - -#: templates/resetpassword.php:7 -msgid "Reset password" -msgstr "Reset wachtwoord" - diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 67178beb961..df8a6a366d0 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -3,15 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2011. +# , 2011. # , 2011. # , 2011. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-12 18:11+0000\n" +"Last-Translator: Pietje8501 \n" "Language-Team: Dutch (http://www.transifex.net/projects/p/owncloud/team/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,33 +22,37 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:24 +#: ajax/upload.php:19 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "Geen fout opgetreden, bestand successvol geupload." -#: ajax/upload.php:25 +#: ajax/upload.php:20 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "" +"Het geüploade bestand is groter dan de upload_max_filesize instelling in " +"php.ini" -#: ajax/upload.php:26 +#: ajax/upload.php:21 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" +"Het geüploade bestand is groter dan de MAX_FILE_SIZE richtlijn die is " +"opgegeven in de HTML-formulier" -#: ajax/upload.php:27 +#: ajax/upload.php:22 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "Het bestand is slechts gedeeltelijk geupload" -#: ajax/upload.php:28 +#: ajax/upload.php:23 msgid "No file was uploaded" -msgstr "" +msgstr "Geen bestand geüpload" -#: ajax/upload.php:29 +#: ajax/upload.php:24 msgid "Missing a temporary folder" -msgstr "" +msgstr "Een tijdelijke map mist" -#: appinfo/app.php:7 +#: appinfo/app.php:8 msgid "Files" msgstr "Bestanden" @@ -53,43 +60,55 @@ msgstr "Bestanden" msgid "Maximum upload size" msgstr "Maximale bestandsgrootte voor uploads" +#: templates/index.php:7 +msgid "New" +msgstr "Nieuw" + #: templates/index.php:10 +msgid "Text file" +msgstr "Tekstbestand" + +#: templates/index.php:11 +msgid "Folder" +msgstr "Map" + +#: templates/index.php:12 +msgid "From the web" +msgstr "Van het internet" + +#: templates/index.php:22 msgid "Upload" msgstr "Upload" -#: templates/index.php:17 -msgid "New Folder" -msgstr "Nieuwe map" - -#: templates/index.php:31 +#: templates/index.php:35 msgid "Nothing in here. Upload something!" msgstr "Er bevindt zich hier niets. Upload een bestand!" -#: templates/index.php:39 +#: templates/index.php:43 msgid "Name" msgstr "Naam" -#: templates/index.php:41 +#: templates/index.php:45 msgid "Download" msgstr "Download" -#: templates/index.php:45 +#: templates/index.php:49 msgid "Size" msgstr "Bestandsgrootte" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Modified" msgstr "Laatst aangepast" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Delete" msgstr "Verwijder" -#: templates/index.php:54 +#: templates/index.php:58 msgid "Upload too large" msgstr "Bestanden te groot" -#: templates/index.php:56 +#: templates/index.php:60 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." diff --git a/l10n/nl/gallery.po b/l10n/nl/gallery.po new file mode 100644 index 00000000000..c513524fe53 --- /dev/null +++ b/l10n/nl/gallery.po @@ -0,0 +1,52 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Dutch (http://www.transifex.net/projects/p/owncloud/team/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" + + diff --git a/l10n/nl/media.po b/l10n/nl/media.po index 21a797fe700..2a84b3f1689 100644 --- a/l10n/nl/media.po +++ b/l10n/nl/media.po @@ -2,14 +2,17 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# Translators: +# , 2011. # , 2011. +# , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-08-20 05:08+0200\n" -"PO-Revision-Date: 2011-08-20 03:08+0000\n" -"Last-Translator: JanCBorchardt \n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Dutch (http://www.transifex.net/projects/p/owncloud/team/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,39 +20,35 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: appinfo/app.php:31 +#: appinfo/app.php:32 msgid "Music" msgstr "Muziek" -#: templates/music.php:3 +#: templates/music.php:3 templates/player.php:13 msgid "Play" -msgstr "" +msgstr "Afspelen" -#: templates/music.php:4 templates/music.php:30 +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 msgid "Pause" -msgstr "Pauze" +msgstr "Pauzeer" #: templates/music.php:5 msgid "Previous" -msgstr "" +msgstr "Vorige" -#: templates/music.php:6 +#: templates/music.php:6 templates/player.php:15 msgid "Next" -msgstr "" +msgstr "Volgende" #: templates/music.php:7 msgid "Mute" -msgstr "" +msgstr "Dempen" #: templates/music.php:8 msgid "Unmute" -msgstr "" +msgstr "Dempen uit" -#: templates/music.php:28 -msgid "Songs scanned" -msgstr "nummers gescanned" - -#: templates/music.php:29 +#: templates/music.php:25 msgid "Rescan Collection" msgstr "Collectie opnieuw scannen" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 174daa75507..848d6de4c8f 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -2,14 +2,18 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # -# , 2011. +# Translators: +# , 2011. +# , 2011, 2012. +# , 2011. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-08-28 01:13+0200\n" -"PO-Revision-Date: 2011-08-27 23:13+0000\n" -"Last-Translator: JanCBorchardt \n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-16 16:36+0000\n" +"Last-Translator: icewind \n" "Language-Team: Dutch (http://www.transifex.net/projects/p/owncloud/team/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,33 +21,41 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/openid.php:13 ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Authenticatiefout." +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "mailadres aangepast" -#: ajax/openid.php:21 -msgid "OpenID Changed" -msgstr "OpenID is aangepast" - -#: ajax/openid.php:23 ajax/setlanguage.php:23 +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 msgid "Invalid request" msgstr "Ongeldig verzoek" -#: ajax/setlanguage.php:21 +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID is aangepast" + +#: ajax/setlanguage.php:14 msgid "Language changed" msgstr "Taal aangepast" +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "Nederlands" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "Logniveau" + #: templates/apps.php:8 msgid "Add your application" -msgstr "" +msgstr "Voeg uw applicatie toe" #: templates/apps.php:21 msgid "Select an App" -msgstr "Selecteer een App" +msgstr "Selecteer een app" #: templates/apps.php:23 msgid "-licensed" -msgstr "-gelicenseerd" +msgstr "-gelicentieerd" #: templates/apps.php:23 msgid "by" @@ -53,15 +65,15 @@ msgstr "door" msgid "Ask a question" msgstr "Stel een vraag" -#: templates/help.php:17 +#: templates/help.php:20 msgid "Problems connecting to help database." -msgstr "" +msgstr "Problemen bij het verbinden met de helpdatabank." -#: templates/help.php:18 +#: templates/help.php:21 msgid "Go there manually." -msgstr "" +msgstr "Ga er zelf heen." -#: templates/help.php:26 +#: templates/help.php:29 msgid "Answer" msgstr "Beantwoord" @@ -79,7 +91,7 @@ msgstr "Uw wachtwoord is aangepast" #: templates/personal.php:14 msgid "Unable to change your password" -msgstr "" +msgstr "Niet in staat om uw wachtwoord te wijzigen" #: templates/personal.php:15 msgid "Current password" @@ -95,39 +107,55 @@ msgstr "weergeven" #: templates/personal.php:18 msgid "Change password" -msgstr "Verander wachtwoord" +msgstr "Wijzig wachtwoord" #: templates/personal.php:24 +msgid "Email" +msgstr "mailadres" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "Jouw mailadres" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "Vul een mailadres in om je wachtwoord te kunnen herstellen" + +#: templates/personal.php:32 templates/personal.php:33 msgid "Language" msgstr "Taal" -#: templates/personal.php:30 -msgid "Help translating" +#: templates/personal.php:38 +msgid "Help translate" msgstr "Help met vertalen" -#: templates/personal.php:36 +#: templates/personal.php:45 msgid "use this address to connect to your ownCloud in your file manager" msgstr "" -"gebruik dit adres om verbinding te maken met ownCloud in uw bestandsbeheer " -"programa" +"gebruik dit adres om verbinding te maken met ownCloud in uw " +"bestandsbeheerprogramma" -#: templates/users.php:16 +#: templates/users.php:15 templates/users.php:30 msgid "Name" msgstr "Naam" -#: templates/users.php:17 +#: templates/users.php:16 templates/users.php:31 msgid "Password" msgstr "Wachtwoord" -#: templates/users.php:18 templates/users.php:36 +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 msgid "Groups" msgstr "Groepen" -#: templates/users.php:24 +#: templates/users.php:23 msgid "Create" msgstr "Creëer" -#: templates/users.php:48 +#: templates/users.php:33 +msgid "Quota" +msgstr "Limieten" + +#: templates/users.php:58 msgid "Delete" msgstr "verwijderen" diff --git a/l10n/nn_NO/calendar.po b/l10n/nn_NO/calendar.po new file mode 100644 index 00000000000..202075af678 --- /dev/null +++ b/l10n/nn_NO/calendar.po @@ -0,0 +1,637 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-15 13:45+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.net/projects/p/owncloud/team/nn_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nn_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "" + +#: ajax/settimezone.php:22 +msgid "Timezone changed" +msgstr "Endra tidssone" + +#: ajax/settimezone.php:24 +msgid "Invalid request" +msgstr "Ugyldig førespurnad" + +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 +msgid "Calendar" +msgstr "Kalender" + +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Feil kalender" + +#: lib/app.php:60 lib/object.php:332 +msgid "Birthday" +msgstr "Bursdag" + +#: lib/app.php:61 lib/object.php:333 +msgid "Business" +msgstr "Forretning" + +#: lib/app.php:62 lib/object.php:334 +msgid "Call" +msgstr "Telefonsamtale" + +#: lib/app.php:63 lib/object.php:335 +msgid "Clients" +msgstr "Klientar" + +#: lib/app.php:64 lib/object.php:336 +msgid "Deliverer" +msgstr "Forsending" + +#: lib/app.php:65 lib/object.php:337 +msgid "Holidays" +msgstr "Høgtid" + +#: lib/app.php:66 lib/object.php:338 +msgid "Ideas" +msgstr "Idear" + +#: lib/app.php:67 lib/object.php:339 +msgid "Journey" +msgstr "Reise" + +#: lib/app.php:68 lib/object.php:340 +msgid "Jubilee" +msgstr "Jubileum" + +#: lib/app.php:69 lib/object.php:341 +msgid "Meeting" +msgstr "Møte" + +#: lib/app.php:70 lib/object.php:342 +msgid "Other" +msgstr "Anna" + +#: lib/app.php:71 lib/object.php:343 +msgid "Personal" +msgstr "Personleg" + +#: lib/app.php:72 lib/object.php:344 +msgid "Projects" +msgstr "Prosjekt" + +#: lib/app.php:73 lib/object.php:345 +msgid "Questions" +msgstr "Spørsmål" + +#: lib/app.php:74 lib/object.php:346 +msgid "Work" +msgstr "Arbeid" + +#: lib/object.php:353 +msgid "Does not repeat" +msgstr "Ikkje gjenta" + +#: lib/object.php:354 +msgid "Daily" +msgstr "Kvar dag" + +#: lib/object.php:355 +msgid "Weekly" +msgstr "Kvar veke" + +#: lib/object.php:356 +msgid "Every Weekday" +msgstr "Kvar vekedag" + +#: lib/object.php:357 +msgid "Bi-Weekly" +msgstr "Annakvar veke" + +#: lib/object.php:358 +msgid "Monthly" +msgstr "Kvar månad" + +#: lib/object.php:359 +msgid "Yearly" +msgstr "Kvart år" + +#: lib/object.php:366 +msgid "never" +msgstr "" + +#: lib/object.php:367 +msgid "by occurrences" +msgstr "" + +#: lib/object.php:368 +msgid "by date" +msgstr "" + +#: lib/object.php:375 +msgid "by monthday" +msgstr "" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "" + +#: lib/object.php:383 templates/lAfix.php:3 +msgid "Monday" +msgstr "" + +#: lib/object.php:384 templates/lAfix.php:4 +msgid "Tuesday" +msgstr "" + +#: lib/object.php:385 templates/lAfix.php:5 +msgid "Wednesday" +msgstr "" + +#: lib/object.php:386 templates/lAfix.php:6 +msgid "Thursday" +msgstr "" + +#: lib/object.php:387 templates/lAfix.php:7 +msgid "Friday" +msgstr "" + +#: lib/object.php:388 templates/lAfix.php:8 +msgid "Saturday" +msgstr "" + +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "" + +#: lib/object.php:396 +msgid "events week of month" +msgstr "" + +#: lib/object.php:397 +msgid "first" +msgstr "" + +#: lib/object.php:398 +msgid "second" +msgstr "" + +#: lib/object.php:399 +msgid "third" +msgstr "" + +#: lib/object.php:400 +msgid "fourth" +msgstr "" + +#: lib/object.php:401 +msgid "fifth" +msgstr "" + +#: lib/object.php:402 +msgid "last" +msgstr "" + +#: lib/object.php:424 templates/lAfix.php:16 +msgid "January" +msgstr "" + +#: lib/object.php:425 templates/lAfix.php:17 +msgid "February" +msgstr "" + +#: lib/object.php:426 templates/lAfix.php:18 +msgid "March" +msgstr "" + +#: lib/object.php:427 templates/lAfix.php:19 +msgid "April" +msgstr "" + +#: lib/object.php:428 templates/lAfix.php:20 +msgid "May" +msgstr "" + +#: lib/object.php:429 templates/lAfix.php:21 +msgid "June" +msgstr "" + +#: lib/object.php:430 templates/lAfix.php:22 +msgid "July" +msgstr "" + +#: lib/object.php:431 templates/lAfix.php:23 +msgid "August" +msgstr "" + +#: lib/object.php:432 templates/lAfix.php:24 +msgid "September" +msgstr "" + +#: lib/object.php:433 templates/lAfix.php:25 +msgid "October" +msgstr "" + +#: lib/object.php:434 templates/lAfix.php:26 +msgid "November" +msgstr "" + +#: lib/object.php:435 templates/lAfix.php:27 +msgid "December" +msgstr "" + +#: lib/object.php:441 +msgid "by events date" +msgstr "" + +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "" + +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "" + +#: lib/object.php:444 +msgid "by day and month" +msgstr "" + +#: lib/object.php:467 +msgid "Not an array" +msgstr "Ikkje ein matrise" + +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "" + +#: lib/search.php:40 +msgid "Cal." +msgstr "" + +#: templates/calendar.php:10 +msgid "All day" +msgstr "Heile dagen" + +#: templates/calendar.php:11 +msgid "Missing fields" +msgstr "" + +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" +msgstr "Tittel" + +#: templates/calendar.php:14 +msgid "From Date" +msgstr "" + +#: templates/calendar.php:15 +msgid "From Time" +msgstr "" + +#: templates/calendar.php:16 +msgid "To Date" +msgstr "" + +#: templates/calendar.php:17 +msgid "To Time" +msgstr "" + +#: templates/calendar.php:18 +msgid "The event ends before it starts" +msgstr "" + +#: templates/calendar.php:19 +msgid "There was a database fail" +msgstr "" + +#: templates/calendar.php:52 +msgid "Week" +msgstr "Veke" + +#: templates/calendar.php:53 +msgid "Month" +msgstr "Månad" + +#: templates/calendar.php:54 +msgid "List" +msgstr "Liste" + +#: templates/calendar.php:59 +msgid "Today" +msgstr "I dag" + +#: templates/calendar.php:60 +msgid "Calendars" +msgstr "Kalendarar" + +#: templates/calendar.php:78 +msgid "There was a fail, while parsing the file." +msgstr "Feil ved tolking av fila." + +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "" + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "" + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "" + +#: templates/lAfix.php:32 +msgid "May." +msgstr "" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "" + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "" + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "" + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "" + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "" + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "" + +#: templates/part.choosecalendar.php:1 +msgid "Choose active calendars" +msgstr "Vel aktive kalendarar" + +#: templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "Ny kalender" + +#: templates/part.choosecalendar.php:20 +#: templates/part.choosecalendar.rowfields.php:4 +msgid "CalDav Link" +msgstr "CalDav-lenkje" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Download" +msgstr "Last ned" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Edit" +msgstr "Endra" + +#: templates/part.choosecalendar.rowfields.php:4 +#: templates/part.editevent.php:9 +msgid "Delete" +msgstr "Slett" + +#: templates/part.editcalendar.php:9 +msgid "New calendar" +msgstr "Ny kalender" + +#: templates/part.editcalendar.php:9 +msgid "Edit calendar" +msgstr "Endra kalendarar" + +#: templates/part.editcalendar.php:12 +msgid "Displayname" +msgstr "Visingsnamn" + +#: templates/part.editcalendar.php:23 +msgid "Active" +msgstr "Aktiv" + +#: templates/part.editcalendar.php:29 +msgid "Calendar color" +msgstr "Kalenderfarge" + +#: templates/part.editcalendar.php:42 +msgid "Save" +msgstr "Lagra" + +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 +#: templates/part.newevent.php:6 +msgid "Submit" +msgstr "Lagra" + +#: templates/part.editcalendar.php:43 +msgid "Cancel" +msgstr "Avbryt" + +#: templates/part.editevent.php:1 +msgid "Edit an event" +msgstr "Endra ein hending" + +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "" + +#: templates/part.eventform.php:5 +msgid "Title of the Event" +msgstr "Tittel på hendinga" + +#: templates/part.eventform.php:11 +msgid "Category" +msgstr "Kategori" + +#: templates/part.eventform.php:13 +msgid "Select category" +msgstr "Vel kategori" + +#: templates/part.eventform.php:37 +msgid "All Day Event" +msgstr "Heildagshending" + +#: templates/part.eventform.php:41 +msgid "From" +msgstr "Frå" + +#: templates/part.eventform.php:49 +msgid "To" +msgstr "Til" + +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "" + +#: templates/part.eventform.php:61 +msgid "Repeat" +msgstr "Gjenta" + +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "" + +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Stad" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Stad for hendinga" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Skildring" + +#: templates/part.eventform.php:218 +msgid "Description of the Event" +msgstr "Skildring av hendinga" + +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "" + +#: templates/part.newevent.php:1 +msgid "Create a new event" +msgstr "Opprett ei ny hending" + +#: templates/settings.php:13 +msgid "Timezone" +msgstr "Tidssone" + +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "" + +#: templates/settings.php:34 +msgid "24h" +msgstr "" + +#: templates/settings.php:35 +msgid "12h" +msgstr "" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "" + + diff --git a/l10n/nn_NO/contacts.po b/l10n/nn_NO/contacts.po new file mode 100644 index 00000000000..9d2056844ce --- /dev/null +++ b/l10n/nn_NO/contacts.po @@ -0,0 +1,282 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.net/projects/p/owncloud/team/nn_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nn_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." +msgstr "" + +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: lib/app.php:52 +msgid "This is not your addressbook." +msgstr "Dette er ikkje di adressebok." + +#: lib/app.php:61 photo.php:36 +msgid "Contact could not be found." +msgstr "Fann ikkje kontakten." + +#: lib/app.php:89 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "Informasjonen om vCard-et er feil, ver venleg og last sida på nytt." + +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 +msgid "Address" +msgstr "Adresse" + +#: lib/app.php:102 templates/part.addcardform.php:43 +msgid "Telephone" +msgstr "Telefonnummer" + +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 +msgid "Email" +msgstr "Epost" + +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 +msgid "Organization" +msgstr "Organisasjon" + +#: lib/app.php:116 lib/app.php:123 +msgid "Work" +msgstr "Arbeid" + +#: lib/app.php:117 lib/app.php:121 +msgid "Home" +msgstr "Heime" + +#: lib/app.php:122 +msgid "Mobile" +msgstr "Mobil" + +#: lib/app.php:124 +msgid "Text" +msgstr "Tekst" + +#: lib/app.php:125 +msgid "Voice" +msgstr "Tale" + +#: lib/app.php:126 +msgid "Fax" +msgstr "Faks" + +#: lib/app.php:127 +msgid "Video" +msgstr "Video" + +#: lib/app.php:128 +msgid "Pager" +msgstr "Personsøkjar" + +#: lib/search.php:22 +msgid "Contact" +msgstr "" + +#: photo.php:42 +msgid "This is not your contact." +msgstr "Dette er ikkje din kontakt." + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Legg til kontakt" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Namn" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "Postboks" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Utvida" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Gate" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Stad" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Region/fylke" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "Postnummer" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "Land" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Opprett kontakt" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Endra" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Delete" +msgstr "Slett" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "" + +#: templates/part.property.php:3 +msgid "Birthday" +msgstr "Bursdag" + +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 +msgid "Phone" +msgstr "Telefonnummer" + +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "" + + diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po new file mode 100644 index 00000000000..fe829fc91d3 --- /dev/null +++ b/l10n/nn_NO/core.po @@ -0,0 +1,171 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.net/projects/p/owncloud/team/nn_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nn_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "Du vil få ei lenkje for å nullstilla passordet via epost." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Førespurt" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Feil ved innlogging!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Brukarnamn" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Be om nullstilling" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Passordet ditt er nullstilt" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Nytt passord" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Nullstill passord" + +#: strings.php:5 +msgid "Personal" +msgstr "Personleg" + +#: strings.php:6 +msgid "Users" +msgstr "Brukarar" + +#: strings.php:7 +msgid "Apps" +msgstr "Applikasjonar" + +#: strings.php:8 +msgid "Admin" +msgstr "Administrer" + +#: strings.php:9 +msgid "Help" +msgstr "Hjelp" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "Fann ikkje skyen" + +#: templates/installation.php:20 +msgid "Create an admin account" +msgstr "Lag ein admin-konto" + +#: templates/installation.php:26 templates/login.php:12 +msgid "Password" +msgstr "Passord" + +#: templates/installation.php:32 +msgid "Advanced" +msgstr "Avansert" + +#: templates/installation.php:34 +msgid "Data folder" +msgstr "Datamappe" + +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Konfigurer databasen" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "vil bli nytta" + +#: templates/installation.php:79 +msgid "Database user" +msgstr "Databasebrukar" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Databasepassord" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Databasenamn" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Databasetenar" + +#: templates/installation.php:98 +msgid "Finish setup" +msgstr "Fullfør oppsettet" + +#: templates/layout.guest.php:35 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:34 +msgid "Log out" +msgstr "Logg ut" + +#: templates/layout.user.php:46 templates/layout.user.php:47 +msgid "Settings" +msgstr "Innstillingar" + +#: templates/login.php:5 +msgid "Lost your password?" +msgstr "Gløymt passordet?" + +#: templates/login.php:15 +msgid "remember" +msgstr "hugs" + +#: templates/login.php:16 +msgid "Log in" +msgstr "" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "Du er logga ut." + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "førre" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "neste" + + diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po new file mode 100644 index 00000000000..eb6d21f3b66 --- /dev/null +++ b/l10n/nn_NO/files.po @@ -0,0 +1,112 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.net/projects/p/owncloud/team/nn_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nn_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/upload.php:19 +msgid "There is no error, the file uploaded with success" +msgstr "Ingen feil, fila vart lasta opp" + +#: ajax/upload.php:20 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "" +"Den opplasta fila er større enn variabelen upload_max_filesize i php.ini" + +#: ajax/upload.php:21 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" +"Den opplasta fila er større enn variabelen MAX_FILE_SIZE i HTML-skjemaet" + +#: ajax/upload.php:22 +msgid "The uploaded file was only partially uploaded" +msgstr "Fila vart berre delvis lasta opp" + +#: ajax/upload.php:23 +msgid "No file was uploaded" +msgstr "Ingen filer vart lasta opp" + +#: ajax/upload.php:24 +msgid "Missing a temporary folder" +msgstr "Manglar ei mellombels mappe" + +#: appinfo/app.php:8 +msgid "Files" +msgstr "Filer" + +#: templates/admin.php:5 +msgid "Maximum upload size" +msgstr "Maksimal opplastingsstorleik" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:11 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From the web" +msgstr "" + +#: templates/index.php:22 +msgid "Upload" +msgstr "Last opp" + +#: templates/index.php:35 +msgid "Nothing in here. Upload something!" +msgstr "Ingenting her. Last noko opp!" + +#: templates/index.php:43 +msgid "Name" +msgstr "Namn" + +#: templates/index.php:45 +msgid "Download" +msgstr "Last ned" + +#: templates/index.php:49 +msgid "Size" +msgstr "Storleik" + +#: templates/index.php:50 +msgid "Modified" +msgstr "Endra" + +#: templates/index.php:50 +msgid "Delete" +msgstr "Slett" + +#: templates/index.php:58 +msgid "Upload too large" +msgstr "For stor opplasting" + +#: templates/index.php:60 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" +"Filene du prøver å laste opp er større enn maksgrensa til denne tenaren." + + diff --git a/l10n/nn_NO/gallery.po b/l10n/nn_NO/gallery.po new file mode 100644 index 00000000000..c5691499d13 --- /dev/null +++ b/l10n/nn_NO/gallery.po @@ -0,0 +1,52 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.net/projects/p/owncloud/team/nn_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nn_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" + + diff --git a/l10n/nn_NO/media.po b/l10n/nn_NO/media.po new file mode 100644 index 00000000000..8ea54227031 --- /dev/null +++ b/l10n/nn_NO/media.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.net/projects/p/owncloud/team/nn_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nn_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:32 +msgid "Music" +msgstr "Musikk" + +#: templates/music.php:3 templates/player.php:13 +msgid "Play" +msgstr "Spel" + +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 +msgid "Pause" +msgstr "Pause" + +#: templates/music.php:5 +msgid "Previous" +msgstr "Førre" + +#: templates/music.php:6 templates/player.php:15 +msgid "Next" +msgstr "Neste" + +#: templates/music.php:7 +msgid "Mute" +msgstr "Demp" + +#: templates/music.php:8 +msgid "Unmute" +msgstr "Skru på lyd" + +#: templates/music.php:25 +msgid "Rescan Collection" +msgstr "Skann samlinga på nytt" + +#: templates/music.php:37 +msgid "Artist" +msgstr "Artist" + +#: templates/music.php:38 +msgid "Album" +msgstr "Album" + +#: templates/music.php:39 +msgid "Title" +msgstr "Tittel" + + diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po new file mode 100644 index 00000000000..ea0de894d5a --- /dev/null +++ b/l10n/nn_NO/settings.po @@ -0,0 +1,157 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 16:32+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.net/projects/p/owncloud/team/nn_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nn_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "" + +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 +msgid "Invalid request" +msgstr "Ugyldig førespurnad" + +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID endra" + +#: ajax/setlanguage.php:14 +msgid "Language changed" +msgstr "Språk endra" + +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "" + +#: templates/apps.php:8 +msgid "Add your application" +msgstr "Legg til applikasjonen din" + +#: templates/apps.php:21 +msgid "Select an App" +msgstr "Vel ein applikasjon" + +#: templates/apps.php:23 +msgid "-licensed" +msgstr "-lisensiert" + +#: templates/apps.php:23 +msgid "by" +msgstr "av" + +#: templates/help.php:8 +msgid "Ask a question" +msgstr "Spør om noko" + +#: templates/help.php:20 +msgid "Problems connecting to help database." +msgstr "Problem ved tilkopling til hjelpedatabasen." + +#: templates/help.php:21 +msgid "Go there manually." +msgstr "Gå der på eigen hand." + +#: templates/help.php:29 +msgid "Answer" +msgstr "Svar" + +#: templates/personal.php:8 +msgid "You use" +msgstr "Du bruker" + +#: templates/personal.php:8 +msgid "of the available" +msgstr "av dei tilgjengelege" + +#: templates/personal.php:13 +msgid "Your password got changed" +msgstr "Passordet ditt er endra" + +#: templates/personal.php:14 +msgid "Unable to change your password" +msgstr "Klarte ikkje å endra passordet" + +#: templates/personal.php:15 +msgid "Current password" +msgstr "Passord" + +#: templates/personal.php:16 +msgid "New password" +msgstr "Nytt passord" + +#: templates/personal.php:17 +msgid "show" +msgstr "vis" + +#: templates/personal.php:18 +msgid "Change password" +msgstr "Endra passord" + +#: templates/personal.php:24 +msgid "Email" +msgstr "" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:32 templates/personal.php:33 +msgid "Language" +msgstr "Språk" + +#: templates/personal.php:38 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:45 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "bruk denne adressa for å kopla til ownCloud i filhandsamaren din" + +#: templates/users.php:15 templates/users.php:30 +msgid "Name" +msgstr "Namn" + +#: templates/users.php:16 templates/users.php:31 +msgid "Password" +msgstr "Passord" + +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 +msgid "Groups" +msgstr "Grupper" + +#: templates/users.php:23 +msgid "Create" +msgstr "Lag" + +#: templates/users.php:33 +msgid "Quota" +msgstr "" + +#: templates/users.php:58 +msgid "Delete" +msgstr "Slett" + + diff --git a/l10n/pl/calendar.po b/l10n/pl/calendar.po index d1010cebe43..cdb4d794fb1 100644 --- a/l10n/pl/calendar.po +++ b/l10n/pl/calendar.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Marcin Małecki , 2011. +# Marcin Małecki , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-15 13:45+0000\n" +"Last-Translator: icewind \n" "Language-Team: Polish (http://www.transifex.net/projects/p/owncloud/team/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,321 +18,403 @@ 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" -#: ajax/createcalendar.php:18 ajax/settimezone.php:19 -#: ajax/updatecalendar.php:18 -msgid "Authentication error" -msgstr "Błąd uwierzytelniania" +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "Nowa strefa czasowa:" -#: ajax/editeventform.php:25 -msgid "Wrong calendar" -msgstr "Zły kalendarz" - -#: ajax/settimezone.php:27 +#: ajax/settimezone.php:22 msgid "Timezone changed" msgstr "Strefa czasowa została zmieniona" -#: ajax/settimezone.php:29 +#: ajax/settimezone.php:24 msgid "Invalid request" msgstr "Nieprawidłowe żądanie" -#: appinfo/app.php:19 templates/part.eventform.php:27 -#: templates/part.eventinfo.php:18 +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 msgid "Calendar" msgstr "Kalendarz" -#: lib/object.php:292 +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Zły kalendarz" + +#: lib/app.php:60 lib/object.php:332 msgid "Birthday" msgstr "Urodziny" -#: lib/object.php:293 +#: lib/app.php:61 lib/object.php:333 msgid "Business" msgstr "Interes" -#: lib/object.php:294 +#: lib/app.php:62 lib/object.php:334 msgid "Call" msgstr "Rozmowa" -#: lib/object.php:295 +#: lib/app.php:63 lib/object.php:335 msgid "Clients" msgstr "Klienci" -#: lib/object.php:296 +#: lib/app.php:64 lib/object.php:336 msgid "Deliverer" msgstr "Przesyłka" -#: lib/object.php:297 +#: lib/app.php:65 lib/object.php:337 msgid "Holidays" msgstr "Święta" -#: lib/object.php:298 +#: lib/app.php:66 lib/object.php:338 msgid "Ideas" msgstr "Pomysły" -#: lib/object.php:299 +#: lib/app.php:67 lib/object.php:339 msgid "Journey" msgstr "Podróż" -#: lib/object.php:300 +#: lib/app.php:68 lib/object.php:340 msgid "Jubilee" msgstr "Jubileusz" -#: lib/object.php:301 +#: lib/app.php:69 lib/object.php:341 msgid "Meeting" msgstr "Spotkanie" -#: lib/object.php:302 +#: lib/app.php:70 lib/object.php:342 msgid "Other" msgstr "Inne" -#: lib/object.php:303 +#: lib/app.php:71 lib/object.php:343 msgid "Personal" msgstr "Osobisty" -#: lib/object.php:304 +#: lib/app.php:72 lib/object.php:344 msgid "Projects" msgstr "Projekty" -#: lib/object.php:305 +#: lib/app.php:73 lib/object.php:345 msgid "Questions" msgstr "Pytania" -#: lib/object.php:306 +#: lib/app.php:74 lib/object.php:346 msgid "Work" msgstr "Praca" -#: lib/object.php:313 +#: lib/object.php:353 msgid "Does not repeat" msgstr "Nie powtarza się" -#: lib/object.php:314 +#: lib/object.php:354 msgid "Daily" msgstr "Codziennie" -#: lib/object.php:315 +#: lib/object.php:355 msgid "Weekly" msgstr "Tygodniowo" -#: lib/object.php:316 +#: lib/object.php:356 msgid "Every Weekday" msgstr "Każdy dzień tygodnia" -#: lib/object.php:317 +#: lib/object.php:357 msgid "Bi-Weekly" msgstr "Dwa razy w tygodniu" -#: lib/object.php:318 +#: lib/object.php:358 msgid "Monthly" msgstr "Miesięcznie" -#: lib/object.php:319 +#: lib/object.php:359 msgid "Yearly" msgstr "Rocznie" -#: lib/object.php:337 -msgid "Not an array" -msgstr "Nie ma w tablicy" +#: lib/object.php:366 +msgid "never" +msgstr "nigdy" -#: templates/calendar.php:3 -msgid "All day" -msgstr "Cały dzień" +#: lib/object.php:367 +msgid "by occurrences" +msgstr "przez wydarzenia" -#: templates/calendar.php:32 -msgid "Sunday" -msgstr "Niedziela" +#: lib/object.php:368 +msgid "by date" +msgstr "po dacie" -#: templates/calendar.php:32 +#: lib/object.php:375 +msgid "by monthday" +msgstr "miesięcznie" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "tygodniowo" + +#: lib/object.php:383 templates/lAfix.php:3 msgid "Monday" msgstr "Poniedziałek" -#: templates/calendar.php:32 +#: lib/object.php:384 templates/lAfix.php:4 msgid "Tuesday" msgstr "Wtorek" -#: templates/calendar.php:32 +#: lib/object.php:385 templates/lAfix.php:5 msgid "Wednesday" msgstr "Środa" -#: templates/calendar.php:32 +#: lib/object.php:386 templates/lAfix.php:6 msgid "Thursday" msgstr "Czwartek" -#: templates/calendar.php:32 +#: lib/object.php:387 templates/lAfix.php:7 msgid "Friday" msgstr "Piątek" -#: templates/calendar.php:32 +#: lib/object.php:388 templates/lAfix.php:8 msgid "Saturday" msgstr "Sobota" -#: templates/calendar.php:33 -msgid "Sun." -msgstr "Nie." +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "Niedziela" -#: templates/calendar.php:33 -msgid "Mon." -msgstr "Po." +#: lib/object.php:396 +msgid "events week of month" +msgstr "" -#: templates/calendar.php:33 -msgid "Tue." -msgstr "Wt." +#: lib/object.php:397 +msgid "first" +msgstr "pierwszy" -#: templates/calendar.php:33 -msgid "Wed." -msgstr "Śr." +#: lib/object.php:398 +msgid "second" +msgstr "drugi" -#: templates/calendar.php:33 -msgid "Thu." -msgstr "Cz.." +#: lib/object.php:399 +msgid "third" +msgstr "trzeci" -#: templates/calendar.php:33 -msgid "Fri." -msgstr "Pią." +#: lib/object.php:400 +msgid "fourth" +msgstr "czwarty" -#: templates/calendar.php:33 -msgid "Sat." -msgstr "So." +#: lib/object.php:401 +msgid "fifth" +msgstr "piąty" -#: templates/calendar.php:34 +#: lib/object.php:402 +msgid "last" +msgstr "ostatni" + +#: lib/object.php:424 templates/lAfix.php:16 msgid "January" msgstr "Styczeń" -#: templates/calendar.php:34 +#: lib/object.php:425 templates/lAfix.php:17 msgid "February" msgstr "Luty" -#: templates/calendar.php:34 +#: lib/object.php:426 templates/lAfix.php:18 msgid "March" msgstr "Marzec" -#: templates/calendar.php:34 +#: lib/object.php:427 templates/lAfix.php:19 msgid "April" msgstr "Kwiecień" -#: templates/calendar.php:34 +#: lib/object.php:428 templates/lAfix.php:20 msgid "May" msgstr "Maj" -#: templates/calendar.php:34 +#: lib/object.php:429 templates/lAfix.php:21 msgid "June" msgstr "Czerwiec" -#: templates/calendar.php:34 +#: lib/object.php:430 templates/lAfix.php:22 msgid "July" msgstr "Lipiec" -#: templates/calendar.php:34 +#: lib/object.php:431 templates/lAfix.php:23 msgid "August" msgstr "Sierpień" -#: templates/calendar.php:34 +#: lib/object.php:432 templates/lAfix.php:24 msgid "September" msgstr "Wrzesień" -#: templates/calendar.php:34 +#: lib/object.php:433 templates/lAfix.php:25 msgid "October" msgstr "Październik" -#: templates/calendar.php:34 +#: lib/object.php:434 templates/lAfix.php:26 msgid "November" msgstr "Listopad" -#: templates/calendar.php:34 +#: lib/object.php:435 templates/lAfix.php:27 msgid "December" msgstr "Grudzień" -#: templates/calendar.php:35 -msgid "Jan." -msgstr "Sty." +#: lib/object.php:441 +msgid "by events date" +msgstr "po datach wydarzeń" -#: templates/calendar.php:35 -msgid "Feb." -msgstr "Lut." +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "po dniach roku" -#: templates/calendar.php:35 -msgid "Mar." -msgstr "Mar." +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "po tygodniach" -#: templates/calendar.php:35 -msgid "Apr." -msgstr "Kwi." +#: lib/object.php:444 +msgid "by day and month" +msgstr "" -#: templates/calendar.php:35 -msgid "May." -msgstr "Może." +#: lib/object.php:467 +msgid "Not an array" +msgstr "Nie ma w tablicy" -#: templates/calendar.php:35 -msgid "Jun." -msgstr "Cze." +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "Data" -#: templates/calendar.php:35 -msgid "Jul." -msgstr "Lip." +#: lib/search.php:40 +msgid "Cal." +msgstr "Kal." -#: templates/calendar.php:35 -msgid "Aug." -msgstr "Sie." +#: templates/calendar.php:10 +msgid "All day" +msgstr "Cały dzień" -#: templates/calendar.php:35 -msgid "Sep." -msgstr "Wrz." +#: templates/calendar.php:11 +msgid "Missing fields" +msgstr "Brakujące pola" -#: templates/calendar.php:35 -msgid "Oct." -msgstr "Paź." +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" +msgstr "Tytuł" -#: templates/calendar.php:35 -msgid "Nov." -msgstr "Lis." +#: templates/calendar.php:14 +msgid "From Date" +msgstr "Od dnia" -#: templates/calendar.php:35 -msgid "Dec." -msgstr "Gru." +#: templates/calendar.php:15 +msgid "From Time" +msgstr "Od czasu" -#: templates/calendar.php:36 templates/calendar.php:50 -#: templates/calendar.php:116 +#: templates/calendar.php:16 +msgid "To Date" +msgstr "Do daty" + +#: templates/calendar.php:17 +msgid "To Time" +msgstr "Do czasu" + +#: templates/calendar.php:18 +msgid "The event ends before it starts" +msgstr "Wydarzenie kończy się przed rozpoczęciem" + +#: templates/calendar.php:19 +msgid "There was a database fail" +msgstr "Awaria bazy danych" + +#: templates/calendar.php:52 msgid "Week" msgstr "Tydzień" -#: templates/calendar.php:37 templates/calendar.php:51 -msgid "Weeks" -msgstr "Tygodnie" - -#: templates/calendar.php:38 -msgid "More before {startdate}" -msgstr "Więcej przed {startdate}" - -#: templates/calendar.php:39 -msgid "More after {enddate}" -msgstr "Więcej po {enddate}" - -#: templates/calendar.php:49 -msgid "Day" -msgstr "Dzień" - -#: templates/calendar.php:52 +#: templates/calendar.php:53 msgid "Month" msgstr "Miesiąc" -#: templates/calendar.php:53 +#: templates/calendar.php:54 msgid "List" msgstr "Lista" -#: templates/calendar.php:58 +#: templates/calendar.php:59 msgid "Today" msgstr "Dzisiaj" -#: templates/calendar.php:59 +#: templates/calendar.php:60 msgid "Calendars" msgstr "Kalendarze" -#: templates/calendar.php:76 templates/calendar.php:94 -msgid "Time" -msgstr "Czas" - -#: templates/calendar.php:169 +#: templates/calendar.php:78 msgid "There was a fail, while parsing the file." msgstr "Nastąpił problem przy parsowaniu pliku.." +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "Nie." + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "Poń." + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "Wto." + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "Śro." + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "Czw." + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "Pią." + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "So." + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "Sty." + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "Lut." + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "Mar." + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "Kwi." + +#: templates/lAfix.php:32 +msgid "May." +msgstr "Maj" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "Cze." + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "Lip." + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "Sie." + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "Wrz." + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "Paź." + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "Lis." + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "Gru." + #: templates/part.choosecalendar.php:1 msgid "Choose active calendars" msgstr "Wybierz aktywne kalendarze" @@ -351,14 +433,13 @@ msgid "Download" msgstr "Pobierz" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.eventinfo.php:64 msgid "Edit" msgstr "Edytuj" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.editevent.php:8 +#: templates/part.editevent.php:9 msgid "Delete" -msgstr "" +msgstr "Usuń" #: templates/part.editcalendar.php:9 msgid "New calendar" @@ -376,90 +457,181 @@ msgstr "Displayname" msgid "Active" msgstr "Aktywny" -#: templates/part.editcalendar.php:29 templates/part.eventform.php:88 -#: templates/part.eventinfo.php:58 -msgid "Description" -msgstr "Opis" - -#: templates/part.editcalendar.php:35 +#: templates/part.editcalendar.php:29 msgid "Calendar color" msgstr "Kalendarz kolor" -#: templates/part.editcalendar.php:41 +#: templates/part.editcalendar.php:42 msgid "Save" msgstr "Zapisz" -#: templates/part.editcalendar.php:41 templates/part.editevent.php:7 +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 #: templates/part.newevent.php:6 msgid "Submit" msgstr "Prześlij" -#: templates/part.editcalendar.php:42 +#: templates/part.editcalendar.php:43 msgid "Cancel" msgstr "Anuluj" -#: templates/part.editevent.php:1 templates/part.eventinfo.php:1 +#: templates/part.editevent.php:1 msgid "Edit an event" msgstr "Edycja zdarzenia" -#: templates/part.eventform.php:3 templates/part.eventinfo.php:4 -msgid "Title" -msgstr "Tytuł" +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "Wyeksportuj" #: templates/part.eventform.php:5 msgid "Title of the Event" msgstr "Tytuł zdarzenia" -#: templates/part.eventform.php:9 templates/part.eventinfo.php:9 -msgid "Location" -msgstr "Lokalizacja" - #: templates/part.eventform.php:11 -msgid "Location of the Event" -msgstr "Lokalizacja zdarzenia" - -#: templates/part.eventform.php:17 templates/part.eventinfo.php:16 msgid "Category" msgstr "Kategoria" -#: templates/part.eventform.php:19 +#: templates/part.eventform.php:13 msgid "Select category" msgstr "Wybierz kategorię" -#: templates/part.eventform.php:45 templates/part.eventinfo.php:28 +#: templates/part.eventform.php:37 msgid "All Day Event" msgstr "Całodniowe wydarzenie" -#: templates/part.eventform.php:49 templates/part.eventinfo.php:31 +#: templates/part.eventform.php:41 msgid "From" msgstr "Z" -#: templates/part.eventform.php:57 templates/part.eventinfo.php:38 +#: templates/part.eventform.php:49 msgid "To" msgstr "Do" -#: templates/part.eventform.php:65 templates/part.eventinfo.php:44 +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "Opcje zaawansowane" + +#: templates/part.eventform.php:61 msgid "Repeat" msgstr "Powtórz" -#: templates/part.eventform.php:81 templates/part.eventinfo.php:51 -msgid "Attendees" -msgstr "Uczestnicy" +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "Zaawansowane" -#: templates/part.eventform.php:89 +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "Wybierz dni powszechne" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "Wybierz dni" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "oraz wydarzenia roku" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "oraz wydarzenia miesiąca" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "Wybierz miesiące" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "Wybierz tygodnie" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "oraz wydarzenia roku." + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "Przedział" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "Koniec" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "wystąpienia" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Lokalizacja" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Lokalizacja zdarzenia" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Opis" + +#: templates/part.eventform.php:218 msgid "Description of the Event" msgstr "Opis zdarzenia" -#: templates/part.eventinfo.php:63 -msgid "Close" -msgstr "Zamknij" +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "Proszę wybrać kalendarz" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "Import" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "" #: templates/part.newevent.php:1 msgid "Create a new event" msgstr "Stwórz nowe wydarzenie" -#: templates/settings.php:11 +#: templates/settings.php:13 msgid "Timezone" msgstr "Strefa czasowa" +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "Zawsze sprawdzaj zmiany strefy czasowej" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "Format czasu" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24h" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12h" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "Adres synchronizacji kalendarza CalDAV:" + diff --git a/l10n/pl/contacts.po b/l10n/pl/contacts.po index a8793db4831..aa910256bf5 100644 --- a/l10n/pl/contacts.po +++ b/l10n/pl/contacts.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Bartek , 2012. +# Marcin Małecki , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 20:10+0200\n" -"PO-Revision-Date: 2011-09-23 18:11+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" "Language-Team: Polish (http://www.transifex.net/projects/p/owncloud/team/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,164 +19,265 @@ 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" -#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 -#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 -#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 -#: ajax/showsetproperty.php:32 photo.php:32 -msgid "You need to log in." -msgstr "" +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." +msgstr "Błąd podczas (de)aktywacji książki" -#: ajax/addcard.php:37 +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "Wystąpił błąd podczas dodawania kontaktu" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "Nie można dodać pustego elementu" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "Przynajmniej jedno pole adresu musi być wypełnione" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "Błąd podczas dodawania elementu" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "Błąd podczas dodawania książki" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "Błąd podczas aktywacji książki adresowej" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "Błąd podczas kasowania elementu" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "Błąd podczas aktualizacji elementu" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "Błąd podczas aktualizacji książki" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "Kontakty" + +#: lib/app.php:52 msgid "This is not your addressbook." -msgstr "" +msgstr "To nie jest twoja książka adresowa." -#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 -#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 -#: ajax/showsetproperty.php:38 photo.php:39 +#: lib/app.php:61 photo.php:36 msgid "Contact could not be found." -msgstr "" +msgstr "Kontakt nie znaleziony." -#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 -#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 -#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 -msgid "This is not your contact." -msgstr "" - -#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 -#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 -msgid "vCard could not be read." -msgstr "" - -#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 -#: ajax/showsetproperty.php:62 +#: lib/app.php:89 msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" +msgstr "Informacje o vCard są nieprawidłowe. Proszę odświeżyć stronę." -#: photo.php:53 -msgid "This card is not RFC compatible." -msgstr "" - -#: photo.php:90 -msgid "This card does not contain a photo." -msgstr "" - -#: templates/index.php:8 -msgid "Add Contact" -msgstr "" - -#: templates/part.addcardform.php:5 -msgid "Group" -msgstr "" - -#: templates/part.addcardform.php:12 templates/part.property.php:3 -msgid "Name" -msgstr "" - -#: templates/part.addcardform.php:14 -msgid "Create Contact" -msgstr "" - -#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 msgid "Address" -msgstr "" +msgstr "Adres" -#: templates/part.addpropertyform.php:5 +#: lib/app.php:102 templates/part.addcardform.php:43 msgid "Telephone" -msgstr "" +msgstr "Telefon" -#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 msgid "Email" -msgstr "" +msgstr "E-mail" -#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 msgid "Organization" -msgstr "" +msgstr "Organizacja" -#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +#: lib/app.php:116 lib/app.php:123 msgid "Work" -msgstr "" +msgstr "Praca" -#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +#: lib/app.php:117 lib/app.php:121 msgid "Home" -msgstr "" +msgstr "Dom" -#: templates/part.addpropertyform.php:20 templates/part.property.php:48 -#: templates/part.setpropertyform.php:5 -msgid "PO Box" -msgstr "" - -#: templates/part.addpropertyform.php:21 templates/part.property.php:51 -#: templates/part.setpropertyform.php:6 -msgid "Extended" -msgstr "" - -#: templates/part.addpropertyform.php:22 templates/part.property.php:54 -#: templates/part.setpropertyform.php:7 -msgid "Street" -msgstr "" - -#: templates/part.addpropertyform.php:23 templates/part.property.php:57 -#: templates/part.setpropertyform.php:8 -msgid "City" -msgstr "" - -#: templates/part.addpropertyform.php:24 templates/part.property.php:60 -#: templates/part.setpropertyform.php:9 -msgid "Region" -msgstr "" - -#: templates/part.addpropertyform.php:25 templates/part.property.php:63 -#: templates/part.setpropertyform.php:10 -msgid "Zipcode" -msgstr "" - -#: templates/part.addpropertyform.php:26 templates/part.property.php:66 -#: templates/part.setpropertyform.php:11 -msgid "Country" -msgstr "" - -#: templates/part.addpropertyform.php:31 +#: lib/app.php:122 msgid "Mobile" -msgstr "" +msgstr "Komórka" -#: templates/part.addpropertyform.php:33 +#: lib/app.php:124 msgid "Text" -msgstr "" +msgstr "Tekst" -#: templates/part.addpropertyform.php:34 +#: lib/app.php:125 msgid "Voice" -msgstr "" +msgstr "Połączenie głosowe" -#: templates/part.addpropertyform.php:35 +#: lib/app.php:126 msgid "Fax" -msgstr "" +msgstr "Faks" -#: templates/part.addpropertyform.php:36 +#: lib/app.php:127 msgid "Video" -msgstr "" +msgstr "Połączenie wideo" -#: templates/part.addpropertyform.php:37 +#: lib/app.php:128 msgid "Pager" -msgstr "" +msgstr "Pager" -#: templates/part.details.php:33 +#: lib/search.php:22 +msgid "Contact" +msgstr "Kontakt" + +#: photo.php:42 +msgid "This is not your contact." +msgstr "To nie jest twój kontakt." + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Dodaj kontakt" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "Książki adresowe" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "Książka adresowa" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Nazwisko" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "Typ" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "PO Box" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Rozszerzony" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Ulica" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Miasto" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Region" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "Błąd podczas dodawania elementu" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "Kraj" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Utwórz kontakt" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "Wybierz aktywną książkę adresową" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "Nowa książka adresowa" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "Link CardDav" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "Sciągaj" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Edytuj" + +#: templates/part.chooseaddressbook.rowfields.php:5 msgid "Delete" -msgstr "" +msgstr "Usuń" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "Pobierz kontakt" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "Skasuj kontakt" #: templates/part.details.php:34 -msgid "Add Property" -msgstr "" +msgid "Add" +msgstr "Dodaj" -#: templates/part.property.php:9 +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "Nowa książka adresowa" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "Edytuj książkę" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "Nazwa wyświetlana" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "Aktywny" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "Zapisz" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "Potwierdź" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "Skasuj" + +#: templates/part.property.php:3 msgid "Birthday" -msgstr "" +msgstr "Urodziny" -#: templates/part.property.php:29 +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "Preferowane" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 msgid "Phone" -msgstr "" +msgstr "Telefon" -#: templates/part.setpropertyform.php:17 -msgid "Edit" -msgstr "" +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "Aktualizuj" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "Adres synchronizacji CardDAV:" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 4883af328b9..d18a657d96a 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -4,16 +4,16 @@ # # Translators: # Kamil Domański , 2011. -# Marcin Małecki , 2011. +# Marcin Małecki , 2011, 2012. # Marcin Małecki , 2011. # , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-05 09:18+0000\n" -"Last-Translator: mosslar \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-11 13:08+0000\n" +"Last-Translator: Marcin Małecki \n" "Language-Team: Polish (http://www.transifex.net/projects/p/owncloud/team/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,6 +21,51 @@ 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" +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "Resetowani hasła" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "Użyj tego linku do zresetowania hasła: {link}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "Otrzymasz link do resetowania hasła poprzez e-mail." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Żądane" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Logowanie nie powiodło się!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Użytkownik" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Żądanie resetowania" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Twoje hasło zostało zresetowane" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "Do strony logowania" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Nowe hasło" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Zresetuj hasło" + #: strings.php:5 msgid "Personal" msgstr "Ustawienia osobiste" @@ -49,54 +94,50 @@ msgstr "Konta nie znaleziono " msgid "Create an admin account" msgstr "Stwórz jako konto administratora" -#: templates/installation.php:21 -msgid "Username" -msgstr "Użytkownik" - -#: templates/installation.php:22 +#: templates/installation.php:26 templates/login.php:12 msgid "Password" msgstr "Hasło" -#: templates/installation.php:27 -msgid "Configure the database" -msgstr "Konfiguracja bazy danych" - -#: templates/installation.php:32 templates/installation.php:43 -#: templates/installation.php:53 -msgid "will be used" -msgstr "zostanie użyte" - -#: templates/installation.php:64 -msgid "Database user" -msgstr "Użytkownik bazy danych" - -#: templates/installation.php:65 -msgid "Database password" -msgstr "Hasło do bazy danych" - -#: templates/installation.php:66 -msgid "Database name" -msgstr "Nazwa bazy danych" - -#: templates/installation.php:72 +#: templates/installation.php:32 msgid "Advanced" msgstr "Zaawansowane" -#: templates/installation.php:75 -msgid "Database host" -msgstr "Host bazy danych" - -#: templates/installation.php:76 +#: templates/installation.php:34 msgid "Data folder" msgstr "Katalog danych" +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Konfiguracja bazy danych" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "zostanie użyte" + #: templates/installation.php:79 +msgid "Database user" +msgstr "Użytkownik bazy danych" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Hasło do bazy danych" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Nazwa bazy danych" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Host bazy danych" + +#: templates/installation.php:98 msgid "Finish setup" msgstr "Zakończ instalację" #: templates/layout.guest.php:35 -msgid "gives you freedom and control over your own data" -msgstr "zapewnia Ci wolność i kontrolę nad własnymi danymi" +msgid "web services under your control" +msgstr "usługi internetowe twoją pod kontrolą" #: templates/layout.user.php:34 msgid "Log out" @@ -106,38 +147,22 @@ msgstr "Wyloguj się" msgid "Settings" msgstr "Ustawienia" -#: templates/login.php:4 +#: templates/login.php:5 msgid "Lost your password?" msgstr "Nie pamiętasz hasła?" -#: templates/login.php:9 templates/login.php:13 +#: templates/login.php:15 msgid "remember" msgstr "zapamiętaj" +#: templates/login.php:16 +msgid "Log in" +msgstr "Zaloguj się" + #: templates/logout.php:1 msgid "You are logged out." msgstr "Zostałeś wylogowany." -#: templates/lostpassword.php:3 -msgid "You will receive a link to reset your password via Email." -msgstr "Otrzymasz link do resetowania hasła poprzez e-mail." - -#: templates/lostpassword.php:5 -msgid "Requested" -msgstr "Żądane" - -#: templates/lostpassword.php:8 -msgid "Login failed!" -msgstr "Nie udało się zalogować!" - -#: templates/lostpassword.php:10 -msgid "Username or Email" -msgstr "Użytkownik lub email" - -#: templates/lostpassword.php:11 -msgid "Request reset" -msgstr "Zresetuj hasło" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "wstecz" @@ -146,16 +171,4 @@ msgstr "wstecz" msgid "next" msgstr "dalej" -#: templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "Twoje hasło zostało zresetowane" - -#: templates/resetpassword.php:6 -msgid "New password" -msgstr "Nowe hasło" - -#: templates/resetpassword.php:7 -msgid "Reset password" -msgstr "Zresetuj hasło" - diff --git a/l10n/pl/files.po b/l10n/pl/files.po index f7bf94df142..f9d6ec7b31e 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Marcin Małecki , 2011, 2012. # , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-11 13:09+0000\n" +"Last-Translator: Marcin Małecki \n" "Language-Team: Polish (http://www.transifex.net/projects/p/owncloud/team/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,33 +19,36 @@ 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" -#: ajax/upload.php:24 +#: ajax/upload.php:19 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "Brak błędu, plik przesłany z sukcesem" -#: ajax/upload.php:25 +#: ajax/upload.php:20 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "" +"Przesłany plik przekracza ustawienie upload_max_filesize w pliku php.ini" -#: ajax/upload.php:26 +#: ajax/upload.php:21 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" +"Przesłany plik przekracza MAX_FILE_SIZE ustawienia, które zostało określono " +"w formularzu HTML" -#: ajax/upload.php:27 +#: ajax/upload.php:22 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "Plik został przesłany tylko częściowo." -#: ajax/upload.php:28 +#: ajax/upload.php:23 msgid "No file was uploaded" -msgstr "" +msgstr "Żaden plik nie został przesłany" -#: ajax/upload.php:29 +#: ajax/upload.php:24 msgid "Missing a temporary folder" -msgstr "" +msgstr "Brakuje folderu tymczasowego" -#: appinfo/app.php:7 +#: appinfo/app.php:8 msgid "Files" msgstr "Pliki" @@ -52,43 +56,55 @@ msgstr "Pliki" msgid "Maximum upload size" msgstr "Maksymalna wielkość przesyłanego pliku" +#: templates/index.php:7 +msgid "New" +msgstr "Nowy" + #: templates/index.php:10 +msgid "Text file" +msgstr "Plik tekstowy" + +#: templates/index.php:11 +msgid "Folder" +msgstr "Katalog" + +#: templates/index.php:12 +msgid "From the web" +msgstr "Z Internetu" + +#: templates/index.php:22 msgid "Upload" msgstr "Prześlij" -#: templates/index.php:17 -msgid "New Folder" -msgstr "Nowy katalog" - -#: templates/index.php:31 +#: templates/index.php:35 msgid "Nothing in here. Upload something!" msgstr "Nic tu nie ma. Prześlij jakieś pliki!" -#: templates/index.php:39 +#: templates/index.php:43 msgid "Name" msgstr "Nazwa" -#: templates/index.php:41 +#: templates/index.php:45 msgid "Download" msgstr "Ściąganie" -#: templates/index.php:45 +#: templates/index.php:49 msgid "Size" msgstr "Wielkość" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Modified" msgstr "Zmodyfikowano" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Delete" msgstr "Skasuj" -#: templates/index.php:54 +#: templates/index.php:58 msgid "Upload too large" msgstr "Przesyłany plik jest za duży" -#: templates/index.php:56 +#: templates/index.php:60 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." diff --git a/l10n/pl/gallery.po b/l10n/pl/gallery.po new file mode 100644 index 00000000000..18898432ad6 --- /dev/null +++ b/l10n/pl/gallery.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Bartek , 2012. +# Marcin Małecki , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-25 19:46+0000\n" +"Last-Translator: Bartek \n" +"Language-Team: Polish (http://www.transifex.net/projects/p/owncloud/team/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"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" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "Galeria" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "Skanuje katalogi" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "Nie znaleziono zdjęć" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "Tworzenie miniatur" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "Czy chcesz usunąć album" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "Wprowadź nową nazwę galerii" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "Przeskanuj" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "Wróć" + + diff --git a/l10n/pl/media.po b/l10n/pl/media.po index 237da744eec..425dc07722e 100644 --- a/l10n/pl/media.po +++ b/l10n/pl/media.po @@ -2,14 +2,16 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# Translators: +# Marcin Małecki , 2011. # , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-08-20 05:08+0200\n" -"PO-Revision-Date: 2011-08-20 03:08+0000\n" -"Last-Translator: JanCBorchardt \n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Polish (http://www.transifex.net/projects/p/owncloud/team/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,39 +19,35 @@ 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" -#: appinfo/app.php:31 +#: appinfo/app.php:32 msgid "Music" msgstr "Muzyka" -#: templates/music.php:3 +#: templates/music.php:3 templates/player.php:13 msgid "Play" -msgstr "" +msgstr "Odtwarzaj" -#: templates/music.php:4 templates/music.php:30 +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 msgid "Pause" msgstr "Zatrzymaj" #: templates/music.php:5 msgid "Previous" -msgstr "" +msgstr "Poprzedni" -#: templates/music.php:6 +#: templates/music.php:6 templates/player.php:15 msgid "Next" -msgstr "" +msgstr "Następny" #: templates/music.php:7 msgid "Mute" -msgstr "" +msgstr "Wycisz" #: templates/music.php:8 msgid "Unmute" -msgstr "" +msgstr "Włącz" -#: templates/music.php:28 -msgid "Songs scanned" -msgstr "Przeskanowane utwory" - -#: templates/music.php:29 +#: templates/music.php:25 msgid "Rescan Collection" msgstr "Przeskanuj kolekcję" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index dde3d9a7edf..4f0569f0332 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -2,16 +2,19 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# Translators: +# , 2012. # Kamil Domański , 2011. -# , 2011. +# Marcin Małecki , 2011, 2012. # Marcin Małecki , 2011. +# , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-08-28 01:11+0200\n" -"PO-Revision-Date: 2011-08-23 10:15+0000\n" -"Last-Translator: mosslar \n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-16 18:46+0000\n" +"Last-Translator: icewind \n" "Language-Team: Polish (http://www.transifex.net/projects/p/owncloud/team/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,22 +22,30 @@ 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" -#: ajax/openid.php:13 ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Błąd uwierzytelniania" +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "email zmieniony" -#: ajax/openid.php:21 -msgid "OpenID Changed" -msgstr "Zmieniono OpenID" - -#: ajax/openid.php:23 ajax/setlanguage.php:23 +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 msgid "Invalid request" msgstr "Nieprawidłowe żądanie" -#: ajax/setlanguage.php:21 +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "Zmieniono OpenID" + +#: ajax/setlanguage.php:14 msgid "Language changed" msgstr "Język zmieniony" +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "Polski" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "Poziom logowania" + #: templates/apps.php:8 msgid "Add your application" msgstr "Dodaj własną aplikacje" @@ -55,15 +66,15 @@ msgstr "przez" msgid "Ask a question" msgstr "Zadaj pytanie" -#: templates/help.php:17 +#: templates/help.php:20 msgid "Problems connecting to help database." msgstr "Problem z połączeniem z bazą danych." -#: templates/help.php:18 +#: templates/help.php:21 msgid "Go there manually." msgstr "Przejdź na stronę ręcznie." -#: templates/help.php:26 +#: templates/help.php:29 msgid "Answer" msgstr "Odpowiedź" @@ -79,6 +90,10 @@ msgstr "z dostępnych" msgid "Your password got changed" msgstr "Twoje hasło zostało zmienione" +#: templates/personal.php:14 +msgid "Unable to change your password" +msgstr "Nie można zmienić hasła" + #: templates/personal.php:15 msgid "Current password" msgstr "Bieżące hasło" @@ -96,36 +111,52 @@ msgid "Change password" msgstr "Zmień hasło" #: templates/personal.php:24 +msgid "Email" +msgstr "Email" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "Twój adres email" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "Podaj adres email żeby odzyskać hasło" + +#: templates/personal.php:32 templates/personal.php:33 msgid "Language" msgstr "Język" -#: templates/personal.php:30 -msgid "Help translating" +#: templates/personal.php:38 +msgid "Help translate" msgstr "Pomóż w tłumaczeniu" -#: templates/personal.php:36 +#: templates/personal.php:45 msgid "use this address to connect to your ownCloud in your file manager" msgstr "" "użyj tego adresu żeby połączyć się z twoim kontem ownCloud w menedżerze " "plików." -#: templates/users.php:16 +#: templates/users.php:15 templates/users.php:30 msgid "Name" msgstr "Nazwa" -#: templates/users.php:17 +#: templates/users.php:16 templates/users.php:31 msgid "Password" msgstr "Hasło" -#: templates/users.php:18 templates/users.php:36 +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 msgid "Groups" msgstr "Grupy" -#: templates/users.php:24 +#: templates/users.php:23 msgid "Create" msgstr "Stwórz" -#: templates/users.php:48 +#: templates/users.php:33 +msgid "Quota" +msgstr "Udział" + +#: templates/users.php:58 msgid "Delete" msgstr "Skasuj" diff --git a/l10n/pt_BR/calendar.po b/l10n/pt_BR/calendar.po index 12e2e31f03b..7c0b13f20c2 100644 --- a/l10n/pt_BR/calendar.po +++ b/l10n/pt_BR/calendar.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-15 13:45+0000\n" +"Last-Translator: icewind \n" "Language-Team: Portuguese (Brazilian) (http://www.transifex.net/projects/p/owncloud/team/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,351 +18,432 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" -#: ajax/createcalendar.php:18 ajax/settimezone.php:19 -#: ajax/updatecalendar.php:18 -msgid "Authentication error" -msgstr "Erro de autenticação" - -#: ajax/editeventform.php:25 -msgid "Wrong calendar" +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" msgstr "" -#: ajax/settimezone.php:27 +#: ajax/settimezone.php:22 msgid "Timezone changed" msgstr "Fuso horário alterado" -#: ajax/settimezone.php:29 +#: ajax/settimezone.php:24 msgid "Invalid request" msgstr "Pedido inválido" -#: appinfo/app.php:19 templates/part.eventform.php:27 -#: templates/part.eventinfo.php:18 +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 msgid "Calendar" msgstr "Calendário" -#: lib/object.php:292 +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Calendário incorreto" + +#: lib/app.php:60 lib/object.php:332 msgid "Birthday" -msgstr "" +msgstr "Aniversário" -#: lib/object.php:293 +#: lib/app.php:61 lib/object.php:333 msgid "Business" -msgstr "" +msgstr "Negócio" -#: lib/object.php:294 +#: lib/app.php:62 lib/object.php:334 msgid "Call" -msgstr "" +msgstr "Chamada" -#: lib/object.php:295 +#: lib/app.php:63 lib/object.php:335 msgid "Clients" -msgstr "" +msgstr "Clientes" -#: lib/object.php:296 +#: lib/app.php:64 lib/object.php:336 msgid "Deliverer" -msgstr "" +msgstr "Entrega" -#: lib/object.php:297 +#: lib/app.php:65 lib/object.php:337 msgid "Holidays" -msgstr "" +msgstr "Feriados" -#: lib/object.php:298 +#: lib/app.php:66 lib/object.php:338 msgid "Ideas" -msgstr "" +msgstr "Idéias" -#: lib/object.php:299 +#: lib/app.php:67 lib/object.php:339 msgid "Journey" -msgstr "" +msgstr "Jornada" -#: lib/object.php:300 +#: lib/app.php:68 lib/object.php:340 msgid "Jubilee" -msgstr "" +msgstr "Jubileu" -#: lib/object.php:301 +#: lib/app.php:69 lib/object.php:341 msgid "Meeting" -msgstr "" +msgstr "Reunião" -#: lib/object.php:302 +#: lib/app.php:70 lib/object.php:342 msgid "Other" -msgstr "" +msgstr "Outros" -#: lib/object.php:303 +#: lib/app.php:71 lib/object.php:343 msgid "Personal" -msgstr "" +msgstr "Pessoal" -#: lib/object.php:304 +#: lib/app.php:72 lib/object.php:344 msgid "Projects" -msgstr "" +msgstr "Projetos" -#: lib/object.php:305 +#: lib/app.php:73 lib/object.php:345 msgid "Questions" -msgstr "" +msgstr "Perguntas" -#: lib/object.php:306 +#: lib/app.php:74 lib/object.php:346 msgid "Work" -msgstr "" +msgstr "Trabalho" -#: lib/object.php:313 +#: lib/object.php:353 msgid "Does not repeat" msgstr "Não repetir" -#: lib/object.php:314 +#: lib/object.php:354 msgid "Daily" msgstr "Diariamente" -#: lib/object.php:315 +#: lib/object.php:355 msgid "Weekly" msgstr "Semanal" -#: lib/object.php:316 +#: lib/object.php:356 msgid "Every Weekday" msgstr "Cada dia da semana" -#: lib/object.php:317 +#: lib/object.php:357 msgid "Bi-Weekly" msgstr "De duas em duas semanas" -#: lib/object.php:318 +#: lib/object.php:358 msgid "Monthly" msgstr "Mensal" -#: lib/object.php:319 +#: lib/object.php:359 msgid "Yearly" msgstr "Anual" -#: lib/object.php:337 -msgid "Not an array" +#: lib/object.php:366 +msgid "never" msgstr "" -#: templates/calendar.php:3 +#: lib/object.php:367 +msgid "by occurrences" +msgstr "" + +#: lib/object.php:368 +msgid "by date" +msgstr "" + +#: lib/object.php:375 +msgid "by monthday" +msgstr "" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "" + +#: lib/object.php:383 templates/lAfix.php:3 +msgid "Monday" +msgstr "" + +#: lib/object.php:384 templates/lAfix.php:4 +msgid "Tuesday" +msgstr "" + +#: lib/object.php:385 templates/lAfix.php:5 +msgid "Wednesday" +msgstr "" + +#: lib/object.php:386 templates/lAfix.php:6 +msgid "Thursday" +msgstr "" + +#: lib/object.php:387 templates/lAfix.php:7 +msgid "Friday" +msgstr "" + +#: lib/object.php:388 templates/lAfix.php:8 +msgid "Saturday" +msgstr "" + +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "" + +#: lib/object.php:396 +msgid "events week of month" +msgstr "" + +#: lib/object.php:397 +msgid "first" +msgstr "" + +#: lib/object.php:398 +msgid "second" +msgstr "" + +#: lib/object.php:399 +msgid "third" +msgstr "" + +#: lib/object.php:400 +msgid "fourth" +msgstr "" + +#: lib/object.php:401 +msgid "fifth" +msgstr "" + +#: lib/object.php:402 +msgid "last" +msgstr "" + +#: lib/object.php:424 templates/lAfix.php:16 +msgid "January" +msgstr "" + +#: lib/object.php:425 templates/lAfix.php:17 +msgid "February" +msgstr "" + +#: lib/object.php:426 templates/lAfix.php:18 +msgid "March" +msgstr "" + +#: lib/object.php:427 templates/lAfix.php:19 +msgid "April" +msgstr "" + +#: lib/object.php:428 templates/lAfix.php:20 +msgid "May" +msgstr "" + +#: lib/object.php:429 templates/lAfix.php:21 +msgid "June" +msgstr "" + +#: lib/object.php:430 templates/lAfix.php:22 +msgid "July" +msgstr "" + +#: lib/object.php:431 templates/lAfix.php:23 +msgid "August" +msgstr "" + +#: lib/object.php:432 templates/lAfix.php:24 +msgid "September" +msgstr "" + +#: lib/object.php:433 templates/lAfix.php:25 +msgid "October" +msgstr "" + +#: lib/object.php:434 templates/lAfix.php:26 +msgid "November" +msgstr "" + +#: lib/object.php:435 templates/lAfix.php:27 +msgid "December" +msgstr "" + +#: lib/object.php:441 +msgid "by events date" +msgstr "" + +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "" + +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "" + +#: lib/object.php:444 +msgid "by day and month" +msgstr "" + +#: lib/object.php:467 +msgid "Not an array" +msgstr "Não é um array" + +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "" + +#: lib/search.php:40 +msgid "Cal." +msgstr "" + +#: templates/calendar.php:10 msgid "All day" msgstr "Todo o dia" -#: templates/calendar.php:32 -msgid "Sunday" -msgstr "Domingo" +#: templates/calendar.php:11 +msgid "Missing fields" +msgstr "Campos incompletos" -#: templates/calendar.php:32 -msgid "Monday" -msgstr "Segunda-feira" +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" +msgstr "Título" -#: templates/calendar.php:32 -msgid "Tuesday" -msgstr "Terça-feira" +#: templates/calendar.php:14 +msgid "From Date" +msgstr "Desde a Data" -#: templates/calendar.php:32 -msgid "Wednesday" -msgstr "Quarta-feira" +#: templates/calendar.php:15 +msgid "From Time" +msgstr "Desde a Hora" -#: templates/calendar.php:32 -msgid "Thursday" -msgstr "Quinta-feira" +#: templates/calendar.php:16 +msgid "To Date" +msgstr "Até a Data" -#: templates/calendar.php:32 -msgid "Friday" -msgstr "Sexta-feira" +#: templates/calendar.php:17 +msgid "To Time" +msgstr "Até a Hora" -#: templates/calendar.php:32 -msgid "Saturday" -msgstr "Sábado" +#: templates/calendar.php:18 +msgid "The event ends before it starts" +msgstr "O evento termina antes de começar" -#: templates/calendar.php:33 -msgid "Sun." -msgstr "Dom." +#: templates/calendar.php:19 +msgid "There was a database fail" +msgstr "Houve uma falha de banco de dados" -#: templates/calendar.php:33 -msgid "Mon." -msgstr "Seg." - -#: templates/calendar.php:33 -msgid "Tue." -msgstr "Ter." - -#: templates/calendar.php:33 -msgid "Wed." -msgstr "Qua." - -#: templates/calendar.php:33 -msgid "Thu." -msgstr "Qui." - -#: templates/calendar.php:33 -msgid "Fri." -msgstr "Sex." - -#: templates/calendar.php:33 -msgid "Sat." -msgstr "Sáb." - -#: templates/calendar.php:34 -msgid "January" -msgstr "Janeiro" - -#: templates/calendar.php:34 -msgid "February" -msgstr "Fevereiro" - -#: templates/calendar.php:34 -msgid "March" -msgstr "Março" - -#: templates/calendar.php:34 -msgid "April" -msgstr "Abril" - -#: templates/calendar.php:34 -msgid "May" -msgstr "Maio" - -#: templates/calendar.php:34 -msgid "June" -msgstr "Junho" - -#: templates/calendar.php:34 -msgid "July" -msgstr "Julho" - -#: templates/calendar.php:34 -msgid "August" -msgstr "Agosto" - -#: templates/calendar.php:34 -msgid "September" -msgstr "Setembro" - -#: templates/calendar.php:34 -msgid "October" -msgstr "Outubro" - -#: templates/calendar.php:34 -msgid "November" -msgstr "Novembro" - -#: templates/calendar.php:34 -msgid "December" -msgstr "Dezembro" - -#: templates/calendar.php:35 -msgid "Jan." -msgstr "Jan." - -#: templates/calendar.php:35 -msgid "Feb." -msgstr "Fev." - -#: templates/calendar.php:35 -msgid "Mar." -msgstr "Mar." - -#: templates/calendar.php:35 -msgid "Apr." -msgstr "Abr." - -#: templates/calendar.php:35 -msgid "May." -msgstr "" - -#: templates/calendar.php:35 -msgid "Jun." -msgstr "Jun." - -#: templates/calendar.php:35 -msgid "Jul." -msgstr "Jul." - -#: templates/calendar.php:35 -msgid "Aug." -msgstr "Ago." - -#: templates/calendar.php:35 -msgid "Sep." -msgstr "Set." - -#: templates/calendar.php:35 -msgid "Oct." -msgstr "Out." - -#: templates/calendar.php:35 -msgid "Nov." -msgstr "Nov." - -#: templates/calendar.php:35 -msgid "Dec." -msgstr "Dez." - -#: templates/calendar.php:36 templates/calendar.php:50 -#: templates/calendar.php:116 +#: templates/calendar.php:52 msgid "Week" msgstr "Semana" -#: templates/calendar.php:37 templates/calendar.php:51 -msgid "Weeks" -msgstr "Semanas" - -#: templates/calendar.php:38 -msgid "More before {startdate}" -msgstr "" - -#: templates/calendar.php:39 -msgid "More after {enddate}" -msgstr "" - -#: templates/calendar.php:49 -msgid "Day" -msgstr "Dia" - -#: templates/calendar.php:52 +#: templates/calendar.php:53 msgid "Month" msgstr "Mês" -#: templates/calendar.php:53 +#: templates/calendar.php:54 msgid "List" -msgstr "" +msgstr "Lista" -#: templates/calendar.php:58 +#: templates/calendar.php:59 msgid "Today" msgstr "Hoje" -#: templates/calendar.php:59 +#: templates/calendar.php:60 msgid "Calendars" msgstr "Calendários" -#: templates/calendar.php:76 templates/calendar.php:94 -msgid "Time" -msgstr "Tempo" - -#: templates/calendar.php:169 +#: templates/calendar.php:78 msgid "There was a fail, while parsing the file." msgstr "Houve uma falha, ao analisar o arquivo." +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "" + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "" + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "" + +#: templates/lAfix.php:32 +msgid "May." +msgstr "" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "" + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "" + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "" + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "" + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "" + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "" + #: templates/part.choosecalendar.php:1 msgid "Choose active calendars" msgstr "Escolha calendários ativos" #: templates/part.choosecalendar.php:15 msgid "New Calendar" -msgstr "" +msgstr "Novo Calendário" #: templates/part.choosecalendar.php:20 #: templates/part.choosecalendar.rowfields.php:4 msgid "CalDav Link" -msgstr "" +msgstr "Link para CalDav" #: templates/part.choosecalendar.rowfields.php:4 msgid "Download" msgstr "Baixar" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.eventinfo.php:64 msgid "Edit" msgstr "Editar" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.editevent.php:8 +#: templates/part.editevent.php:9 msgid "Delete" -msgstr "" +msgstr "Excluir" #: templates/part.editcalendar.php:9 msgid "New calendar" -msgstr "" +msgstr "Novo calendário" #: templates/part.editcalendar.php:9 msgid "Edit calendar" @@ -376,90 +457,181 @@ msgstr "Mostrar Nome" msgid "Active" msgstr "Ativo" -#: templates/part.editcalendar.php:29 templates/part.eventform.php:88 -#: templates/part.eventinfo.php:58 -msgid "Description" -msgstr "Descrição" - -#: templates/part.editcalendar.php:35 +#: templates/part.editcalendar.php:29 msgid "Calendar color" msgstr "Cor do Calendário" -#: templates/part.editcalendar.php:41 +#: templates/part.editcalendar.php:42 msgid "Save" -msgstr "" +msgstr "Salvar" -#: templates/part.editcalendar.php:41 templates/part.editevent.php:7 +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 #: templates/part.newevent.php:6 msgid "Submit" msgstr "Submeter" -#: templates/part.editcalendar.php:42 +#: templates/part.editcalendar.php:43 msgid "Cancel" -msgstr "" +msgstr "Cancelar" -#: templates/part.editevent.php:1 templates/part.eventinfo.php:1 +#: templates/part.editevent.php:1 msgid "Edit an event" msgstr "Editar um evento" -#: templates/part.eventform.php:3 templates/part.eventinfo.php:4 -msgid "Title" -msgstr "Título" +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "Exportar" #: templates/part.eventform.php:5 msgid "Title of the Event" msgstr "Título do evento" -#: templates/part.eventform.php:9 templates/part.eventinfo.php:9 -msgid "Location" -msgstr "Local" - #: templates/part.eventform.php:11 -msgid "Location of the Event" -msgstr "Local do evento" - -#: templates/part.eventform.php:17 templates/part.eventinfo.php:16 msgid "Category" msgstr "Categoria" -#: templates/part.eventform.php:19 +#: templates/part.eventform.php:13 msgid "Select category" -msgstr "" +msgstr "Selecionar categoria" -#: templates/part.eventform.php:45 templates/part.eventinfo.php:28 +#: templates/part.eventform.php:37 msgid "All Day Event" msgstr "Evento de dia inteiro" -#: templates/part.eventform.php:49 templates/part.eventinfo.php:31 +#: templates/part.eventform.php:41 msgid "From" msgstr "De" -#: templates/part.eventform.php:57 templates/part.eventinfo.php:38 +#: templates/part.eventform.php:49 msgid "To" msgstr "Para" -#: templates/part.eventform.php:65 templates/part.eventinfo.php:44 +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "Opções avançadas" + +#: templates/part.eventform.php:61 msgid "Repeat" msgstr "Repetir" -#: templates/part.eventform.php:81 templates/part.eventinfo.php:51 -msgid "Attendees" -msgstr "Participantes" +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "" -#: templates/part.eventform.php:89 +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Local" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Local do evento" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Descrição" + +#: templates/part.eventform.php:218 msgid "Description of the Event" msgstr "Descrição do Evento" -#: templates/part.eventinfo.php:63 -msgid "Close" -msgstr "Fechar" +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "Por favor, escolha o calendário" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "Importar" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "" #: templates/part.newevent.php:1 msgid "Create a new event" msgstr "Criar um novo evento" -#: templates/settings.php:11 +#: templates/settings.php:13 msgid "Timezone" msgstr "Fuso horário" +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "Formato da Hora" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24h" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12h" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "Sincronização de endereço do calendário CalDAV :" + diff --git a/l10n/pt_BR/contacts.po b/l10n/pt_BR/contacts.po index 4b44d17178d..6e7c01e85fb 100644 --- a/l10n/pt_BR/contacts.po +++ b/l10n/pt_BR/contacts.po @@ -3,178 +3,280 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Van Der Fran , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 20:10+0200\n" -"PO-Revision-Date: 2011-09-23 18:10+0000\n" -"Last-Translator: JanCBorchardt \n" -"Language-Team: Portuguese (Brazilian) (http://www.transifex.net/projects/p/owncloud/team/pt_BR/)\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.net/projects/p/owncloud/team/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" -#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 -#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 -#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 -#: ajax/showsetproperty.php:32 photo.php:32 -msgid "You need to log in." +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." msgstr "" -#: ajax/addcard.php:37 +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: lib/app.php:52 msgid "This is not your addressbook." -msgstr "" +msgstr "Este não é o seu agenda de endereços." -#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 -#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 -#: ajax/showsetproperty.php:38 photo.php:39 +#: lib/app.php:61 photo.php:36 msgid "Contact could not be found." -msgstr "" +msgstr "Contato não pôde ser encontrado." -#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 -#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 -#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 -msgid "This is not your contact." -msgstr "" - -#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 -#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 -msgid "vCard could not be read." -msgstr "" - -#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 -#: ajax/showsetproperty.php:62 +#: lib/app.php:89 msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" +msgstr "Informações sobre vCard é incorreta. Por favor, recarregue a página." -#: photo.php:53 -msgid "This card is not RFC compatible." -msgstr "" - -#: photo.php:90 -msgid "This card does not contain a photo." -msgstr "" - -#: templates/index.php:8 -msgid "Add Contact" -msgstr "" - -#: templates/part.addcardform.php:5 -msgid "Group" -msgstr "" - -#: templates/part.addcardform.php:12 templates/part.property.php:3 -msgid "Name" -msgstr "" - -#: templates/part.addcardform.php:14 -msgid "Create Contact" -msgstr "" - -#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 msgid "Address" -msgstr "" +msgstr "Endereço" -#: templates/part.addpropertyform.php:5 +#: lib/app.php:102 templates/part.addcardform.php:43 msgid "Telephone" -msgstr "" +msgstr "Telefone" -#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 msgid "Email" -msgstr "" +msgstr "E-mail" -#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 msgid "Organization" -msgstr "" +msgstr "Organização" -#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +#: lib/app.php:116 lib/app.php:123 msgid "Work" -msgstr "" +msgstr "Trabalho" -#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +#: lib/app.php:117 lib/app.php:121 msgid "Home" -msgstr "" +msgstr "Home" -#: templates/part.addpropertyform.php:20 templates/part.property.php:48 -#: templates/part.setpropertyform.php:5 -msgid "PO Box" -msgstr "" - -#: templates/part.addpropertyform.php:21 templates/part.property.php:51 -#: templates/part.setpropertyform.php:6 -msgid "Extended" -msgstr "" - -#: templates/part.addpropertyform.php:22 templates/part.property.php:54 -#: templates/part.setpropertyform.php:7 -msgid "Street" -msgstr "" - -#: templates/part.addpropertyform.php:23 templates/part.property.php:57 -#: templates/part.setpropertyform.php:8 -msgid "City" -msgstr "" - -#: templates/part.addpropertyform.php:24 templates/part.property.php:60 -#: templates/part.setpropertyform.php:9 -msgid "Region" -msgstr "" - -#: templates/part.addpropertyform.php:25 templates/part.property.php:63 -#: templates/part.setpropertyform.php:10 -msgid "Zipcode" -msgstr "" - -#: templates/part.addpropertyform.php:26 templates/part.property.php:66 -#: templates/part.setpropertyform.php:11 -msgid "Country" -msgstr "" - -#: templates/part.addpropertyform.php:31 +#: lib/app.php:122 msgid "Mobile" -msgstr "" +msgstr "Móvel" -#: templates/part.addpropertyform.php:33 +#: lib/app.php:124 msgid "Text" -msgstr "" +msgstr "Texto" -#: templates/part.addpropertyform.php:34 +#: lib/app.php:125 msgid "Voice" -msgstr "" +msgstr "Voz" -#: templates/part.addpropertyform.php:35 +#: lib/app.php:126 msgid "Fax" -msgstr "" +msgstr "Fax" -#: templates/part.addpropertyform.php:36 +#: lib/app.php:127 msgid "Video" -msgstr "" +msgstr "Vídeo" -#: templates/part.addpropertyform.php:37 +#: lib/app.php:128 msgid "Pager" +msgstr "Pager" + +#: lib/search.php:22 +msgid "Contact" msgstr "" -#: templates/part.details.php:33 +#: photo.php:42 +msgid "This is not your contact." +msgstr "Este não é o seu contato." + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Adicionar Contato" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Nome" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "Caixa Postal" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Estendido" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Rua" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Cidade" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Região" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "CEP" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "País" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Criar Contato" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Editar" + +#: templates/part.chooseaddressbook.rowfields.php:5 msgid "Delete" +msgstr "Excluir" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "" + +#: templates/part.details.php:4 +msgid "Delete contact" msgstr "" #: templates/part.details.php:34 -msgid "Add Property" +msgid "Add" msgstr "" -#: templates/part.property.php:9 +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "" + +#: templates/part.property.php:3 msgid "Birthday" +msgstr "Aniversário" + +#: templates/part.property.php:23 +msgid "Preferred" msgstr "" -#: templates/part.property.php:29 +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 msgid "Phone" +msgstr "Telefone" + +#: templates/part.setpropertyform.php:57 +msgid "Update" msgstr "" -#: templates/part.setpropertyform.php:17 -msgid "Edit" +#: templates/settings.php:4 +msgid "CardDAV syncing address:" msgstr "" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 4fbf39e1fff..c1bac3b5b54 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-06 12:04+0000\n" -"Last-Translator: vanderland \n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Portuguese (Brazilian) (http://www.transifex.net/projects/p/owncloud/team/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +19,51 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "Você receberá um link para redefinir sua senha via e-mail." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Solicitado" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Falha ao fazer o login!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Nome de Usuário" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Pedido de reposição" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Sua senha foi mudada" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Nova senha" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Mudar senha" + #: strings.php:5 msgid "Personal" msgstr "Pessoal" @@ -47,54 +92,50 @@ msgstr "Cloud não encontrado" msgid "Create an admin account" msgstr "Criar uma conta de administrador" -#: templates/installation.php:21 -msgid "Username" -msgstr "Nome de Usuário" - -#: templates/installation.php:22 +#: templates/installation.php:26 templates/login.php:12 msgid "Password" msgstr "Senha" -#: templates/installation.php:27 -msgid "Configure the database" -msgstr "Configurar o banco de dados" - -#: templates/installation.php:32 templates/installation.php:43 -#: templates/installation.php:53 -msgid "will be used" -msgstr "será usado" - -#: templates/installation.php:64 -msgid "Database user" -msgstr "Usuário de banco de dados" - -#: templates/installation.php:65 -msgid "Database password" -msgstr "Senha do banco de dados" - -#: templates/installation.php:66 -msgid "Database name" -msgstr "Nome do banco de dados" - -#: templates/installation.php:72 +#: templates/installation.php:32 msgid "Advanced" msgstr "Avançado" -#: templates/installation.php:75 -msgid "Database host" -msgstr "Banco de dados do host" - -#: templates/installation.php:76 +#: templates/installation.php:34 msgid "Data folder" msgstr "Pasta de dados" +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Configurar o banco de dados" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "será usado" + #: templates/installation.php:79 +msgid "Database user" +msgstr "Usuário de banco de dados" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Senha do banco de dados" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Nome do banco de dados" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Banco de dados do host" + +#: templates/installation.php:98 msgid "Finish setup" msgstr "Concluir configuração" #: templates/layout.guest.php:35 -msgid "gives you freedom and control over your own data" -msgstr "proporciona liberdade e controle sobre seus próprios dados" +msgid "web services under your control" +msgstr "" #: templates/layout.user.php:34 msgid "Log out" @@ -104,38 +145,22 @@ msgstr "Sair" msgid "Settings" msgstr "Configurações" -#: templates/login.php:4 +#: templates/login.php:5 msgid "Lost your password?" msgstr "Esqueçeu sua senha?" -#: templates/login.php:9 templates/login.php:13 +#: templates/login.php:15 msgid "remember" msgstr "lembrete" +#: templates/login.php:16 +msgid "Log in" +msgstr "" + #: templates/logout.php:1 msgid "You are logged out." msgstr "Você está desconectado." -#: templates/lostpassword.php:3 -msgid "You will receive a link to reset your password via Email." -msgstr "Você receberá um link para redefinir sua senha via e-mail." - -#: templates/lostpassword.php:5 -msgid "Requested" -msgstr "Solicitado" - -#: templates/lostpassword.php:8 -msgid "Login failed!" -msgstr "Login sem sucesso" - -#: templates/lostpassword.php:10 -msgid "Username or Email" -msgstr "Nome de usuário ou e-mail" - -#: templates/lostpassword.php:11 -msgid "Request reset" -msgstr "Pedido de troca" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" @@ -144,16 +169,4 @@ msgstr "anterior" msgid "next" msgstr "próximo" -#: templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "Sua senha foi trocada" - -#: templates/resetpassword.php:6 -msgid "New password" -msgstr "Nova senha" - -#: templates/resetpassword.php:7 -msgid "Reset password" -msgstr "Toca de senha" - diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index e4fba97298b..2d41a6af2b3 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Portuguese (Brazilian) (http://www.transifex.net/projects/p/owncloud/team/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,33 +18,37 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" -#: ajax/upload.php:24 +#: ajax/upload.php:19 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "Não houve nenhum erro, o arquivo foi transferido com sucesso" -#: ajax/upload.php:25 +#: ajax/upload.php:20 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "" +"O tamanho do arquivo excede o limed especifiicado em upload_max_filesize no " +"php.ini" -#: ajax/upload.php:26 +#: ajax/upload.php:21 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" +"O arquivo carregado excede o MAX_FILE_SIZE que foi especificado no " +"formulário HTML" -#: ajax/upload.php:27 +#: ajax/upload.php:22 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "O arquivo foi transferido parcialmente" -#: ajax/upload.php:28 +#: ajax/upload.php:23 msgid "No file was uploaded" -msgstr "" +msgstr "Nenhum arquivo foi transferido" -#: ajax/upload.php:29 +#: ajax/upload.php:24 msgid "Missing a temporary folder" -msgstr "" +msgstr "Pasta temporária não encontrada" -#: appinfo/app.php:7 +#: appinfo/app.php:8 msgid "Files" msgstr "Arquivos" @@ -52,43 +56,55 @@ msgstr "Arquivos" msgid "Maximum upload size" msgstr "Tamanho máximo para carregar" +#: templates/index.php:7 +msgid "New" +msgstr "" + #: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:11 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From the web" +msgstr "" + +#: templates/index.php:22 msgid "Upload" msgstr "Carregar" -#: templates/index.php:17 -msgid "New Folder" -msgstr "Nova Pasta" - -#: templates/index.php:31 +#: templates/index.php:35 msgid "Nothing in here. Upload something!" msgstr "Nada aqui.Carregar alguma coisa!" -#: templates/index.php:39 +#: templates/index.php:43 msgid "Name" msgstr "Nome" -#: templates/index.php:41 +#: templates/index.php:45 msgid "Download" msgstr "Baixar" -#: templates/index.php:45 +#: templates/index.php:49 msgid "Size" msgstr "Tamanho" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Modified" msgstr "Modificado" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Delete" msgstr "Excluir" -#: templates/index.php:54 +#: templates/index.php:58 msgid "Upload too large" msgstr "Arquivo muito grande" -#: templates/index.php:56 +#: templates/index.php:60 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." diff --git a/l10n/pt_BR/gallery.po b/l10n/pt_BR/gallery.po new file mode 100644 index 00000000000..2044b51b14b --- /dev/null +++ b/l10n/pt_BR/gallery.po @@ -0,0 +1,52 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.net/projects/p/owncloud/team/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" + + diff --git a/l10n/pt_BR/media.po b/l10n/pt_BR/media.po index 86ebcc103ff..30318ebf843 100644 --- a/l10n/pt_BR/media.po +++ b/l10n/pt_BR/media.po @@ -2,15 +2,16 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # -# Van Der Fran , 2011. +# Translators: # , 2011. +# Van Der Fran , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-08-28 01:11+0200\n" -"PO-Revision-Date: 2011-08-24 12:52+0000\n" -"Last-Translator: dudanogueira \n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Portuguese (Brazilian) (http://www.transifex.net/projects/p/owncloud/team/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,15 +19,15 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" -#: appinfo/app.php:31 +#: appinfo/app.php:32 msgid "Music" msgstr "Música" -#: templates/music.php:3 +#: templates/music.php:3 templates/player.php:13 msgid "Play" msgstr "Tocar" -#: templates/music.php:4 templates/music.php:30 +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 msgid "Pause" msgstr "Pausa" @@ -34,7 +35,7 @@ msgstr "Pausa" msgid "Previous" msgstr "Anterior" -#: templates/music.php:6 +#: templates/music.php:6 templates/player.php:15 msgid "Next" msgstr "Próximo" @@ -46,11 +47,7 @@ msgstr "Mudo" msgid "Unmute" msgstr "Não Mudo" -#: templates/music.php:28 -msgid "Songs scanned" -msgstr "Músicas encontradas" - -#: templates/music.php:29 +#: templates/music.php:25 msgid "Rescan Collection" msgstr "Atualizar a Coleção" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 987459779e9..047d0f21e5e 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-06 12:01+0000\n" -"Last-Translator: vanderland \n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 16:32+0000\n" +"Last-Translator: icewind \n" "Language-Team: Portuguese (Brazilian) (http://www.transifex.net/projects/p/owncloud/team/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,22 +19,30 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" -#: ajax/openid.php:13 ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Erro de autenticação" +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "" -#: ajax/openid.php:21 -msgid "OpenID Changed" -msgstr "Mudou OpenID" - -#: ajax/openid.php:23 ajax/setlanguage.php:23 +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 msgid "Invalid request" msgstr "Pedido inválido" -#: ajax/setlanguage.php:21 +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "Mudou OpenID" + +#: ajax/setlanguage.php:14 msgid "Language changed" msgstr "Mudou Idioma" +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "" + #: templates/apps.php:8 msgid "Add your application" msgstr "Adicionar o seu aplicativo" @@ -55,15 +63,15 @@ msgstr "por" msgid "Ask a question" msgstr "Faça uma pergunta" -#: templates/help.php:17 +#: templates/help.php:20 msgid "Problems connecting to help database." msgstr "Problemas ao conectar na base de dados." -#: templates/help.php:18 +#: templates/help.php:21 msgid "Go there manually." msgstr "Ir manualmente." -#: templates/help.php:26 +#: templates/help.php:29 msgid "Answer" msgstr "Resposta" @@ -99,37 +107,53 @@ msgstr "mostrar" msgid "Change password" msgstr "Alterar senha" -#: templates/personal.php:24 templates/personal.php:25 +#: templates/personal.php:24 +msgid "Email" +msgstr "" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:32 templates/personal.php:33 msgid "Language" msgstr "Idioma" -#: templates/personal.php:30 -msgid "Help translating" -msgstr "Ajuda na Tradução" +#: templates/personal.php:38 +msgid "Help translate" +msgstr "" -#: templates/personal.php:37 +#: templates/personal.php:45 msgid "use this address to connect to your ownCloud in your file manager" msgstr "" "use este endereço para se conectar ao seu ownCloud no seu gerenciador de " "arquvos" -#: templates/users.php:16 +#: templates/users.php:15 templates/users.php:30 msgid "Name" msgstr "Nome" -#: templates/users.php:17 +#: templates/users.php:16 templates/users.php:31 msgid "Password" msgstr "Senha" -#: templates/users.php:18 templates/users.php:36 +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 msgid "Groups" msgstr "Grupos" -#: templates/users.php:24 +#: templates/users.php:23 msgid "Create" msgstr "Criar" -#: templates/users.php:48 +#: templates/users.php:33 +msgid "Quota" +msgstr "" + +#: templates/users.php:58 msgid "Delete" msgstr "Apagar" diff --git a/l10n/pt_PT/calendar.po b/l10n/pt_PT/calendar.po index b3ee449d891..ef2e86fa585 100644 --- a/l10n/pt_PT/calendar.po +++ b/l10n/pt_PT/calendar.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-15 13:45+0000\n" +"Last-Translator: icewind \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.net/projects/p/owncloud/team/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,321 +18,403 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/createcalendar.php:18 ajax/settimezone.php:19 -#: ajax/updatecalendar.php:18 -msgid "Authentication error" +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" msgstr "" -#: ajax/editeventform.php:25 -msgid "Wrong calendar" -msgstr "" - -#: ajax/settimezone.php:27 +#: ajax/settimezone.php:22 msgid "Timezone changed" msgstr "" -#: ajax/settimezone.php:29 +#: ajax/settimezone.php:24 msgid "Invalid request" msgstr "" -#: appinfo/app.php:19 templates/part.eventform.php:27 -#: templates/part.eventinfo.php:18 +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 msgid "Calendar" +msgstr "Calendário" + +#: lib/app.php:19 +msgid "Wrong calendar" msgstr "" -#: lib/object.php:292 +#: lib/app.php:60 lib/object.php:332 msgid "Birthday" msgstr "" -#: lib/object.php:293 +#: lib/app.php:61 lib/object.php:333 msgid "Business" msgstr "" -#: lib/object.php:294 +#: lib/app.php:62 lib/object.php:334 msgid "Call" msgstr "" -#: lib/object.php:295 +#: lib/app.php:63 lib/object.php:335 msgid "Clients" msgstr "" -#: lib/object.php:296 +#: lib/app.php:64 lib/object.php:336 msgid "Deliverer" msgstr "" -#: lib/object.php:297 +#: lib/app.php:65 lib/object.php:337 msgid "Holidays" msgstr "" -#: lib/object.php:298 +#: lib/app.php:66 lib/object.php:338 msgid "Ideas" msgstr "" -#: lib/object.php:299 +#: lib/app.php:67 lib/object.php:339 msgid "Journey" msgstr "" -#: lib/object.php:300 +#: lib/app.php:68 lib/object.php:340 msgid "Jubilee" msgstr "" -#: lib/object.php:301 +#: lib/app.php:69 lib/object.php:341 msgid "Meeting" msgstr "" -#: lib/object.php:302 +#: lib/app.php:70 lib/object.php:342 msgid "Other" msgstr "" -#: lib/object.php:303 +#: lib/app.php:71 lib/object.php:343 msgid "Personal" msgstr "" -#: lib/object.php:304 +#: lib/app.php:72 lib/object.php:344 msgid "Projects" msgstr "" -#: lib/object.php:305 +#: lib/app.php:73 lib/object.php:345 msgid "Questions" msgstr "" -#: lib/object.php:306 +#: lib/app.php:74 lib/object.php:346 msgid "Work" msgstr "" -#: lib/object.php:313 +#: lib/object.php:353 msgid "Does not repeat" msgstr "" -#: lib/object.php:314 +#: lib/object.php:354 msgid "Daily" msgstr "" -#: lib/object.php:315 +#: lib/object.php:355 msgid "Weekly" msgstr "" -#: lib/object.php:316 +#: lib/object.php:356 msgid "Every Weekday" msgstr "" -#: lib/object.php:317 +#: lib/object.php:357 msgid "Bi-Weekly" msgstr "" -#: lib/object.php:318 +#: lib/object.php:358 msgid "Monthly" msgstr "" -#: lib/object.php:319 +#: lib/object.php:359 msgid "Yearly" msgstr "" -#: lib/object.php:337 -msgid "Not an array" +#: lib/object.php:366 +msgid "never" msgstr "" -#: templates/calendar.php:3 -msgid "All day" +#: lib/object.php:367 +msgid "by occurrences" msgstr "" -#: templates/calendar.php:32 -msgid "Sunday" +#: lib/object.php:368 +msgid "by date" msgstr "" -#: templates/calendar.php:32 +#: lib/object.php:375 +msgid "by monthday" +msgstr "" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "" + +#: lib/object.php:383 templates/lAfix.php:3 msgid "Monday" msgstr "" -#: templates/calendar.php:32 +#: lib/object.php:384 templates/lAfix.php:4 msgid "Tuesday" msgstr "" -#: templates/calendar.php:32 +#: lib/object.php:385 templates/lAfix.php:5 msgid "Wednesday" msgstr "" -#: templates/calendar.php:32 +#: lib/object.php:386 templates/lAfix.php:6 msgid "Thursday" msgstr "" -#: templates/calendar.php:32 +#: lib/object.php:387 templates/lAfix.php:7 msgid "Friday" msgstr "" -#: templates/calendar.php:32 +#: lib/object.php:388 templates/lAfix.php:8 msgid "Saturday" msgstr "" -#: templates/calendar.php:33 -msgid "Sun." +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" msgstr "" -#: templates/calendar.php:33 -msgid "Mon." +#: lib/object.php:396 +msgid "events week of month" msgstr "" -#: templates/calendar.php:33 -msgid "Tue." +#: lib/object.php:397 +msgid "first" msgstr "" -#: templates/calendar.php:33 -msgid "Wed." +#: lib/object.php:398 +msgid "second" msgstr "" -#: templates/calendar.php:33 -msgid "Thu." +#: lib/object.php:399 +msgid "third" msgstr "" -#: templates/calendar.php:33 -msgid "Fri." +#: lib/object.php:400 +msgid "fourth" msgstr "" -#: templates/calendar.php:33 -msgid "Sat." +#: lib/object.php:401 +msgid "fifth" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:402 +msgid "last" +msgstr "" + +#: lib/object.php:424 templates/lAfix.php:16 msgid "January" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:425 templates/lAfix.php:17 msgid "February" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:426 templates/lAfix.php:18 msgid "March" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:427 templates/lAfix.php:19 msgid "April" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:428 templates/lAfix.php:20 msgid "May" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:429 templates/lAfix.php:21 msgid "June" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:430 templates/lAfix.php:22 msgid "July" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:431 templates/lAfix.php:23 msgid "August" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:432 templates/lAfix.php:24 msgid "September" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:433 templates/lAfix.php:25 msgid "October" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:434 templates/lAfix.php:26 msgid "November" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:435 templates/lAfix.php:27 msgid "December" msgstr "" -#: templates/calendar.php:35 -msgid "Jan." +#: lib/object.php:441 +msgid "by events date" msgstr "" -#: templates/calendar.php:35 -msgid "Feb." +#: lib/object.php:442 +msgid "by yearday(s)" msgstr "" -#: templates/calendar.php:35 -msgid "Mar." +#: lib/object.php:443 +msgid "by weeknumber(s)" msgstr "" -#: templates/calendar.php:35 -msgid "Apr." +#: lib/object.php:444 +msgid "by day and month" msgstr "" -#: templates/calendar.php:35 -msgid "May." +#: lib/object.php:467 +msgid "Not an array" msgstr "" -#: templates/calendar.php:35 -msgid "Jun." +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" msgstr "" -#: templates/calendar.php:35 -msgid "Jul." +#: lib/search.php:40 +msgid "Cal." msgstr "" -#: templates/calendar.php:35 -msgid "Aug." +#: templates/calendar.php:10 +msgid "All day" +msgstr "Todo o dia" + +#: templates/calendar.php:11 +msgid "Missing fields" msgstr "" -#: templates/calendar.php:35 -msgid "Sep." +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" msgstr "" -#: templates/calendar.php:35 -msgid "Oct." +#: templates/calendar.php:14 +msgid "From Date" msgstr "" -#: templates/calendar.php:35 -msgid "Nov." +#: templates/calendar.php:15 +msgid "From Time" msgstr "" -#: templates/calendar.php:35 -msgid "Dec." +#: templates/calendar.php:16 +msgid "To Date" msgstr "" -#: templates/calendar.php:36 templates/calendar.php:50 -#: templates/calendar.php:116 -msgid "Week" +#: templates/calendar.php:17 +msgid "To Time" msgstr "" -#: templates/calendar.php:37 templates/calendar.php:51 -msgid "Weeks" +#: templates/calendar.php:18 +msgid "The event ends before it starts" msgstr "" -#: templates/calendar.php:38 -msgid "More before {startdate}" -msgstr "" - -#: templates/calendar.php:39 -msgid "More after {enddate}" -msgstr "" - -#: templates/calendar.php:49 -msgid "Day" +#: templates/calendar.php:19 +msgid "There was a database fail" msgstr "" #: templates/calendar.php:52 -msgid "Month" -msgstr "" +msgid "Week" +msgstr "Semana" #: templates/calendar.php:53 +msgid "Month" +msgstr "Mês" + +#: templates/calendar.php:54 msgid "List" msgstr "" -#: templates/calendar.php:58 -msgid "Today" -msgstr "" - #: templates/calendar.php:59 +msgid "Today" +msgstr "Hoje" + +#: templates/calendar.php:60 msgid "Calendars" -msgstr "" +msgstr "Calendários" -#: templates/calendar.php:76 templates/calendar.php:94 -msgid "Time" -msgstr "" - -#: templates/calendar.php:169 +#: templates/calendar.php:78 msgid "There was a fail, while parsing the file." msgstr "" +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "" + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "" + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "" + +#: templates/lAfix.php:32 +msgid "May." +msgstr "" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "" + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "" + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "" + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "" + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "" + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "" + #: templates/part.choosecalendar.php:1 msgid "Choose active calendars" msgstr "" @@ -350,12 +433,11 @@ msgid "Download" msgstr "" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.eventinfo.php:64 msgid "Edit" msgstr "" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.editevent.php:8 +#: templates/part.editevent.php:9 msgid "Delete" msgstr "" @@ -375,90 +457,181 @@ msgstr "" msgid "Active" msgstr "" -#: templates/part.editcalendar.php:29 templates/part.eventform.php:88 -#: templates/part.eventinfo.php:58 -msgid "Description" -msgstr "" - -#: templates/part.editcalendar.php:35 +#: templates/part.editcalendar.php:29 msgid "Calendar color" msgstr "" -#: templates/part.editcalendar.php:41 +#: templates/part.editcalendar.php:42 msgid "Save" msgstr "" -#: templates/part.editcalendar.php:41 templates/part.editevent.php:7 +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 #: templates/part.newevent.php:6 msgid "Submit" msgstr "" -#: templates/part.editcalendar.php:42 +#: templates/part.editcalendar.php:43 msgid "Cancel" msgstr "" -#: templates/part.editevent.php:1 templates/part.eventinfo.php:1 +#: templates/part.editevent.php:1 msgid "Edit an event" msgstr "" -#: templates/part.eventform.php:3 templates/part.eventinfo.php:4 -msgid "Title" +#: templates/part.editevent.php:10 +msgid "Export" msgstr "" #: templates/part.eventform.php:5 msgid "Title of the Event" msgstr "" -#: templates/part.eventform.php:9 templates/part.eventinfo.php:9 -msgid "Location" -msgstr "" - #: templates/part.eventform.php:11 -msgid "Location of the Event" -msgstr "" - -#: templates/part.eventform.php:17 templates/part.eventinfo.php:16 msgid "Category" msgstr "" -#: templates/part.eventform.php:19 +#: templates/part.eventform.php:13 msgid "Select category" msgstr "" -#: templates/part.eventform.php:45 templates/part.eventinfo.php:28 +#: templates/part.eventform.php:37 msgid "All Day Event" msgstr "" -#: templates/part.eventform.php:49 templates/part.eventinfo.php:31 +#: templates/part.eventform.php:41 msgid "From" msgstr "" -#: templates/part.eventform.php:57 templates/part.eventinfo.php:38 +#: templates/part.eventform.php:49 msgid "To" msgstr "" -#: templates/part.eventform.php:65 templates/part.eventinfo.php:44 +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "" + +#: templates/part.eventform.php:61 msgid "Repeat" msgstr "" -#: templates/part.eventform.php:81 templates/part.eventinfo.php:51 -msgid "Attendees" +#: templates/part.eventform.php:68 +msgid "Advanced" msgstr "" -#: templates/part.eventform.php:89 +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "" + +#: templates/part.eventform.php:218 msgid "Description of the Event" msgstr "" -#: templates/part.eventinfo.php:63 -msgid "Close" +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "" + +#: templates/part.import.php:24 +msgid "Close Dialog" msgstr "" #: templates/part.newevent.php:1 msgid "Create a new event" msgstr "" -#: templates/settings.php:11 +#: templates/settings.php:13 msgid "Timezone" msgstr "" +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "" + +#: templates/settings.php:34 +msgid "24h" +msgstr "" + +#: templates/settings.php:35 +msgid "12h" +msgstr "" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "" + diff --git a/l10n/pt_PT/contacts.po b/l10n/pt_PT/contacts.po index fcc5bb2f7ed..069fcb05c90 100644 --- a/l10n/pt_PT/contacts.po +++ b/l10n/pt_PT/contacts.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 20:10+0200\n" -"PO-Revision-Date: 2011-09-23 18:11+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.net/projects/p/owncloud/team/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,164 +18,266 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 -#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 -#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 -#: ajax/showsetproperty.php:32 photo.php:32 -msgid "You need to log in." +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." msgstr "" -#: ajax/addcard.php:37 +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: lib/app.php:52 msgid "This is not your addressbook." -msgstr "" +msgstr "Esta não é a sua lista de contactos" -#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 -#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 -#: ajax/showsetproperty.php:38 photo.php:39 +#: lib/app.php:61 photo.php:36 msgid "Contact could not be found." -msgstr "" +msgstr "O contacto não foi encontrado" -#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 -#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 -#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 -msgid "This is not your contact." -msgstr "" - -#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 -#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 -msgid "vCard could not be read." -msgstr "" - -#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 -#: ajax/showsetproperty.php:62 +#: lib/app.php:89 msgid "Information about vCard is incorrect. Please reload the page." msgstr "" +"A informação sobre o vCard está incorreta. Por favor refresque a página" -#: photo.php:53 -msgid "This card is not RFC compatible." -msgstr "" - -#: photo.php:90 -msgid "This card does not contain a photo." -msgstr "" - -#: templates/index.php:8 -msgid "Add Contact" -msgstr "" - -#: templates/part.addcardform.php:5 -msgid "Group" -msgstr "" - -#: templates/part.addcardform.php:12 templates/part.property.php:3 -msgid "Name" -msgstr "" - -#: templates/part.addcardform.php:14 -msgid "Create Contact" -msgstr "" - -#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 msgid "Address" -msgstr "" +msgstr "Morada" -#: templates/part.addpropertyform.php:5 +#: lib/app.php:102 templates/part.addcardform.php:43 msgid "Telephone" -msgstr "" +msgstr "Telefone" -#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 msgid "Email" -msgstr "" +msgstr "Email" -#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 msgid "Organization" -msgstr "" +msgstr "Organização" -#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +#: lib/app.php:116 lib/app.php:123 msgid "Work" -msgstr "" +msgstr "Trabalho" -#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +#: lib/app.php:117 lib/app.php:121 msgid "Home" -msgstr "" +msgstr "Casa" -#: templates/part.addpropertyform.php:20 templates/part.property.php:48 -#: templates/part.setpropertyform.php:5 -msgid "PO Box" -msgstr "" - -#: templates/part.addpropertyform.php:21 templates/part.property.php:51 -#: templates/part.setpropertyform.php:6 -msgid "Extended" -msgstr "" - -#: templates/part.addpropertyform.php:22 templates/part.property.php:54 -#: templates/part.setpropertyform.php:7 -msgid "Street" -msgstr "" - -#: templates/part.addpropertyform.php:23 templates/part.property.php:57 -#: templates/part.setpropertyform.php:8 -msgid "City" -msgstr "" - -#: templates/part.addpropertyform.php:24 templates/part.property.php:60 -#: templates/part.setpropertyform.php:9 -msgid "Region" -msgstr "" - -#: templates/part.addpropertyform.php:25 templates/part.property.php:63 -#: templates/part.setpropertyform.php:10 -msgid "Zipcode" -msgstr "" - -#: templates/part.addpropertyform.php:26 templates/part.property.php:66 -#: templates/part.setpropertyform.php:11 -msgid "Country" -msgstr "" - -#: templates/part.addpropertyform.php:31 +#: lib/app.php:122 msgid "Mobile" -msgstr "" +msgstr "Telemovel" -#: templates/part.addpropertyform.php:33 +#: lib/app.php:124 msgid "Text" -msgstr "" +msgstr "Texto" -#: templates/part.addpropertyform.php:34 +#: lib/app.php:125 msgid "Voice" -msgstr "" +msgstr "Voz" -#: templates/part.addpropertyform.php:35 +#: lib/app.php:126 msgid "Fax" -msgstr "" +msgstr "Fax" -#: templates/part.addpropertyform.php:36 +#: lib/app.php:127 msgid "Video" -msgstr "" +msgstr "Vídeo" -#: templates/part.addpropertyform.php:37 +#: lib/app.php:128 msgid "Pager" +msgstr "Pager" + +#: lib/search.php:22 +msgid "Contact" msgstr "" -#: templates/part.details.php:33 +#: photo.php:42 +msgid "This is not your contact." +msgstr "Este não é o seu contacto" + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Adicionar Contacto" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Nome" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "Apartado" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Extendido" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Rua" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Cidade" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Região" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "Código Postal" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "País" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Criar Contacto" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Editar" + +#: templates/part.chooseaddressbook.rowfields.php:5 msgid "Delete" +msgstr "Apagar" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "" + +#: templates/part.details.php:4 +msgid "Delete contact" msgstr "" #: templates/part.details.php:34 -msgid "Add Property" +msgid "Add" msgstr "" -#: templates/part.property.php:9 +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "" + +#: templates/part.property.php:3 msgid "Birthday" +msgstr "Aniversário" + +#: templates/part.property.php:23 +msgid "Preferred" msgstr "" -#: templates/part.property.php:29 +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 msgid "Phone" +msgstr "Telefone" + +#: templates/part.setpropertyform.php:57 +msgid "Update" msgstr "" -#: templates/part.setpropertyform.php:17 -msgid "Edit" +#: templates/settings.php:4 +msgid "CardDAV syncing address:" msgstr "" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 8c79bfcd9c5..aaab9779385 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-23 16:41+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.net/projects/p/owncloud/team/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +18,51 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" @@ -45,53 +91,49 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:21 -msgid "Username" -msgstr "" - -#: templates/installation.php:22 +#: templates/installation.php:26 templates/login.php:12 msgid "Password" msgstr "" -#: templates/installation.php:27 -msgid "Configure the database" -msgstr "" - -#: templates/installation.php:32 templates/installation.php:43 -#: templates/installation.php:53 -msgid "will be used" -msgstr "" - -#: templates/installation.php:64 -msgid "Database user" -msgstr "" - -#: templates/installation.php:65 -msgid "Database password" -msgstr "" - -#: templates/installation.php:66 -msgid "Database name" -msgstr "" - -#: templates/installation.php:72 +#: templates/installation.php:32 msgid "Advanced" -msgstr "" +msgstr "Avançado" -#: templates/installation.php:75 -msgid "Database host" -msgstr "" - -#: templates/installation.php:76 +#: templates/installation.php:34 msgid "Data folder" msgstr "" +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "" + #: templates/installation.php:79 +msgid "Database user" +msgstr "" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "" + +#: templates/installation.php:98 msgid "Finish setup" msgstr "" #: templates/layout.guest.php:35 -msgid "gives you freedom and control over your own data" +msgid "web services under your control" msgstr "" #: templates/layout.user.php:34 @@ -102,38 +144,22 @@ msgstr "" msgid "Settings" msgstr "" -#: templates/login.php:4 +#: templates/login.php:5 msgid "Lost your password?" msgstr "" -#: templates/login.php:9 templates/login.php:13 +#: templates/login.php:15 msgid "remember" msgstr "" +#: templates/login.php:16 +msgid "Log in" +msgstr "" + #: templates/logout.php:1 msgid "You are logged out." msgstr "" -#: templates/lostpassword.php:3 -msgid "You will receive a link to reset your password via Email." -msgstr "" - -#: templates/lostpassword.php:5 -msgid "Requested" -msgstr "" - -#: templates/lostpassword.php:8 -msgid "Login failed!" -msgstr "" - -#: templates/lostpassword.php:10 -msgid "Username or Email" -msgstr "" - -#: templates/lostpassword.php:11 -msgid "Request reset" -msgstr "" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" @@ -142,16 +168,4 @@ msgstr "" msgid "next" msgstr "" -#: templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "" - -#: templates/resetpassword.php:6 -msgid "New password" -msgstr "" - -#: templates/resetpassword.php:7 -msgid "Reset password" -msgstr "" - diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index b41320ef456..7fd44b4f725 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.net/projects/p/owncloud/team/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,33 +17,33 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:24 +#: ajax/upload.php:19 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:20 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:21 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:22 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:23 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:24 msgid "Missing a temporary folder" msgstr "" -#: appinfo/app.php:7 +#: appinfo/app.php:8 msgid "Files" msgstr "" @@ -51,43 +51,55 @@ msgstr "" msgid "Maximum upload size" msgstr "" +#: templates/index.php:7 +msgid "New" +msgstr "" + #: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:11 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From the web" +msgstr "" + +#: templates/index.php:22 msgid "Upload" msgstr "" -#: templates/index.php:17 -msgid "New Folder" -msgstr "" - -#: templates/index.php:31 +#: templates/index.php:35 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:39 +#: templates/index.php:43 msgid "Name" msgstr "" -#: templates/index.php:41 +#: templates/index.php:45 msgid "Download" msgstr "" -#: templates/index.php:45 +#: templates/index.php:49 msgid "Size" msgstr "" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Modified" msgstr "" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Delete" msgstr "" -#: templates/index.php:54 +#: templates/index.php:58 msgid "Upload too large" msgstr "" -#: templates/index.php:56 +#: templates/index.php:60 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." diff --git a/l10n/pt_PT/gallery.po b/l10n/pt_PT/gallery.po new file mode 100644 index 00000000000..f6cbe83280a --- /dev/null +++ b/l10n/pt_PT/gallery.po @@ -0,0 +1,52 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.net/projects/p/owncloud/team/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" + + diff --git a/l10n/pt_PT/media.po b/l10n/pt_PT/media.po index ae7c1aba234..b248284c3dd 100644 --- a/l10n/pt_PT/media.po +++ b/l10n/pt_PT/media.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-23 16:42+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.net/projects/p/owncloud/team/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,15 +17,15 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: appinfo/app.php:31 +#: appinfo/app.php:32 msgid "Music" msgstr "" -#: templates/music.php:3 +#: templates/music.php:3 templates/player.php:13 msgid "Play" msgstr "" -#: templates/music.php:4 templates/music.php:30 +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 msgid "Pause" msgstr "" @@ -33,7 +33,7 @@ msgstr "" msgid "Previous" msgstr "" -#: templates/music.php:6 +#: templates/music.php:6 templates/player.php:15 msgid "Next" msgstr "" @@ -45,11 +45,7 @@ msgstr "" msgid "Unmute" msgstr "" -#: templates/music.php:28 -msgid "Songs scanned" -msgstr "" - -#: templates/music.php:29 +#: templates/music.php:25 msgid "Rescan Collection" msgstr "" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index ba8649456a4..e9a2cc34a36 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-23 16:42+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 16:32+0000\n" +"Last-Translator: icewind \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.net/projects/p/owncloud/team/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,22 +17,30 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/openid.php:13 ajax/setlanguage.php:13 -msgid "Authentication error" +#: ajax/lostpassword.php:14 +msgid "email Changed" msgstr "" -#: ajax/openid.php:21 -msgid "OpenID Changed" -msgstr "" - -#: ajax/openid.php:23 ajax/setlanguage.php:23 +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 msgid "Invalid request" msgstr "" -#: ajax/setlanguage.php:21 +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "" + +#: ajax/setlanguage.php:14 msgid "Language changed" msgstr "" +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "" + #: templates/apps.php:8 msgid "Add your application" msgstr "" @@ -53,15 +61,15 @@ msgstr "" msgid "Ask a question" msgstr "" -#: templates/help.php:17 +#: templates/help.php:20 msgid "Problems connecting to help database." msgstr "" -#: templates/help.php:18 +#: templates/help.php:21 msgid "Go there manually." msgstr "" -#: templates/help.php:26 +#: templates/help.php:29 msgid "Answer" msgstr "" @@ -97,35 +105,51 @@ msgstr "" msgid "Change password" msgstr "" -#: templates/personal.php:24 templates/personal.php:25 +#: templates/personal.php:24 +msgid "Email" +msgstr "" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:32 templates/personal.php:33 msgid "Language" msgstr "" -#: templates/personal.php:30 -msgid "Help translating" +#: templates/personal.php:38 +msgid "Help translate" msgstr "" -#: templates/personal.php:37 +#: templates/personal.php:45 msgid "use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:16 +#: templates/users.php:15 templates/users.php:30 msgid "Name" msgstr "" -#: templates/users.php:17 +#: templates/users.php:16 templates/users.php:31 msgid "Password" msgstr "" -#: templates/users.php:18 templates/users.php:36 +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 msgid "Groups" msgstr "" -#: templates/users.php:24 +#: templates/users.php:23 msgid "Create" msgstr "" -#: templates/users.php:48 +#: templates/users.php:33 +msgid "Quota" +msgstr "" + +#: templates/users.php:58 msgid "Delete" msgstr "" diff --git a/l10n/ro/calendar.po b/l10n/ro/calendar.po index e87d6c47a95..7218e65c3f0 100644 --- a/l10n/ro/calendar.po +++ b/l10n/ro/calendar.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Claudiu , 2011. +# Claudiu , 2011, 2012. +# Ovidiu Tache , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 07:11+0000\n" +"Last-Translator: Claudiu \n" "Language-Team: Romanian (http://www.transifex.net/projects/p/owncloud/team/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,351 +19,432 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" -#: ajax/createcalendar.php:18 ajax/settimezone.php:19 -#: ajax/updatecalendar.php:18 -msgid "Authentication error" -msgstr "Eroare de autentificare" +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "Fus orar nou:" -#: ajax/editeventform.php:25 -msgid "Wrong calendar" -msgstr "" - -#: ajax/settimezone.php:27 +#: ajax/settimezone.php:22 msgid "Timezone changed" msgstr "A fost schimbat fusul orar" -#: ajax/settimezone.php:29 +#: ajax/settimezone.php:24 msgid "Invalid request" msgstr "Cerere eronată" -#: appinfo/app.php:19 templates/part.eventform.php:27 -#: templates/part.eventinfo.php:18 +#: appinfo/app.php:20 templates/calendar.php:14 +#: templates/part.eventform.php:20 msgid "Calendar" msgstr "Calendar" -#: lib/object.php:292 +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Calendar greșit" + +#: lib/app.php:60 lib/object.php:332 msgid "Birthday" -msgstr "" +msgstr "Zi de naștere" -#: lib/object.php:293 +#: lib/app.php:61 lib/object.php:333 msgid "Business" -msgstr "" +msgstr "Afaceri" -#: lib/object.php:294 +#: lib/app.php:62 lib/object.php:334 msgid "Call" -msgstr "" +msgstr "Sună" -#: lib/object.php:295 +#: lib/app.php:63 lib/object.php:335 msgid "Clients" -msgstr "" +msgstr "Clienți" -#: lib/object.php:296 +#: lib/app.php:64 lib/object.php:336 msgid "Deliverer" -msgstr "" +msgstr "Curier" -#: lib/object.php:297 +#: lib/app.php:65 lib/object.php:337 msgid "Holidays" -msgstr "" +msgstr "Sărbători" -#: lib/object.php:298 +#: lib/app.php:66 lib/object.php:338 msgid "Ideas" -msgstr "" +msgstr "Idei" -#: lib/object.php:299 +#: lib/app.php:67 lib/object.php:339 msgid "Journey" -msgstr "" +msgstr "Călătorie" -#: lib/object.php:300 +#: lib/app.php:68 lib/object.php:340 msgid "Jubilee" -msgstr "" +msgstr "Aniversare" -#: lib/object.php:301 +#: lib/app.php:69 lib/object.php:341 msgid "Meeting" -msgstr "" +msgstr "Întâlnire" -#: lib/object.php:302 +#: lib/app.php:70 lib/object.php:342 msgid "Other" -msgstr "" +msgstr "Altele" -#: lib/object.php:303 +#: lib/app.php:71 lib/object.php:343 msgid "Personal" -msgstr "" +msgstr "Personal" -#: lib/object.php:304 +#: lib/app.php:72 lib/object.php:344 msgid "Projects" -msgstr "" +msgstr "Proiecte" -#: lib/object.php:305 +#: lib/app.php:73 lib/object.php:345 msgid "Questions" -msgstr "" +msgstr "Întrebări" -#: lib/object.php:306 +#: lib/app.php:74 lib/object.php:346 msgid "Work" -msgstr "" +msgstr "Servici" -#: lib/object.php:313 +#: lib/object.php:353 msgid "Does not repeat" msgstr "Nu se repetă" -#: lib/object.php:314 +#: lib/object.php:354 msgid "Daily" msgstr "Zilnic" -#: lib/object.php:315 +#: lib/object.php:355 msgid "Weekly" msgstr "Săptămânal" -#: lib/object.php:316 +#: lib/object.php:356 msgid "Every Weekday" msgstr "În fiecare săptămână" -#: lib/object.php:317 +#: lib/object.php:357 msgid "Bi-Weekly" msgstr "Din două în două săptămâni" -#: lib/object.php:318 +#: lib/object.php:358 msgid "Monthly" msgstr "Lunar" -#: lib/object.php:319 +#: lib/object.php:359 msgid "Yearly" msgstr "Anual" -#: lib/object.php:337 -msgid "Not an array" -msgstr "" +#: lib/object.php:366 +msgid "never" +msgstr "niciodată" -#: templates/calendar.php:3 -msgid "All day" -msgstr "Toată ziua" +#: lib/object.php:367 +msgid "by occurrences" +msgstr "după repetiție" -#: templates/calendar.php:32 -msgid "Sunday" -msgstr "Duminică" +#: lib/object.php:368 +msgid "by date" +msgstr "după dată" -#: templates/calendar.php:32 +#: lib/object.php:375 +msgid "by monthday" +msgstr "după ziua lunii" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "după ziua săptămânii" + +#: lib/object.php:383 templates/lAfix.php:3 msgid "Monday" msgstr "Luni" -#: templates/calendar.php:32 +#: lib/object.php:384 templates/lAfix.php:4 msgid "Tuesday" msgstr "Marți" -#: templates/calendar.php:32 +#: lib/object.php:385 templates/lAfix.php:5 msgid "Wednesday" msgstr "Miercuri" -#: templates/calendar.php:32 +#: lib/object.php:386 templates/lAfix.php:6 msgid "Thursday" msgstr "Joi" -#: templates/calendar.php:32 +#: lib/object.php:387 templates/lAfix.php:7 msgid "Friday" msgstr "Vineri" -#: templates/calendar.php:32 +#: lib/object.php:388 templates/lAfix.php:8 msgid "Saturday" msgstr "Sâmbătă" -#: templates/calendar.php:33 -msgid "Sun." -msgstr "Dum." +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "Duminică" -#: templates/calendar.php:33 -msgid "Mon." -msgstr "Lun." +#: lib/object.php:396 +msgid "events week of month" +msgstr "evenimentele săptămânii din luna." -#: templates/calendar.php:33 -msgid "Tue." -msgstr "Mar." +#: lib/object.php:397 +msgid "first" +msgstr "primul" -#: templates/calendar.php:33 -msgid "Wed." -msgstr "Mie." +#: lib/object.php:398 +msgid "second" +msgstr "al doilea" -#: templates/calendar.php:33 -msgid "Thu." -msgstr "Joi." +#: lib/object.php:399 +msgid "third" +msgstr "al treilea" -#: templates/calendar.php:33 -msgid "Fri." -msgstr "Vin." +#: lib/object.php:400 +msgid "fourth" +msgstr "al patrulea" -#: templates/calendar.php:33 -msgid "Sat." -msgstr "Sâm." +#: lib/object.php:401 +msgid "fifth" +msgstr "al cincilea" -#: templates/calendar.php:34 +#: lib/object.php:402 +msgid "last" +msgstr "ultimul" + +#: lib/object.php:424 templates/lAfix.php:16 msgid "January" msgstr "Ianuarie" -#: templates/calendar.php:34 +#: lib/object.php:425 templates/lAfix.php:17 msgid "February" msgstr "Februarie" -#: templates/calendar.php:34 +#: lib/object.php:426 templates/lAfix.php:18 msgid "March" msgstr "Martie" -#: templates/calendar.php:34 +#: lib/object.php:427 templates/lAfix.php:19 msgid "April" msgstr "Aprilie" -#: templates/calendar.php:34 +#: lib/object.php:428 templates/lAfix.php:20 msgid "May" msgstr "Mai" -#: templates/calendar.php:34 +#: lib/object.php:429 templates/lAfix.php:21 msgid "June" msgstr "Iunie" -#: templates/calendar.php:34 +#: lib/object.php:430 templates/lAfix.php:22 msgid "July" msgstr "Iulie" -#: templates/calendar.php:34 +#: lib/object.php:431 templates/lAfix.php:23 msgid "August" msgstr "August" -#: templates/calendar.php:34 +#: lib/object.php:432 templates/lAfix.php:24 msgid "September" msgstr "Septembrie" -#: templates/calendar.php:34 +#: lib/object.php:433 templates/lAfix.php:25 msgid "October" msgstr "Octombrie" -#: templates/calendar.php:34 +#: lib/object.php:434 templates/lAfix.php:26 msgid "November" msgstr "Noiembrie" -#: templates/calendar.php:34 +#: lib/object.php:435 templates/lAfix.php:27 msgid "December" msgstr "Decembrie" -#: templates/calendar.php:35 -msgid "Jan." -msgstr "Ian." +#: lib/object.php:441 +msgid "by events date" +msgstr "după data evenimentului" -#: templates/calendar.php:35 -msgid "Feb." -msgstr "Feb." +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "după ziua(zilele) anului" -#: templates/calendar.php:35 -msgid "Mar." -msgstr "Mar." +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "după numărul săptămânii" -#: templates/calendar.php:35 -msgid "Apr." -msgstr "Apr." +#: lib/object.php:444 +msgid "by day and month" +msgstr "după zi și lună" -#: templates/calendar.php:35 -msgid "May." -msgstr "" +#: lib/object.php:467 +msgid "Not an array" +msgstr "Not an array" -#: templates/calendar.php:35 -msgid "Jun." -msgstr "Iun." +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "Data" -#: templates/calendar.php:35 -msgid "Jul." -msgstr "Iul." +#: lib/search.php:40 +msgid "Cal." +msgstr "Cal." -#: templates/calendar.php:35 -msgid "Aug." -msgstr "Aug." +#: templates/calendar.php:10 +msgid "All day" +msgstr "Toată ziua" -#: templates/calendar.php:35 -msgid "Sep." -msgstr "Sep." +#: templates/calendar.php:11 templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "Calendar nou" -#: templates/calendar.php:35 -msgid "Oct." -msgstr "Oct." +#: templates/calendar.php:12 +msgid "Missing fields" +msgstr "Câmpuri lipsă" -#: templates/calendar.php:35 -msgid "Nov." -msgstr "Nov." +#: templates/calendar.php:13 templates/part.eventform.php:3 +msgid "Title" +msgstr "Titlu" -#: templates/calendar.php:35 -msgid "Dec." -msgstr "Dec." +#: templates/calendar.php:15 +msgid "From Date" +msgstr "Începând cu" -#: templates/calendar.php:36 templates/calendar.php:50 -#: templates/calendar.php:116 +#: templates/calendar.php:16 +msgid "From Time" +msgstr "De la" + +#: templates/calendar.php:17 +msgid "To Date" +msgstr "Până pe" + +#: templates/calendar.php:18 +msgid "To Time" +msgstr "La" + +#: templates/calendar.php:19 +msgid "The event ends before it starts" +msgstr "Evenimentul se termină înainte să înceapă" + +#: templates/calendar.php:20 +msgid "There was a database fail" +msgstr "A avut loc o eroare a bazei de date" + +#: templates/calendar.php:38 msgid "Week" msgstr "Săptămâna" -#: templates/calendar.php:37 templates/calendar.php:51 -msgid "Weeks" -msgstr "Săptămâni" - -#: templates/calendar.php:38 -msgid "More before {startdate}" -msgstr "" - #: templates/calendar.php:39 -msgid "More after {enddate}" -msgstr "" - -#: templates/calendar.php:49 -msgid "Day" -msgstr "Zi" - -#: templates/calendar.php:52 msgid "Month" msgstr "Luna" -#: templates/calendar.php:53 +#: templates/calendar.php:40 msgid "List" -msgstr "" +msgstr "Listă" -#: templates/calendar.php:58 +#: templates/calendar.php:46 msgid "Today" msgstr "Astăzi" -#: templates/calendar.php:59 +#: templates/calendar.php:47 msgid "Calendars" msgstr "Calendare" -#: templates/calendar.php:76 templates/calendar.php:94 -msgid "Time" -msgstr "Ora" - -#: templates/calendar.php:169 +#: templates/calendar.php:65 msgid "There was a fail, while parsing the file." msgstr "A fost întâmpinată o eroare în procesarea fișierului" +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "D" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "L" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "M" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "M" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "J" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "V" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "S" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "Ian." + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "Feb." + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "Mar." + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "Apr." + +#: templates/lAfix.php:32 +msgid "May." +msgstr "Mai." + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "Iun." + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "Iul." + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "Aug." + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "Sept." + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "Oct." + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "Nov." + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "Dec." + #: templates/part.choosecalendar.php:1 msgid "Choose active calendars" msgstr "Alege activitățile din calendar" -#: templates/part.choosecalendar.php:15 -msgid "New Calendar" -msgstr "" - #: templates/part.choosecalendar.php:20 #: templates/part.choosecalendar.rowfields.php:4 msgid "CalDav Link" -msgstr "" +msgstr "Link CalDav" #: templates/part.choosecalendar.rowfields.php:4 msgid "Download" msgstr "Descarcă" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.eventinfo.php:64 msgid "Edit" msgstr "Modifică" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.editevent.php:8 +#: templates/part.editevent.php:9 msgid "Delete" -msgstr "" +msgstr "Șterge" #: templates/part.editcalendar.php:9 msgid "New calendar" -msgstr "" +msgstr "Calendar nou" #: templates/part.editcalendar.php:9 msgid "Edit calendar" @@ -376,90 +458,181 @@ msgstr "Nume" msgid "Active" msgstr "Activ" -#: templates/part.editcalendar.php:29 templates/part.eventform.php:88 -#: templates/part.eventinfo.php:58 -msgid "Description" -msgstr "Descriere" - -#: templates/part.editcalendar.php:35 +#: templates/part.editcalendar.php:29 msgid "Calendar color" msgstr "Culoare calendar" -#: templates/part.editcalendar.php:41 +#: templates/part.editcalendar.php:42 msgid "Save" -msgstr "" +msgstr "Salveză" -#: templates/part.editcalendar.php:41 templates/part.editevent.php:7 +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 #: templates/part.newevent.php:6 msgid "Submit" msgstr "Trimite" -#: templates/part.editcalendar.php:42 +#: templates/part.editcalendar.php:43 msgid "Cancel" -msgstr "" +msgstr "Anulează" -#: templates/part.editevent.php:1 templates/part.eventinfo.php:1 +#: templates/part.editevent.php:1 msgid "Edit an event" msgstr "Modifică un eveniment" -#: templates/part.eventform.php:3 templates/part.eventinfo.php:4 -msgid "Title" -msgstr "Titlu" +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "Exportă" #: templates/part.eventform.php:5 msgid "Title of the Event" msgstr "Numele evenimentului" -#: templates/part.eventform.php:9 templates/part.eventinfo.php:9 -msgid "Location" -msgstr "Localizare" - #: templates/part.eventform.php:11 -msgid "Location of the Event" -msgstr "Localizarea evenimentului" - -#: templates/part.eventform.php:17 templates/part.eventinfo.php:16 msgid "Category" msgstr "Categorie" -#: templates/part.eventform.php:19 +#: templates/part.eventform.php:13 msgid "Select category" -msgstr "" +msgstr "Alege categoria" -#: templates/part.eventform.php:45 templates/part.eventinfo.php:28 +#: templates/part.eventform.php:37 msgid "All Day Event" msgstr "Toată ziua" -#: templates/part.eventform.php:49 templates/part.eventinfo.php:31 +#: templates/part.eventform.php:41 msgid "From" msgstr "De la" -#: templates/part.eventform.php:57 templates/part.eventinfo.php:38 +#: templates/part.eventform.php:49 msgid "To" msgstr "Către" -#: templates/part.eventform.php:65 templates/part.eventinfo.php:44 +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "Opțiuni avansate" + +#: templates/part.eventform.php:61 msgid "Repeat" msgstr "Repetă" -#: templates/part.eventform.php:81 templates/part.eventinfo.php:51 -msgid "Attendees" -msgstr "Participanți" +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "Avansat" -#: templates/part.eventform.php:89 +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "Selectează zilele săptămânii" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "Selectează zilele" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "și evenimentele zilei." + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "și evenimentele zilei din lună." + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "Selectează lunile" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "Selectează săptămânile" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "și evenimentele săptămânii." + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "Interval" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "Sfârșit" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "repetiții" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Localizare" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Localizarea evenimentului" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Descriere" + +#: templates/part.eventform.php:218 msgid "Description of the Event" msgstr "Descrierea evenimentului" -#: templates/part.eventinfo.php:63 -msgid "Close" +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "Importă un calendar" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "Alegeți calendarul" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "crează un calendar nou" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "Numele noului calendar" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "Importă" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "Importă calendar" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "Calendarul a fost importat cu succes" + +#: templates/part.import.php:24 +msgid "Close Dialog" msgstr "Închide" #: templates/part.newevent.php:1 msgid "Create a new event" msgstr "Crează un evenimetn nou" -#: templates/settings.php:11 +#: templates/settings.php:13 msgid "Timezone" msgstr "Fus orar" +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "Verifică mereu pentru schimbări ale fusului orar" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "Format de timp" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24h" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12h" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "Adresa pentru sincronizarea calendarului CalDAV" + diff --git a/l10n/ro/contacts.po b/l10n/ro/contacts.po index 95b3d705a3d..039b7b1f191 100644 --- a/l10n/ro/contacts.po +++ b/l10n/ro/contacts.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Claudiu , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 20:10+0200\n" -"PO-Revision-Date: 2011-09-23 18:11+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" "Language-Team: Romanian (http://www.transifex.net/projects/p/owncloud/team/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,164 +18,265 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" -#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 -#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 -#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 -#: ajax/showsetproperty.php:32 photo.php:32 -msgid "You need to log in." +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." msgstr "" -#: ajax/addcard.php:37 +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: lib/app.php:52 msgid "This is not your addressbook." -msgstr "" +msgstr "Nu se găsește în agendă." -#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 -#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 -#: ajax/showsetproperty.php:38 photo.php:39 +#: lib/app.php:61 photo.php:36 msgid "Contact could not be found." -msgstr "" +msgstr "Contactul nu a putut fi găsit." -#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 -#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 -#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 -msgid "This is not your contact." -msgstr "" - -#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 -#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 -msgid "vCard could not be read." -msgstr "" - -#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 -#: ajax/showsetproperty.php:62 +#: lib/app.php:89 msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" +msgstr "Informațiile despre vCard sunt incorecte. Reîncărcați pagina." -#: photo.php:53 -msgid "This card is not RFC compatible." -msgstr "" - -#: photo.php:90 -msgid "This card does not contain a photo." -msgstr "" - -#: templates/index.php:8 -msgid "Add Contact" -msgstr "" - -#: templates/part.addcardform.php:5 -msgid "Group" -msgstr "" - -#: templates/part.addcardform.php:12 templates/part.property.php:3 -msgid "Name" -msgstr "" - -#: templates/part.addcardform.php:14 -msgid "Create Contact" -msgstr "" - -#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 msgid "Address" -msgstr "" +msgstr "Adresă" -#: templates/part.addpropertyform.php:5 +#: lib/app.php:102 templates/part.addcardform.php:43 msgid "Telephone" -msgstr "" +msgstr "Telefon" -#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 msgid "Email" -msgstr "" +msgstr "Email" -#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 msgid "Organization" -msgstr "" +msgstr "Organizație" -#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +#: lib/app.php:116 lib/app.php:123 msgid "Work" -msgstr "" +msgstr "Servici" -#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +#: lib/app.php:117 lib/app.php:121 msgid "Home" -msgstr "" +msgstr "Acasă" -#: templates/part.addpropertyform.php:20 templates/part.property.php:48 -#: templates/part.setpropertyform.php:5 -msgid "PO Box" -msgstr "" - -#: templates/part.addpropertyform.php:21 templates/part.property.php:51 -#: templates/part.setpropertyform.php:6 -msgid "Extended" -msgstr "" - -#: templates/part.addpropertyform.php:22 templates/part.property.php:54 -#: templates/part.setpropertyform.php:7 -msgid "Street" -msgstr "" - -#: templates/part.addpropertyform.php:23 templates/part.property.php:57 -#: templates/part.setpropertyform.php:8 -msgid "City" -msgstr "" - -#: templates/part.addpropertyform.php:24 templates/part.property.php:60 -#: templates/part.setpropertyform.php:9 -msgid "Region" -msgstr "" - -#: templates/part.addpropertyform.php:25 templates/part.property.php:63 -#: templates/part.setpropertyform.php:10 -msgid "Zipcode" -msgstr "" - -#: templates/part.addpropertyform.php:26 templates/part.property.php:66 -#: templates/part.setpropertyform.php:11 -msgid "Country" -msgstr "" - -#: templates/part.addpropertyform.php:31 +#: lib/app.php:122 msgid "Mobile" -msgstr "" +msgstr "Mobil" -#: templates/part.addpropertyform.php:33 +#: lib/app.php:124 msgid "Text" -msgstr "" +msgstr "Text" -#: templates/part.addpropertyform.php:34 +#: lib/app.php:125 msgid "Voice" -msgstr "" +msgstr "Voce" -#: templates/part.addpropertyform.php:35 +#: lib/app.php:126 msgid "Fax" -msgstr "" +msgstr "Fax" -#: templates/part.addpropertyform.php:36 +#: lib/app.php:127 msgid "Video" -msgstr "" +msgstr "Video" -#: templates/part.addpropertyform.php:37 +#: lib/app.php:128 msgid "Pager" +msgstr "Pager" + +#: lib/search.php:22 +msgid "Contact" msgstr "" -#: templates/part.details.php:33 -msgid "Delete" +#: photo.php:42 +msgid "This is not your contact." +msgstr "Nu este contactul tău" + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Adaugă contact" + +#: templates/index.php:7 +msgid "Addressbooks" msgstr "" +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Nume" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "Tip" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "CP" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Extins" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Stradă" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Oraș" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Regiune" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "Cod poștal" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "Țară" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Crează contact" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "Alegeți una din agendele active" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "Agendă nouă" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "Link CardDev" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "Descarcă" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Editează" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Delete" +msgstr "Șterge" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "Șterge contact" + #: templates/part.details.php:34 -msgid "Add Property" +msgid "Add" +msgstr "Adaugă" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" msgstr "" -#: templates/part.property.php:9 +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "Numele afișat" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "Activ" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "Salvează" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "Trimite" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "Anulează" + +#: templates/part.property.php:3 msgid "Birthday" -msgstr "" +msgstr "Zi de naștere" -#: templates/part.property.php:29 +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "Preferat" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 msgid "Phone" -msgstr "" +msgstr "Telefon" -#: templates/part.setpropertyform.php:17 -msgid "Edit" +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "Update" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" msgstr "" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index df95994f468..a1d3e867b1b 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Claudiu , 2011. +# Claudiu , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-05 11:11+0000\n" -"Last-Translator: rawbeef64 \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-12 13:20+0000\n" +"Last-Translator: Claudiu \n" "Language-Team: Romanian (http://www.transifex.net/projects/p/owncloud/team/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,52 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "Resetare parolă Owncloud" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "Folosiți următorul link pentru a reseta parola: {link}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" +"Veți primi la adresa de email un link prin care veți putea reseta parola" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Cerută" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Autentificare eșuată" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Utilizator" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Cerere trimisă" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Parola a fost resetată" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "Spre pagina de login" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Noua parolă" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Resetează parola" + #: strings.php:5 msgid "Personal" msgstr "Personal" @@ -46,54 +92,50 @@ msgstr "Nu s-a găsit" msgid "Create an admin account" msgstr "Crează un cont de administrator" -#: templates/installation.php:21 -msgid "Username" -msgstr "Utilizator" - -#: templates/installation.php:22 +#: templates/installation.php:26 templates/login.php:12 msgid "Password" msgstr "Parola" -#: templates/installation.php:27 -msgid "Configure the database" -msgstr "Configurează baza de date" - -#: templates/installation.php:32 templates/installation.php:43 -#: templates/installation.php:53 -msgid "will be used" -msgstr "vor fi folosite" - -#: templates/installation.php:64 -msgid "Database user" -msgstr "Utilizatorul bazei de date" - -#: templates/installation.php:65 -msgid "Database password" -msgstr "Parola bazei de date" - -#: templates/installation.php:66 -msgid "Database name" -msgstr "Numele bazei de date" - -#: templates/installation.php:72 +#: templates/installation.php:32 msgid "Advanced" msgstr "Avansat" -#: templates/installation.php:75 -msgid "Database host" -msgstr "Baza de date" - -#: templates/installation.php:76 +#: templates/installation.php:34 msgid "Data folder" msgstr "Directorul cu date" +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Configurează baza de date" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "vor fi folosite" + #: templates/installation.php:79 +msgid "Database user" +msgstr "Utilizatorul bazei de date" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Parola bazei de date" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Numele bazei de date" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Baza de date" + +#: templates/installation.php:98 msgid "Finish setup" msgstr "Finalizează instalarea" #: templates/layout.guest.php:35 -msgid "gives you freedom and control over your own data" -msgstr "îți oferă libertatea de a-ți controla datele" +msgid "web services under your control" +msgstr "Servicii web sub controlul tău" #: templates/layout.user.php:34 msgid "Log out" @@ -103,38 +145,22 @@ msgstr "Ieșire" msgid "Settings" msgstr "Setări" -#: templates/login.php:4 +#: templates/login.php:5 msgid "Lost your password?" msgstr "Ai uitat parola?" -#: templates/login.php:9 templates/login.php:13 +#: templates/login.php:15 msgid "remember" msgstr "ține minte" +#: templates/login.php:16 +msgid "Log in" +msgstr "Autentificare" + #: templates/logout.php:1 msgid "You are logged out." msgstr "Ai ieșit" -#: templates/lostpassword.php:3 -msgid "You will receive a link to reset your password via Email." -msgstr "Vei primi prin email un link pentru resetarea parolei" - -#: templates/lostpassword.php:5 -msgid "Requested" -msgstr "Cerută" - -#: templates/lostpassword.php:8 -msgid "Login failed!" -msgstr "Autentificare eșuată!" - -#: templates/lostpassword.php:10 -msgid "Username or Email" -msgstr "Utilizator sau email" - -#: templates/lostpassword.php:11 -msgid "Request reset" -msgstr "Cere schimbarea parolei" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "precedentul" @@ -143,16 +169,4 @@ msgstr "precedentul" msgid "next" msgstr "următorul" -#: templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "Parola a fost schimbată" - -#: templates/resetpassword.php:6 -msgid "New password" -msgstr "Parola nouă" - -#: templates/resetpassword.php:7 -msgid "Reset password" -msgstr "Schimbă parola" - diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 00676c5fca6..c66c38c8c2e 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Claudiu , 2011. +# Claudiu , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-12 13:21+0000\n" +"Last-Translator: Claudiu \n" "Language-Team: Romanian (http://www.transifex.net/projects/p/owncloud/team/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,33 +18,37 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" -#: ajax/upload.php:24 +#: ajax/upload.php:19 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "Nu am întâmpinat nici eroare, fișierul a fost încărcat cu success" -#: ajax/upload.php:25 +#: ajax/upload.php:20 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "" +"Fișierul are o dimensiune mai mare decât cea specificată în variabila " +"upload_max_filesize din php.ini" -#: ajax/upload.php:26 +#: ajax/upload.php:21 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" +"Fișierul are o dimensiune mai mare decât variabile MAX_FILE_SIZE specificată" +" în formularul HTML" -#: ajax/upload.php:27 +#: ajax/upload.php:22 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "Fișierul a fost încărcat doar parțial" -#: ajax/upload.php:28 +#: ajax/upload.php:23 msgid "No file was uploaded" -msgstr "" +msgstr "Nu a fost încărcat nici un fișier" -#: ajax/upload.php:29 +#: ajax/upload.php:24 msgid "Missing a temporary folder" -msgstr "" +msgstr "Lipsă folder temporar" -#: appinfo/app.php:7 +#: appinfo/app.php:8 msgid "Files" msgstr "Fișiere" @@ -52,43 +56,55 @@ msgstr "Fișiere" msgid "Maximum upload size" msgstr "Dimensiunea maximă" +#: templates/index.php:7 +msgid "New" +msgstr "Nou" + #: templates/index.php:10 +msgid "Text file" +msgstr "Fișier text" + +#: templates/index.php:11 +msgid "Folder" +msgstr "Dosar" + +#: templates/index.php:12 +msgid "From the web" +msgstr "De pe internet" + +#: templates/index.php:22 msgid "Upload" msgstr "Încarcă" -#: templates/index.php:17 -msgid "New Folder" -msgstr "Director nou" - -#: templates/index.php:31 +#: templates/index.php:35 msgid "Nothing in here. Upload something!" msgstr "Nici un fișier, încarcă ceva!" -#: templates/index.php:39 +#: templates/index.php:43 msgid "Name" msgstr "Nume" -#: templates/index.php:41 +#: templates/index.php:45 msgid "Download" msgstr "Descarcă" -#: templates/index.php:45 +#: templates/index.php:49 msgid "Size" msgstr "Dimensiune" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Modified" msgstr "Modificat" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Delete" msgstr "Șterge" -#: templates/index.php:54 +#: templates/index.php:58 msgid "Upload too large" msgstr "Fișierul este prea mare" -#: templates/index.php:56 +#: templates/index.php:60 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." diff --git a/l10n/ro/gallery.po b/l10n/ro/gallery.po new file mode 100644 index 00000000000..38d92f23af2 --- /dev/null +++ b/l10n/ro/gallery.po @@ -0,0 +1,52 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Romanian (http://www.transifex.net/projects/p/owncloud/team/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" + + diff --git a/l10n/ro/media.po b/l10n/ro/media.po index f6c99afa9b2..17f7d45cd18 100644 --- a/l10n/ro/media.po +++ b/l10n/ro/media.po @@ -2,14 +2,15 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# Translators: # Claudiu , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-09-03 14:50+0200\n" -"PO-Revision-Date: 2011-08-31 08:19+0000\n" -"Last-Translator: rawbeef64 \n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Romanian (http://www.transifex.net/projects/p/owncloud/team/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,15 +18,15 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" -#: appinfo/app.php:31 +#: appinfo/app.php:32 msgid "Music" msgstr "Muzică" -#: templates/music.php:3 +#: templates/music.php:3 templates/player.php:13 msgid "Play" msgstr "Play" -#: templates/music.php:4 templates/music.php:30 +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 msgid "Pause" msgstr "Pauză" @@ -33,7 +34,7 @@ msgstr "Pauză" msgid "Previous" msgstr "Precedent" -#: templates/music.php:6 +#: templates/music.php:6 templates/player.php:15 msgid "Next" msgstr "Următor" @@ -45,11 +46,7 @@ msgstr "Fără sonor" msgid "Unmute" msgstr "Cu sonor" -#: templates/music.php:28 -msgid "Songs scanned" -msgstr "Melodii scanate" - -#: templates/music.php:29 +#: templates/music.php:25 msgid "Rescan Collection" msgstr "Rescanează colecția" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 76980cd737e..8e54463bb00 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -2,14 +2,15 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # -# Claudiu , 2011. +# Translators: +# Claudiu , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-09-03 14:50+0200\n" -"PO-Revision-Date: 2011-08-31 08:24+0000\n" -"Last-Translator: rawbeef64 \n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 16:32+0000\n" +"Last-Translator: icewind \n" "Language-Team: Romanian (http://www.transifex.net/projects/p/owncloud/team/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,22 +18,30 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" -#: ajax/openid.php:13 ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Eroare autentificare" +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "email schimbat" -#: ajax/openid.php:21 -msgid "OpenID Changed" -msgstr "OpenID schimbat" - -#: ajax/openid.php:23 ajax/setlanguage.php:23 +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 msgid "Invalid request" msgstr "Cerere eronată" -#: ajax/setlanguage.php:21 +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID schimbat" + +#: ajax/setlanguage.php:14 msgid "Language changed" msgstr "Limba a fost schimbată" +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "Nivel log-uri" + #: templates/apps.php:8 msgid "Add your application" msgstr "Adaugă propria ta aplicație" @@ -53,15 +62,15 @@ msgstr "de" msgid "Ask a question" msgstr "Întreabă" -#: templates/help.php:17 +#: templates/help.php:20 msgid "Problems connecting to help database." msgstr "Sunt probleme cu conectarea la baza de date" -#: templates/help.php:18 +#: templates/help.php:21 msgid "Go there manually." msgstr "Manual" -#: templates/help.php:26 +#: templates/help.php:29 msgid "Answer" msgstr "Răspuns" @@ -97,37 +106,53 @@ msgstr "arată" msgid "Change password" msgstr "Schimbă parola" -#: templates/personal.php:24 templates/personal.php:25 +#: templates/personal.php:24 +msgid "Email" +msgstr "Email" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "Adresa ta de email" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "Completați adresa de mail pentru a vă putea recupera parola" + +#: templates/personal.php:32 templates/personal.php:33 msgid "Language" msgstr "Limba" -#: templates/personal.php:30 -msgid "Help translating" -msgstr "Ajută la traducere" +#: templates/personal.php:38 +msgid "Help translate" +msgstr "Ajutați la traducere" -#: templates/personal.php:36 +#: templates/personal.php:45 msgid "use this address to connect to your ownCloud in your file manager" msgstr "" "folosește această adresă pentru a te conecta la managerul tău de fișiere din" " ownCloud" -#: templates/users.php:16 +#: templates/users.php:15 templates/users.php:30 msgid "Name" msgstr "Nume" -#: templates/users.php:17 +#: templates/users.php:16 templates/users.php:31 msgid "Password" msgstr "Parola" -#: templates/users.php:18 templates/users.php:36 +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 msgid "Groups" msgstr "Grupuri" -#: templates/users.php:24 +#: templates/users.php:23 msgid "Create" msgstr "Crează" -#: templates/users.php:48 +#: templates/users.php:33 +msgid "Quota" +msgstr "Quota" + +#: templates/users.php:58 msgid "Delete" msgstr "Șterge" diff --git a/l10n/ru/calendar.po b/l10n/ru/calendar.po index f2879ad1504..48668f7dea8 100644 --- a/l10n/ru/calendar.po +++ b/l10n/ru/calendar.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011. +# , 2011, 2012. # , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-21 21:02+0000\n" +"Last-Translator: jekader \n" "Language-Team: Russian (http://www.transifex.net/projects/p/owncloud/team/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,329 +19,411 @@ 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" -#: ajax/createcalendar.php:18 ajax/settimezone.php:19 -#: ajax/updatecalendar.php:18 -msgid "Authentication error" -msgstr "Ошибка аутентификации" +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "Новый часовой пояс:" -#: ajax/editeventform.php:25 -msgid "Wrong calendar" -msgstr "Неверный календарь" - -#: ajax/settimezone.php:27 +#: ajax/settimezone.php:22 msgid "Timezone changed" msgstr "Часовой пояс изменён" -#: ajax/settimezone.php:29 +#: ajax/settimezone.php:24 msgid "Invalid request" msgstr "Неверный запрос" -#: appinfo/app.php:19 templates/part.eventform.php:27 -#: templates/part.eventinfo.php:18 +#: appinfo/app.php:20 templates/calendar.php:14 +#: templates/part.eventform.php:20 msgid "Calendar" msgstr "Календарь" -#: lib/object.php:292 +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Неверный календарь" + +#: lib/app.php:60 lib/object.php:332 msgid "Birthday" msgstr "День рождения" -#: lib/object.php:293 +#: lib/app.php:61 lib/object.php:333 msgid "Business" msgstr "Бизнес" -#: lib/object.php:294 +#: lib/app.php:62 lib/object.php:334 msgid "Call" msgstr "Звонить" -#: lib/object.php:295 +#: lib/app.php:63 lib/object.php:335 msgid "Clients" msgstr "Клиенты" -#: lib/object.php:296 +#: lib/app.php:64 lib/object.php:336 msgid "Deliverer" msgstr "Доставщик" -#: lib/object.php:297 +#: lib/app.php:65 lib/object.php:337 msgid "Holidays" msgstr "Праздники" -#: lib/object.php:298 +#: lib/app.php:66 lib/object.php:338 msgid "Ideas" msgstr "Идеи" -#: lib/object.php:299 +#: lib/app.php:67 lib/object.php:339 msgid "Journey" msgstr "Поездка" -#: lib/object.php:300 +#: lib/app.php:68 lib/object.php:340 msgid "Jubilee" msgstr "Юбилей" -#: lib/object.php:301 +#: lib/app.php:69 lib/object.php:341 msgid "Meeting" msgstr "Встреча" -#: lib/object.php:302 +#: lib/app.php:70 lib/object.php:342 msgid "Other" msgstr "Другое" -#: lib/object.php:303 +#: lib/app.php:71 lib/object.php:343 msgid "Personal" msgstr "Личное" -#: lib/object.php:304 +#: lib/app.php:72 lib/object.php:344 msgid "Projects" msgstr "Проекты" -#: lib/object.php:305 +#: lib/app.php:73 lib/object.php:345 msgid "Questions" msgstr "Вопросы" -#: lib/object.php:306 +#: lib/app.php:74 lib/object.php:346 msgid "Work" msgstr "Работа" -#: lib/object.php:313 +#: lib/object.php:353 msgid "Does not repeat" msgstr "Не повторяется" -#: lib/object.php:314 +#: lib/object.php:354 msgid "Daily" msgstr "Ежедневно" -#: lib/object.php:315 +#: lib/object.php:355 msgid "Weekly" msgstr "Еженедельно" -#: lib/object.php:316 +#: lib/object.php:356 msgid "Every Weekday" msgstr "По будням" -#: lib/object.php:317 +#: lib/object.php:357 msgid "Bi-Weekly" msgstr "Каждые две недели" -#: lib/object.php:318 +#: lib/object.php:358 msgid "Monthly" msgstr "Каждый месяц" -#: lib/object.php:319 +#: lib/object.php:359 msgid "Yearly" msgstr "Каждый год" -#: lib/object.php:337 -msgid "Not an array" -msgstr "Не массив" +#: lib/object.php:366 +msgid "never" +msgstr "никогда" -#: templates/calendar.php:3 -msgid "All day" -msgstr "Весь день" +#: lib/object.php:367 +msgid "by occurrences" +msgstr "по числу повторений" -#: templates/calendar.php:32 -msgid "Sunday" -msgstr "Воскресенье" +#: lib/object.php:368 +msgid "by date" +msgstr "по дате" -#: templates/calendar.php:32 +#: lib/object.php:375 +msgid "by monthday" +msgstr "по дню месяца" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "по дню недели" + +#: lib/object.php:383 templates/lAfix.php:3 msgid "Monday" msgstr "Понедельник" -#: templates/calendar.php:32 +#: lib/object.php:384 templates/lAfix.php:4 msgid "Tuesday" msgstr "Вторник" -#: templates/calendar.php:32 +#: lib/object.php:385 templates/lAfix.php:5 msgid "Wednesday" msgstr "Среда" -#: templates/calendar.php:32 +#: lib/object.php:386 templates/lAfix.php:6 msgid "Thursday" msgstr "Четверг" -#: templates/calendar.php:32 +#: lib/object.php:387 templates/lAfix.php:7 msgid "Friday" msgstr "Пятница" -#: templates/calendar.php:32 +#: lib/object.php:388 templates/lAfix.php:8 msgid "Saturday" msgstr "Суббота" -#: templates/calendar.php:33 -msgid "Sun." -msgstr "Вс." +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "Воскресенье" -#: templates/calendar.php:33 -msgid "Mon." -msgstr "Пн." +#: lib/object.php:396 +msgid "events week of month" +msgstr "неделя месяца" -#: templates/calendar.php:33 -msgid "Tue." -msgstr "Вт." +#: lib/object.php:397 +msgid "first" +msgstr "первая" -#: templates/calendar.php:33 -msgid "Wed." -msgstr "Ср." +#: lib/object.php:398 +msgid "second" +msgstr "вторая" -#: templates/calendar.php:33 -msgid "Thu." -msgstr "Чт." +#: lib/object.php:399 +msgid "third" +msgstr "третья" -#: templates/calendar.php:33 -msgid "Fri." -msgstr "Пт." +#: lib/object.php:400 +msgid "fourth" +msgstr "червётрая" -#: templates/calendar.php:33 -msgid "Sat." -msgstr "Сб." +#: lib/object.php:401 +msgid "fifth" +msgstr "пятая" -#: templates/calendar.php:34 +#: lib/object.php:402 +msgid "last" +msgstr "последняя" + +#: lib/object.php:424 templates/lAfix.php:16 msgid "January" msgstr "Январь" -#: templates/calendar.php:34 +#: lib/object.php:425 templates/lAfix.php:17 msgid "February" msgstr "Февраль" -#: templates/calendar.php:34 +#: lib/object.php:426 templates/lAfix.php:18 msgid "March" msgstr "Март" -#: templates/calendar.php:34 +#: lib/object.php:427 templates/lAfix.php:19 msgid "April" msgstr "Апрель" -#: templates/calendar.php:34 +#: lib/object.php:428 templates/lAfix.php:20 msgid "May" msgstr "Май" -#: templates/calendar.php:34 +#: lib/object.php:429 templates/lAfix.php:21 msgid "June" msgstr "Июнь" -#: templates/calendar.php:34 +#: lib/object.php:430 templates/lAfix.php:22 msgid "July" msgstr "Июль" -#: templates/calendar.php:34 +#: lib/object.php:431 templates/lAfix.php:23 msgid "August" msgstr "Август" -#: templates/calendar.php:34 +#: lib/object.php:432 templates/lAfix.php:24 msgid "September" msgstr "Сентябрь" -#: templates/calendar.php:34 +#: lib/object.php:433 templates/lAfix.php:25 msgid "October" msgstr "Октябрь" -#: templates/calendar.php:34 +#: lib/object.php:434 templates/lAfix.php:26 msgid "November" msgstr "Ноябрь" -#: templates/calendar.php:34 +#: lib/object.php:435 templates/lAfix.php:27 msgid "December" msgstr "Декабрь" -#: templates/calendar.php:35 -msgid "Jan." -msgstr "Янв." +#: lib/object.php:441 +msgid "by events date" +msgstr "по дате событий" -#: templates/calendar.php:35 -msgid "Feb." -msgstr "Фев." +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "по дням недели" -#: templates/calendar.php:35 -msgid "Mar." -msgstr "Мар." +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "по номерам недели" -#: templates/calendar.php:35 -msgid "Apr." -msgstr "Апр." +#: lib/object.php:444 +msgid "by day and month" +msgstr "по дню и месяцу" -#: templates/calendar.php:35 -msgid "May." -msgstr "Май." +#: lib/object.php:467 +msgid "Not an array" +msgstr "Не массив" -#: templates/calendar.php:35 -msgid "Jun." -msgstr "Июн." +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "Дата" -#: templates/calendar.php:35 -msgid "Jul." -msgstr "Июл." +#: lib/search.php:40 +msgid "Cal." +msgstr "Кал." -#: templates/calendar.php:35 -msgid "Aug." -msgstr "Авг." +#: templates/calendar.php:10 +msgid "All day" +msgstr "Весь день" -#: templates/calendar.php:35 -msgid "Sep." -msgstr "Сен." +#: templates/calendar.php:11 templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "Новый Календарь" -#: templates/calendar.php:35 -msgid "Oct." -msgstr "Окт." +#: templates/calendar.php:12 +msgid "Missing fields" +msgstr "Незаполненные поля" -#: templates/calendar.php:35 -msgid "Nov." -msgstr "Ноя." +#: templates/calendar.php:13 templates/part.eventform.php:3 +msgid "Title" +msgstr "Название" -#: templates/calendar.php:35 -msgid "Dec." -msgstr "Дек." +#: templates/calendar.php:15 +msgid "From Date" +msgstr "Дата начала" -#: templates/calendar.php:36 templates/calendar.php:50 -#: templates/calendar.php:116 +#: templates/calendar.php:16 +msgid "From Time" +msgstr "Время начала" + +#: templates/calendar.php:17 +msgid "To Date" +msgstr "Дата окончания" + +#: templates/calendar.php:18 +msgid "To Time" +msgstr "Время окончания" + +#: templates/calendar.php:19 +msgid "The event ends before it starts" +msgstr "Окончание события раньше, чем его начало" + +#: templates/calendar.php:20 +msgid "There was a database fail" +msgstr "Ошибка базы данных" + +#: templates/calendar.php:38 msgid "Week" msgstr "Неделя" -#: templates/calendar.php:37 templates/calendar.php:51 -msgid "Weeks" -msgstr "Недели" - -#: templates/calendar.php:38 -msgid "More before {startdate}" -msgstr "Еще до {startdate}" - #: templates/calendar.php:39 -msgid "More after {enddate}" -msgstr "Больше после {startdate}" - -#: templates/calendar.php:49 -msgid "Day" -msgstr "День" - -#: templates/calendar.php:52 msgid "Month" msgstr "Месяц" -#: templates/calendar.php:53 +#: templates/calendar.php:40 msgid "List" msgstr "Список" -#: templates/calendar.php:58 +#: templates/calendar.php:46 msgid "Today" msgstr "Сегодня" -#: templates/calendar.php:59 +#: templates/calendar.php:47 msgid "Calendars" msgstr "Календари" -#: templates/calendar.php:76 templates/calendar.php:94 -msgid "Time" -msgstr "Время" - -#: templates/calendar.php:169 +#: templates/calendar.php:65 msgid "There was a fail, while parsing the file." msgstr "Не удалось обработать файл." +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "Вс." + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "Пн." + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "Вт." + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "Ср." + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "Чт." + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "Пт." + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "Сб." + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "Янв." + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "Фев." + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "Мар." + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "Сен." + +#: templates/lAfix.php:32 +msgid "May." +msgstr "Май." + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "Июн." + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "Июл." + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "Авг." + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "Сен." + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "Окт." + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "Ноя." + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "Дек." + #: templates/part.choosecalendar.php:1 msgid "Choose active calendars" msgstr "Выберите активные календари" -#: templates/part.choosecalendar.php:15 -msgid "New Calendar" -msgstr "Новый Календарь" - #: templates/part.choosecalendar.php:20 #: templates/part.choosecalendar.rowfields.php:4 msgid "CalDav Link" @@ -352,14 +434,13 @@ msgid "Download" msgstr "Скачать" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.eventinfo.php:64 msgid "Edit" msgstr "Редактировать" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.editevent.php:8 +#: templates/part.editevent.php:9 msgid "Delete" -msgstr "" +msgstr "Удалить" #: templates/part.editcalendar.php:9 msgid "New calendar" @@ -377,90 +458,181 @@ msgstr "Отображаемое имя" msgid "Active" msgstr "Активен" -#: templates/part.editcalendar.php:29 templates/part.eventform.php:88 -#: templates/part.eventinfo.php:58 -msgid "Description" -msgstr "Описание" - -#: templates/part.editcalendar.php:35 +#: templates/part.editcalendar.php:29 msgid "Calendar color" msgstr "Цвет календаря" -#: templates/part.editcalendar.php:41 +#: templates/part.editcalendar.php:42 msgid "Save" msgstr "Сохранить" -#: templates/part.editcalendar.php:41 templates/part.editevent.php:7 +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 #: templates/part.newevent.php:6 msgid "Submit" msgstr "Отправить" -#: templates/part.editcalendar.php:42 +#: templates/part.editcalendar.php:43 msgid "Cancel" msgstr "Отмена" -#: templates/part.editevent.php:1 templates/part.eventinfo.php:1 +#: templates/part.editevent.php:1 msgid "Edit an event" msgstr "Редактировать событие" -#: templates/part.eventform.php:3 templates/part.eventinfo.php:4 -msgid "Title" -msgstr "Название" +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "Экспортировать" #: templates/part.eventform.php:5 msgid "Title of the Event" msgstr "Название событие" -#: templates/part.eventform.php:9 templates/part.eventinfo.php:9 -msgid "Location" -msgstr "Место" - #: templates/part.eventform.php:11 -msgid "Location of the Event" -msgstr "Место события" - -#: templates/part.eventform.php:17 templates/part.eventinfo.php:16 msgid "Category" msgstr "Категория" -#: templates/part.eventform.php:19 +#: templates/part.eventform.php:13 msgid "Select category" msgstr "Выбрать категорию" -#: templates/part.eventform.php:45 templates/part.eventinfo.php:28 +#: templates/part.eventform.php:37 msgid "All Day Event" msgstr "Событие на весь день" -#: templates/part.eventform.php:49 templates/part.eventinfo.php:31 +#: templates/part.eventform.php:41 msgid "From" msgstr "От" -#: templates/part.eventform.php:57 templates/part.eventinfo.php:38 +#: templates/part.eventform.php:49 msgid "To" msgstr "До" -#: templates/part.eventform.php:65 templates/part.eventinfo.php:44 +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "Дополнительные параметры" + +#: templates/part.eventform.php:61 msgid "Repeat" msgstr "Повтор" -#: templates/part.eventform.php:81 templates/part.eventinfo.php:51 -msgid "Attendees" -msgstr "Присутствующие" +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "Дополнительно" -#: templates/part.eventform.php:89 +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "Выбрать дни недели" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "Выбрать дни" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "и день года события" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "и день месяца события" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "Выбрать месяцы" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "Выбрать недели" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "и номер недели события" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "Интервал" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "Окончание" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "повторений" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Место" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Место события" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Описание" + +#: templates/part.eventform.php:218 msgid "Description of the Event" msgstr "Описание события" -#: templates/part.eventinfo.php:63 -msgid "Close" -msgstr "Закрыть" +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "Импортировать календарь из файла" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "Пожалуйста, выберите календарь" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "Создать новый календарь" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "Название нового календаря" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "Импортировать" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "Импортируется календарь" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "Календарь успешно импортирован" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "Закрыть Сообщение" #: templates/part.newevent.php:1 msgid "Create a new event" msgstr "Создать новое событие" -#: templates/settings.php:11 +#: templates/settings.php:13 msgid "Timezone" msgstr "Часовой пояс" +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "Всегда проверяйте изменение часового пояса" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "Формат времени" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24ч" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12ч" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "Адрес синхронизации календаря CalDAV:" + diff --git a/l10n/ru/contacts.po b/l10n/ru/contacts.po index d571caba891..051d0da34e3 100644 --- a/l10n/ru/contacts.po +++ b/l10n/ru/contacts.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. +# , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 20:10+0200\n" -"PO-Revision-Date: 2011-09-23 18:10+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" "Language-Team: Russian (http://www.transifex.net/projects/p/owncloud/team/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,164 +19,265 @@ 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" -#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 -#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 -#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 -#: ajax/showsetproperty.php:32 photo.php:32 -msgid "You need to log in." -msgstr "" +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." +msgstr "Ошибка (де)активации адресной книги." -#: ajax/addcard.php:37 +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "Произошла ошибка при добавлении контакта." + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "Невозможно добавить пустой параметр." + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "Как минимум одно поле адреса должно быть заполнено." + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "Ошибка добавления информации к контакту." + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "Ошибка добавления адресной книги." + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "Ошибка активации адресной книги." + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "Ошибка удаления информации из контакта." + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "Ошибка обновления информации контакта." + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "Ошибка обновления адресной книги." + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "Контакты" + +#: lib/app.php:52 msgid "This is not your addressbook." -msgstr "" +msgstr "Это не ваша адресная книга." -#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 -#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 -#: ajax/showsetproperty.php:38 photo.php:39 +#: lib/app.php:61 photo.php:36 msgid "Contact could not be found." -msgstr "" +msgstr "Контакт не найден." -#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 -#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 -#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 -msgid "This is not your contact." -msgstr "" - -#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 -#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 -msgid "vCard could not be read." -msgstr "" - -#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 -#: ajax/showsetproperty.php:62 +#: lib/app.php:89 msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" +msgstr "Информация о vCard некорректна. Пожалуйста, обновите страницу." -#: photo.php:53 -msgid "This card is not RFC compatible." -msgstr "" - -#: photo.php:90 -msgid "This card does not contain a photo." -msgstr "" - -#: templates/index.php:8 -msgid "Add Contact" -msgstr "" - -#: templates/part.addcardform.php:5 -msgid "Group" -msgstr "" - -#: templates/part.addcardform.php:12 templates/part.property.php:3 -msgid "Name" -msgstr "" - -#: templates/part.addcardform.php:14 -msgid "Create Contact" -msgstr "" - -#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 msgid "Address" -msgstr "" +msgstr "Адрес" -#: templates/part.addpropertyform.php:5 +#: lib/app.php:102 templates/part.addcardform.php:43 msgid "Telephone" -msgstr "" +msgstr "Телефон" -#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 msgid "Email" -msgstr "" +msgstr "Ящик эл. почты" -#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 msgid "Organization" -msgstr "" +msgstr "Организация" -#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +#: lib/app.php:116 lib/app.php:123 msgid "Work" -msgstr "" +msgstr "Рабочий" -#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +#: lib/app.php:117 lib/app.php:121 msgid "Home" -msgstr "" +msgstr "Домашний" -#: templates/part.addpropertyform.php:20 templates/part.property.php:48 -#: templates/part.setpropertyform.php:5 -msgid "PO Box" -msgstr "" - -#: templates/part.addpropertyform.php:21 templates/part.property.php:51 -#: templates/part.setpropertyform.php:6 -msgid "Extended" -msgstr "" - -#: templates/part.addpropertyform.php:22 templates/part.property.php:54 -#: templates/part.setpropertyform.php:7 -msgid "Street" -msgstr "" - -#: templates/part.addpropertyform.php:23 templates/part.property.php:57 -#: templates/part.setpropertyform.php:8 -msgid "City" -msgstr "" - -#: templates/part.addpropertyform.php:24 templates/part.property.php:60 -#: templates/part.setpropertyform.php:9 -msgid "Region" -msgstr "" - -#: templates/part.addpropertyform.php:25 templates/part.property.php:63 -#: templates/part.setpropertyform.php:10 -msgid "Zipcode" -msgstr "" - -#: templates/part.addpropertyform.php:26 templates/part.property.php:66 -#: templates/part.setpropertyform.php:11 -msgid "Country" -msgstr "" - -#: templates/part.addpropertyform.php:31 +#: lib/app.php:122 msgid "Mobile" -msgstr "" +msgstr "Мобильный" -#: templates/part.addpropertyform.php:33 +#: lib/app.php:124 msgid "Text" -msgstr "" +msgstr "Текст" -#: templates/part.addpropertyform.php:34 +#: lib/app.php:125 msgid "Voice" -msgstr "" +msgstr "Голос" -#: templates/part.addpropertyform.php:35 +#: lib/app.php:126 msgid "Fax" -msgstr "" +msgstr "Факс" -#: templates/part.addpropertyform.php:36 +#: lib/app.php:127 msgid "Video" -msgstr "" +msgstr "Видео" -#: templates/part.addpropertyform.php:37 +#: lib/app.php:128 msgid "Pager" -msgstr "" +msgstr "Пейджер" -#: templates/part.details.php:33 +#: lib/search.php:22 +msgid "Contact" +msgstr "Контакт" + +#: photo.php:42 +msgid "This is not your contact." +msgstr "Это не контакт." + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Добавить Контакт" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "Адресные книги" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "Адресная книга" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Имя" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "Тип" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "АО" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Расширенный" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Улица" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Город" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Область" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "Почтовый индекс" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "Страна" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Создать Контакт" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "Выберите активные адресные книги" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "Новая адресная книга" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "Ссылка CardDAV" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "Скачать" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Редактировать" + +#: templates/part.chooseaddressbook.rowfields.php:5 msgid "Delete" -msgstr "" +msgstr "Удалить" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "Скачать контакт" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "Удалить контакт" #: templates/part.details.php:34 -msgid "Add Property" -msgstr "" +msgid "Add" +msgstr "Добавить" -#: templates/part.property.php:9 +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "Новая адресная книга" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "Править адресную книгу" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "Отображаемое имя" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "Активно" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "Сохранить" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "Отправить" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "Отменить" + +#: templates/part.property.php:3 msgid "Birthday" -msgstr "" +msgstr "День рождения" -#: templates/part.property.php:29 +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "Предпочитаемый" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 msgid "Phone" -msgstr "" +msgstr "Телефон" -#: templates/part.setpropertyform.php:17 -msgid "Edit" -msgstr "" +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "Обновить" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "Адрес синхронизации CardDAV:" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 49a8891db3b..0261b8c0697 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011. +# , 2011, 2012. # , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-04 17:42+0000\n" +"POT-Creation-Date: 2012-01-24 00:25+0100\n" +"PO-Revision-Date: 2012-01-21 20:30+0000\n" "Last-Translator: jekader \n" "Language-Team: Russian (http://www.transifex.net/projects/p/owncloud/team/ru/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,51 @@ 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" +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "Сброс пароля OwnCloud" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "Используйте следующую ссылку чтобы сбросить пароль: {link}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "На ваш адрес Email выслана ссылка для сброса пароля." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Запрошено" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Не удалось войти!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Имя пользователя" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Запросить сброс" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Ваш пароль был сброшен" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "На страницу авторизации" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Новый пароль" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Сбросить пароль" + #: strings.php:5 msgid "Personal" msgstr "Личное" @@ -47,54 +92,50 @@ msgstr "Облако не найдено" msgid "Create an admin account" msgstr "Создать учётную запись администратора" -#: templates/installation.php:21 -msgid "Username" -msgstr "Имя пользователя" - -#: templates/installation.php:22 +#: templates/installation.php:26 templates/login.php:12 msgid "Password" msgstr "Пароль" -#: templates/installation.php:27 -msgid "Configure the database" -msgstr "Настройка базы данных" - -#: templates/installation.php:32 templates/installation.php:43 -#: templates/installation.php:53 -msgid "will be used" -msgstr "будет использовано" - -#: templates/installation.php:64 -msgid "Database user" -msgstr "Имя пользователя для базы данных" - -#: templates/installation.php:65 -msgid "Database password" -msgstr "Пароль для базы данных" - -#: templates/installation.php:66 -msgid "Database name" -msgstr "Название базы данных" - -#: templates/installation.php:72 +#: templates/installation.php:32 msgid "Advanced" msgstr "Дополнительно" -#: templates/installation.php:75 -msgid "Database host" -msgstr "Хост базы данных" - -#: templates/installation.php:76 +#: templates/installation.php:34 msgid "Data folder" msgstr "Директория с данными" +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Настройка базы данных" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "будет использовано" + #: templates/installation.php:79 +msgid "Database user" +msgstr "Имя пользователя для базы данных" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Пароль для базы данных" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Название базы данных" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Хост базы данных" + +#: templates/installation.php:98 msgid "Finish setup" msgstr "Завершить установку" #: templates/layout.guest.php:35 -msgid "gives you freedom and control over your own data" -msgstr "даёт Вам свободу и контроль над Вашими данными" +msgid "web services under your control" +msgstr "Сетевые службы под твоим контролем" #: templates/layout.user.php:34 msgid "Log out" @@ -104,38 +145,22 @@ msgstr "Выйти" msgid "Settings" msgstr "Настройки" -#: templates/login.php:4 +#: templates/login.php:5 msgid "Lost your password?" msgstr "Забыли пароль?" -#: templates/login.php:9 templates/login.php:13 +#: templates/login.php:15 msgid "remember" msgstr "запомнить" +#: templates/login.php:16 +msgid "Log in" +msgstr "Войти" + #: templates/logout.php:1 msgid "You are logged out." msgstr "Вы вышли." -#: templates/lostpassword.php:3 -msgid "You will receive a link to reset your password via Email." -msgstr "Вы получите ссылку для сброса пароля на Ваш e-mail." - -#: templates/lostpassword.php:5 -msgid "Requested" -msgstr "Запрошено" - -#: templates/lostpassword.php:8 -msgid "Login failed!" -msgstr "Войти не удалось!" - -#: templates/lostpassword.php:10 -msgid "Username or Email" -msgstr "Имя пользователя или e-mail" - -#: templates/lostpassword.php:11 -msgid "Request reset" -msgstr "Запросить сброс" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "пред" @@ -144,16 +169,4 @@ msgstr "пред" msgid "next" msgstr "след" -#: templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "Пароль был сброшен" - -#: templates/resetpassword.php:6 -msgid "New password" -msgstr "Новый пароль" - -#: templates/resetpassword.php:7 -msgid "Reset password" -msgstr "Сбросить пароль" - diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 2345bd74ead..d29c105d40f 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:25+0100\n" +"PO-Revision-Date: 2012-01-21 20:27+0000\n" +"Last-Translator: jekader \n" "Language-Team: Russian (http://www.transifex.net/projects/p/owncloud/team/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,33 +19,35 @@ 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" -#: ajax/upload.php:24 +#: ajax/upload.php:19 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "Файл успешно загружен" -#: ajax/upload.php:25 +#: ajax/upload.php:20 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "" +"Файл превышает допустимые размеры (описаны как upload_max_filesize в " +"php.ini)" -#: ajax/upload.php:26 +#: ajax/upload.php:21 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "" +msgstr "Файл превышает размер MAX_FILE_SIZE, указаный в HTML-форме" -#: ajax/upload.php:27 +#: ajax/upload.php:22 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "Файл был частично загружен" -#: ajax/upload.php:28 +#: ajax/upload.php:23 msgid "No file was uploaded" -msgstr "" +msgstr "Файл не был загружен" -#: ajax/upload.php:29 +#: ajax/upload.php:24 msgid "Missing a temporary folder" -msgstr "" +msgstr "Невозможно найти временную директорию" -#: appinfo/app.php:7 +#: appinfo/app.php:8 msgid "Files" msgstr "Файлы" @@ -52,43 +55,55 @@ msgstr "Файлы" msgid "Maximum upload size" msgstr "Максимальный размер файла" +#: templates/index.php:7 +msgid "New" +msgstr "Новый" + #: templates/index.php:10 +msgid "Text file" +msgstr "Текстовый файл" + +#: templates/index.php:11 +msgid "Folder" +msgstr "Папка" + +#: templates/index.php:12 +msgid "From the web" +msgstr "Из интернета" + +#: templates/index.php:22 msgid "Upload" msgstr "Закачать" -#: templates/index.php:17 -msgid "New Folder" -msgstr "Новая папка" - -#: templates/index.php:31 +#: templates/index.php:35 msgid "Nothing in here. Upload something!" msgstr "Здесь ничего нет. Закачайте что-нибудь!" -#: templates/index.php:39 +#: templates/index.php:43 msgid "Name" msgstr "Название" -#: templates/index.php:41 +#: templates/index.php:45 msgid "Download" msgstr "Скачать" -#: templates/index.php:45 +#: templates/index.php:49 msgid "Size" msgstr "Размер" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Modified" msgstr "Изменен" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Delete" msgstr "Удалить" -#: templates/index.php:54 +#: templates/index.php:58 msgid "Upload too large" msgstr "Файл слишком большой" -#: templates/index.php:56 +#: templates/index.php:60 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." diff --git a/l10n/ru/gallery.po b/l10n/ru/gallery.po new file mode 100644 index 00000000000..fa5b5be4e20 --- /dev/null +++ b/l10n/ru/gallery.po @@ -0,0 +1,53 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Russian (http://www.transifex.net/projects/p/owncloud/team/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"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" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "Галерея" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "Сканирование папок" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "Создание миниатюр" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "Вы желаете удалить альбом" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "Введите название галереи" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "Пересканировать" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "Назад" + + diff --git a/l10n/ru/media.po b/l10n/ru/media.po index 966ac2e46a7..7beb05be078 100644 --- a/l10n/ru/media.po +++ b/l10n/ru/media.po @@ -2,14 +2,15 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# Translators: # , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-09-03 14:50+0200\n" -"PO-Revision-Date: 2011-09-03 12:59+0000\n" -"Last-Translator: tonymc \n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Russian (http://www.transifex.net/projects/p/owncloud/team/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,15 +18,15 @@ 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" -#: appinfo/app.php:31 +#: appinfo/app.php:32 msgid "Music" msgstr "Музыка" -#: templates/music.php:3 +#: templates/music.php:3 templates/player.php:13 msgid "Play" msgstr "Проиграть" -#: templates/music.php:4 templates/music.php:30 +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 msgid "Pause" msgstr "Пауза" @@ -33,7 +34,7 @@ msgstr "Пауза" msgid "Previous" msgstr "Предыдущий" -#: templates/music.php:6 +#: templates/music.php:6 templates/player.php:15 msgid "Next" msgstr "Следующий" @@ -45,11 +46,7 @@ msgstr "Отключить звук" msgid "Unmute" msgstr "Включить звук" -#: templates/music.php:28 -msgid "Songs scanned" -msgstr "Песен просканировано" - -#: templates/music.php:29 +#: templates/music.php:25 msgid "Rescan Collection" msgstr "Пересканировать коллекцию" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 42149eb309a..aa1550c4e7f 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -2,14 +2,17 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# Translators: +# , 2012. +# , 2012. # , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-04 16:48+0200\n" -"PO-Revision-Date: 2011-09-03 13:59+0000\n" -"Last-Translator: tonymc \n" +"POT-Creation-Date: 2012-01-24 00:25+0100\n" +"PO-Revision-Date: 2012-01-21 23:05+0000\n" +"Last-Translator: icewind \n" "Language-Team: Russian (http://www.transifex.net/projects/p/owncloud/team/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,22 +20,30 @@ 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" -#: ajax/openid.php:13 ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Ошибка аутентификации" +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "адрес электронной почты изменён" -#: ajax/openid.php:21 -msgid "OpenID Changed" -msgstr "OpenID был изменён" - -#: ajax/openid.php:23 ajax/setlanguage.php:23 +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 msgid "Invalid request" msgstr "Неверный запрос" -#: ajax/setlanguage.php:21 +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID был изменён" + +#: ajax/setlanguage.php:14 msgid "Language changed" msgstr "Язык изменён" +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "Уровень детализации журнала" + #: templates/apps.php:8 msgid "Add your application" msgstr "Добавить ваше приложение" @@ -53,15 +64,15 @@ msgstr "от" msgid "Ask a question" msgstr "Задать вопрос" -#: templates/help.php:17 +#: templates/help.php:20 msgid "Problems connecting to help database." msgstr "Проблема соединения с базой данных помощи." -#: templates/help.php:18 +#: templates/help.php:21 msgid "Go there manually." msgstr "Войти самостоятельно." -#: templates/help.php:26 +#: templates/help.php:29 msgid "Answer" msgstr "Ответ" @@ -97,37 +108,55 @@ msgstr "показать" msgid "Change password" msgstr "Сменить пароль" -#: templates/personal.php:24 templates/personal.php:25 +#: templates/personal.php:24 +msgid "Email" +msgstr "e-mail" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "Ваш адрес электронной почты" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" +"Введите адрес электронной почты чтобы появилась возможность восстановления " +"пароля" + +#: templates/personal.php:32 templates/personal.php:33 msgid "Language" msgstr "Язык" -#: templates/personal.php:30 -msgid "Help translating" -msgstr "Помощь с переводом" +#: templates/personal.php:38 +msgid "Help translate" +msgstr "Помочь с переводом" -#: templates/personal.php:37 +#: templates/personal.php:45 msgid "use this address to connect to your ownCloud in your file manager" msgstr "" "используйте данный адрес для подключения к ownCloud в вашем файловом " "менеджере" -#: templates/users.php:16 +#: templates/users.php:15 templates/users.php:30 msgid "Name" msgstr "Имя" -#: templates/users.php:17 +#: templates/users.php:16 templates/users.php:31 msgid "Password" msgstr "Пароль" -#: templates/users.php:18 templates/users.php:36 +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 msgid "Groups" msgstr "Группы" -#: templates/users.php:24 +#: templates/users.php:23 msgid "Create" msgstr "Создать" -#: templates/users.php:48 +#: templates/users.php:33 +msgid "Quota" +msgstr "Квота" + +#: templates/users.php:58 msgid "Delete" msgstr "Удалить" diff --git a/l10n/sk_SK/calendar.po b/l10n/sk_SK/calendar.po new file mode 100644 index 00000000000..96bbf6720ad --- /dev/null +++ b/l10n/sk_SK/calendar.po @@ -0,0 +1,637 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011, 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-16 21:38+0000\n" +"Last-Translator: intense \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.net/projects/p/owncloud/team/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" + +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "Nová časová zóna:" + +#: ajax/settimezone.php:22 +msgid "Timezone changed" +msgstr "Časové pásmo zmenené" + +#: ajax/settimezone.php:24 +msgid "Invalid request" +msgstr "Neplatná požiadavka" + +#: appinfo/app.php:20 templates/calendar.php:14 +#: templates/part.eventform.php:20 +msgid "Calendar" +msgstr "Kalendár" + +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Zlý kalendár" + +#: lib/app.php:60 lib/object.php:332 +msgid "Birthday" +msgstr "Narodeniny" + +#: lib/app.php:61 lib/object.php:333 +msgid "Business" +msgstr "Podnikanie" + +#: lib/app.php:62 lib/object.php:334 +msgid "Call" +msgstr "Hovor" + +#: lib/app.php:63 lib/object.php:335 +msgid "Clients" +msgstr "Klienti" + +#: lib/app.php:64 lib/object.php:336 +msgid "Deliverer" +msgstr "Doručovateľ" + +#: lib/app.php:65 lib/object.php:337 +msgid "Holidays" +msgstr "Prázdniny" + +#: lib/app.php:66 lib/object.php:338 +msgid "Ideas" +msgstr "Nápady" + +#: lib/app.php:67 lib/object.php:339 +msgid "Journey" +msgstr "Cesta" + +#: lib/app.php:68 lib/object.php:340 +msgid "Jubilee" +msgstr "Jubileá" + +#: lib/app.php:69 lib/object.php:341 +msgid "Meeting" +msgstr "Stretnutia" + +#: lib/app.php:70 lib/object.php:342 +msgid "Other" +msgstr "Ostatné" + +#: lib/app.php:71 lib/object.php:343 +msgid "Personal" +msgstr "Osobné" + +#: lib/app.php:72 lib/object.php:344 +msgid "Projects" +msgstr "Projekty" + +#: lib/app.php:73 lib/object.php:345 +msgid "Questions" +msgstr "Otázky" + +#: lib/app.php:74 lib/object.php:346 +msgid "Work" +msgstr "Práca" + +#: lib/object.php:353 +msgid "Does not repeat" +msgstr "Neopakovať" + +#: lib/object.php:354 +msgid "Daily" +msgstr "Denne" + +#: lib/object.php:355 +msgid "Weekly" +msgstr "Týždenne" + +#: lib/object.php:356 +msgid "Every Weekday" +msgstr "Každý výkend" + +#: lib/object.php:357 +msgid "Bi-Weekly" +msgstr "Každý druhý týždeň" + +#: lib/object.php:358 +msgid "Monthly" +msgstr "Mesačne" + +#: lib/object.php:359 +msgid "Yearly" +msgstr "Ročne" + +#: lib/object.php:366 +msgid "never" +msgstr "nikdy" + +#: lib/object.php:367 +msgid "by occurrences" +msgstr "podľa výskytu" + +#: lib/object.php:368 +msgid "by date" +msgstr "podľa dátumu" + +#: lib/object.php:375 +msgid "by monthday" +msgstr "" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "" + +#: lib/object.php:383 templates/lAfix.php:3 +msgid "Monday" +msgstr "Pondelok" + +#: lib/object.php:384 templates/lAfix.php:4 +msgid "Tuesday" +msgstr "Utorok" + +#: lib/object.php:385 templates/lAfix.php:5 +msgid "Wednesday" +msgstr "Streda" + +#: lib/object.php:386 templates/lAfix.php:6 +msgid "Thursday" +msgstr "Štvrtok" + +#: lib/object.php:387 templates/lAfix.php:7 +msgid "Friday" +msgstr "Piatok" + +#: lib/object.php:388 templates/lAfix.php:8 +msgid "Saturday" +msgstr "Sobota" + +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "Nedeľa" + +#: lib/object.php:396 +msgid "events week of month" +msgstr "" + +#: lib/object.php:397 +msgid "first" +msgstr "prvý" + +#: lib/object.php:398 +msgid "second" +msgstr "druhý" + +#: lib/object.php:399 +msgid "third" +msgstr "tretí" + +#: lib/object.php:400 +msgid "fourth" +msgstr "štvrtý" + +#: lib/object.php:401 +msgid "fifth" +msgstr "piaty" + +#: lib/object.php:402 +msgid "last" +msgstr "posledný" + +#: lib/object.php:424 templates/lAfix.php:16 +msgid "January" +msgstr "Január" + +#: lib/object.php:425 templates/lAfix.php:17 +msgid "February" +msgstr "Február" + +#: lib/object.php:426 templates/lAfix.php:18 +msgid "March" +msgstr "Marec" + +#: lib/object.php:427 templates/lAfix.php:19 +msgid "April" +msgstr "Apríl" + +#: lib/object.php:428 templates/lAfix.php:20 +msgid "May" +msgstr "Máj" + +#: lib/object.php:429 templates/lAfix.php:21 +msgid "June" +msgstr "Jún" + +#: lib/object.php:430 templates/lAfix.php:22 +msgid "July" +msgstr "Júl" + +#: lib/object.php:431 templates/lAfix.php:23 +msgid "August" +msgstr "August" + +#: lib/object.php:432 templates/lAfix.php:24 +msgid "September" +msgstr "September" + +#: lib/object.php:433 templates/lAfix.php:25 +msgid "October" +msgstr "Október" + +#: lib/object.php:434 templates/lAfix.php:26 +msgid "November" +msgstr "November" + +#: lib/object.php:435 templates/lAfix.php:27 +msgid "December" +msgstr "December" + +#: lib/object.php:441 +msgid "by events date" +msgstr "podľa dátumu udalosti" + +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "" + +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "" + +#: lib/object.php:444 +msgid "by day and month" +msgstr "podľa dňa a mesiaca" + +#: lib/object.php:467 +msgid "Not an array" +msgstr "Nie je pole" + +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "Dátum" + +#: lib/search.php:40 +msgid "Cal." +msgstr "" + +#: templates/calendar.php:10 +msgid "All day" +msgstr "Celý deň" + +#: templates/calendar.php:11 templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "Nový kalendár" + +#: templates/calendar.php:12 +msgid "Missing fields" +msgstr "Nevyplnené položky" + +#: templates/calendar.php:13 templates/part.eventform.php:3 +msgid "Title" +msgstr "Nadpis" + +#: templates/calendar.php:15 +msgid "From Date" +msgstr "Od Dátumu" + +#: templates/calendar.php:16 +msgid "From Time" +msgstr "Od Času" + +#: templates/calendar.php:17 +msgid "To Date" +msgstr "Do Dátumu" + +#: templates/calendar.php:18 +msgid "To Time" +msgstr "Do Času" + +#: templates/calendar.php:19 +msgid "The event ends before it starts" +msgstr "Udalosť končí ešte pred tým než začne" + +#: templates/calendar.php:20 +msgid "There was a database fail" +msgstr "Nastala chyba databázy" + +#: templates/calendar.php:38 +msgid "Week" +msgstr "Týždeň" + +#: templates/calendar.php:39 +msgid "Month" +msgstr "Mesiac" + +#: templates/calendar.php:40 +msgid "List" +msgstr "Zoznam" + +#: templates/calendar.php:46 +msgid "Today" +msgstr "Dnes" + +#: templates/calendar.php:47 +msgid "Calendars" +msgstr "Kalendáre" + +#: templates/calendar.php:65 +msgid "There was a fail, while parsing the file." +msgstr "Nastala chyba počas parsovania súboru." + +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "Ned." + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "Pon." + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "Ut." + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "Str." + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "Štv." + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "Pia." + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "So." + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "Jan." + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "Feb." + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "Mar." + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "Apr." + +#: templates/lAfix.php:32 +msgid "May." +msgstr "Máj" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "Jún" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "Júl" + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "Aug." + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "Sep." + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "Okt." + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "Nov." + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "Dec." + +#: templates/part.choosecalendar.php:1 +msgid "Choose active calendars" +msgstr "Zvoľte aktívne kalendáre" + +#: templates/part.choosecalendar.php:20 +#: templates/part.choosecalendar.rowfields.php:4 +msgid "CalDav Link" +msgstr "CalDav odkaz" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Download" +msgstr "Stiahnuť" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Edit" +msgstr "Upraviť" + +#: templates/part.choosecalendar.rowfields.php:4 +#: templates/part.editevent.php:9 +msgid "Delete" +msgstr "Odstrániť" + +#: templates/part.editcalendar.php:9 +msgid "New calendar" +msgstr "Nový kalendár" + +#: templates/part.editcalendar.php:9 +msgid "Edit calendar" +msgstr "Upraviť kalendár" + +#: templates/part.editcalendar.php:12 +msgid "Displayname" +msgstr "Zobrazené meno" + +#: templates/part.editcalendar.php:23 +msgid "Active" +msgstr "Aktívne" + +#: templates/part.editcalendar.php:29 +msgid "Calendar color" +msgstr "Farba kalendáru" + +#: templates/part.editcalendar.php:42 +msgid "Save" +msgstr "Uložiť" + +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 +#: templates/part.newevent.php:6 +msgid "Submit" +msgstr "Odoslať" + +#: templates/part.editcalendar.php:43 +msgid "Cancel" +msgstr "Zrušiť" + +#: templates/part.editevent.php:1 +msgid "Edit an event" +msgstr "Upraviť udalosť" + +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "Exportovať" + +#: templates/part.eventform.php:5 +msgid "Title of the Event" +msgstr "Nadpis Udalosti" + +#: templates/part.eventform.php:11 +msgid "Category" +msgstr "Kategória" + +#: templates/part.eventform.php:13 +msgid "Select category" +msgstr "Vybrať kategóriu" + +#: templates/part.eventform.php:37 +msgid "All Day Event" +msgstr "Celodenná udalosť" + +#: templates/part.eventform.php:41 +msgid "From" +msgstr "Od" + +#: templates/part.eventform.php:49 +msgid "To" +msgstr "Do" + +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "Pokročilé možnosti" + +#: templates/part.eventform.php:61 +msgid "Repeat" +msgstr "Opakovať" + +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "Pokročilé" + +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "Vybrať dni" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "Vybrať mesiace" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "Vybrať týždne" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "Interval" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "Koniec" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "výskyty" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Poloha" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Poloha Udalosti" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Popis" + +#: templates/part.eventform.php:218 +msgid "Description of the Event" +msgstr "Popis Udalosti" + +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "Importovať súbor kalendára" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "Prosím zvoľte kalendár" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "vytvoriť nový kalendár" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "Meno nového kalendára" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "Importovať" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "Importujem kalendár" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "Kalendár úspešne importovaný" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "Zatvoriť Dialóg" + +#: templates/part.newevent.php:1 +msgid "Create a new event" +msgstr "Vytvoriť udalosť" + +#: templates/settings.php:13 +msgid "Timezone" +msgstr "Časová zóna" + +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "Formát času" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24h" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12h" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "Synchronizačná adresa kalendára CalDAV: " + + diff --git a/l10n/sk_SK/contacts.po b/l10n/sk_SK/contacts.po new file mode 100644 index 00000000000..e253d0345f9 --- /dev/null +++ b/l10n/sk_SK/contacts.po @@ -0,0 +1,282 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.net/projects/p/owncloud/team/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" + +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." +msgstr "Chyba (de)aktivácie adresára." + +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "Vyskytla sa chyba pri pridávaní kontaktu." + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "Chyba aktivovania adresára." + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "Chyba aktualizácie adresára." + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "Kontakty" + +#: lib/app.php:52 +msgid "This is not your addressbook." +msgstr "Toto nie je váš adresár." + +#: lib/app.php:61 photo.php:36 +msgid "Contact could not be found." +msgstr "Kontakt nebol nájdený." + +#: lib/app.php:89 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "Informácie o vCard sú neplatné. Prosím obnovte stránku." + +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 +msgid "Address" +msgstr "Adresa" + +#: lib/app.php:102 templates/part.addcardform.php:43 +msgid "Telephone" +msgstr "Telefón" + +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 +msgid "Email" +msgstr "E-mail" + +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 +msgid "Organization" +msgstr "Organizácia" + +#: lib/app.php:116 lib/app.php:123 +msgid "Work" +msgstr "Práca" + +#: lib/app.php:117 lib/app.php:121 +msgid "Home" +msgstr "Domov" + +#: lib/app.php:122 +msgid "Mobile" +msgstr "Mobil" + +#: lib/app.php:124 +msgid "Text" +msgstr "SMS" + +#: lib/app.php:125 +msgid "Voice" +msgstr "Odkazová schránka" + +#: lib/app.php:126 +msgid "Fax" +msgstr "Fax" + +#: lib/app.php:127 +msgid "Video" +msgstr "Video" + +#: lib/app.php:128 +msgid "Pager" +msgstr "Pager" + +#: lib/search.php:22 +msgid "Contact" +msgstr "Kontakt" + +#: photo.php:42 +msgid "This is not your contact." +msgstr "Toto nie je váš kontakt." + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Pridať Kontakt." + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "Adresáre" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "Adresár" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Meno" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "Typ" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "PO Box" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Rozšírené" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Ulica" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Mesto" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Región" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "PSČ" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "Krajina" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Vytvoriť Kontakt." + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "Zvoliť aktívny adresár" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "Nový adresár" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "CardDav odkaz" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "Stiahnuť" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Upraviť" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Delete" +msgstr "Odstrániť" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "Stiahnuť kontakt" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "Odstrániť kontakt" + +#: templates/part.details.php:34 +msgid "Add" +msgstr "Pridať" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "Nový Adresár" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "Upraviť Adresár" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "Zobrazené meno" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "Aktívny" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "Uložiť" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "Odoslať" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "Zrušiť" + +#: templates/part.property.php:3 +msgid "Birthday" +msgstr "Narodeniny" + +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "Uprednostňované" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 +msgid "Phone" +msgstr "Telefón" + +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "Aktualizovať" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "Synchronizačná adresa CardDAV:" + + diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po new file mode 100644 index 00000000000..c71317d6089 --- /dev/null +++ b/l10n/sk_SK/core.po @@ -0,0 +1,171 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011, 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 15:49+0000\n" +"Last-Translator: intense \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.net/projects/p/owncloud/team/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" + +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "Obnova Owncloud hesla" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "Použite nasledujúci odkaz pre obnovenie vášho hesla: {link}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "Odkaz pre obnovenie hesla obdržíte E-mailom." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Požiadané" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Prihlásenie zlyhalo!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Prihlasovacie meno" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Požiadať o obnovenie" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Vaše heslo bolo obnovené" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "Na prihlasovaciu stránku" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Nové heslo" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Obnova hesla" + +#: strings.php:5 +msgid "Personal" +msgstr "Osobné" + +#: strings.php:6 +msgid "Users" +msgstr "Používatelia" + +#: strings.php:7 +msgid "Apps" +msgstr "Aplikácie" + +#: strings.php:8 +msgid "Admin" +msgstr "Administrácia" + +#: strings.php:9 +msgid "Help" +msgstr "Pomoc" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "Nedokážem nájsť" + +#: templates/installation.php:20 +msgid "Create an admin account" +msgstr "Vytvoriť administrátorský účet" + +#: templates/installation.php:26 templates/login.php:12 +msgid "Password" +msgstr "Heslo" + +#: templates/installation.php:32 +msgid "Advanced" +msgstr "Pokročilé" + +#: templates/installation.php:34 +msgid "Data folder" +msgstr "Priečinok dát" + +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Nastaviť databázu" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "bude použité" + +#: templates/installation.php:79 +msgid "Database user" +msgstr "Hostiteľ databázy" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Heslo databázy" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Meno databázy" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Server databázy" + +#: templates/installation.php:98 +msgid "Finish setup" +msgstr "Dokončiť inštaláciu" + +#: templates/layout.guest.php:35 +msgid "web services under your control" +msgstr "webové služby pod vašou kontrolou" + +#: templates/layout.user.php:34 +msgid "Log out" +msgstr "Odhlásiť" + +#: templates/layout.user.php:46 templates/layout.user.php:47 +msgid "Settings" +msgstr "Nastavenia" + +#: templates/login.php:5 +msgid "Lost your password?" +msgstr "Zabudli ste heslo?" + +#: templates/login.php:15 +msgid "remember" +msgstr "zapamätať" + +#: templates/login.php:16 +msgid "Log in" +msgstr "Prihlásiť sa" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "Ste odhlásený." + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "späť" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "ďalej" + + diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po new file mode 100644 index 00000000000..fe5e4d2c92c --- /dev/null +++ b/l10n/sk_SK/files.po @@ -0,0 +1,113 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-16 21:09+0000\n" +"Last-Translator: intense \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.net/projects/p/owncloud/team/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" + +#: ajax/upload.php:19 +msgid "There is no error, the file uploaded with success" +msgstr "Nenastala žiadna chyba, súbor bol úspešne nahraný" + +#: ajax/upload.php:20 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "Nahraný súbor presiahol direktívu upload_max_filesize v php.ini" + +#: ajax/upload.php:21 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" +"Nahrávaný súbor presiahol MAX_FILE_SIZE direktívu, ktorá bola špecifikovaná " +"v HTML formulári" + +#: ajax/upload.php:22 +msgid "The uploaded file was only partially uploaded" +msgstr "Nahrávaný súbor bol iba čiastočne nahraný" + +#: ajax/upload.php:23 +msgid "No file was uploaded" +msgstr "Žiaden súbor nebol nahraný" + +#: ajax/upload.php:24 +msgid "Missing a temporary folder" +msgstr "Chýbajúci dočasný priečinok" + +#: appinfo/app.php:8 +msgid "Files" +msgstr "Súbory" + +#: templates/admin.php:5 +msgid "Maximum upload size" +msgstr "Maximálna veľkosť nahratia" + +#: templates/index.php:7 +msgid "New" +msgstr "Nový" + +#: templates/index.php:10 +msgid "Text file" +msgstr "Textový súbor" + +#: templates/index.php:11 +msgid "Folder" +msgstr "Priečinok" + +#: templates/index.php:12 +msgid "From the web" +msgstr "Z webu" + +#: templates/index.php:22 +msgid "Upload" +msgstr "Nahrať" + +#: templates/index.php:35 +msgid "Nothing in here. Upload something!" +msgstr "Nič tu nie je. Nahrakte niečo!" + +#: templates/index.php:43 +msgid "Name" +msgstr "Meno" + +#: templates/index.php:45 +msgid "Download" +msgstr "Stiahnuť" + +#: templates/index.php:49 +msgid "Size" +msgstr "Veľkosť" + +#: templates/index.php:50 +msgid "Modified" +msgstr "Upravené" + +#: templates/index.php:50 +msgid "Delete" +msgstr "Odstrániť" + +#: templates/index.php:58 +msgid "Upload too large" +msgstr "Nahrávanie príliš veľké" + +#: templates/index.php:60 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" +"Súbory ktoré sa snažíte nahrať presahujú maximálnu veľkosť pre nahratie " +"súborov na tento server." + + diff --git a/l10n/sk_SK/gallery.po b/l10n/sk_SK/gallery.po new file mode 100644 index 00000000000..02b39c332ce --- /dev/null +++ b/l10n/sk_SK/gallery.po @@ -0,0 +1,53 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-26 19:12+0000\n" +"Last-Translator: intense \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.net/projects/p/owncloud/team/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "Galéria" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "Prehľadávam priečinky" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "Neboli nájdené žiadne fotografie" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "Vytváram náhľady" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "Chcete odstrániť album" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "Vložte meno novej galérie" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "Znovu oskenovať" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "Späť" + + diff --git a/l10n/sk_SK/media.po b/l10n/sk_SK/media.po new file mode 100644 index 00000000000..2718867142a --- /dev/null +++ b/l10n/sk_SK/media.po @@ -0,0 +1,64 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.net/projects/p/owncloud/team/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" + +#: appinfo/app.php:32 +msgid "Music" +msgstr "Hudba" + +#: templates/music.php:3 templates/player.php:13 +msgid "Play" +msgstr "Prehrať" + +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 +msgid "Pause" +msgstr "Pauza" + +#: templates/music.php:5 +msgid "Previous" +msgstr "Predchádzajúce" + +#: templates/music.php:6 templates/player.php:15 +msgid "Next" +msgstr "Ďalšie" + +#: templates/music.php:7 +msgid "Mute" +msgstr "Stlmiť" + +#: templates/music.php:8 +msgid "Unmute" +msgstr "Nahlas" + +#: templates/music.php:25 +msgid "Rescan Collection" +msgstr "Znovu skenovať Zbierku" + +#: templates/music.php:37 +msgid "Artist" +msgstr "Umelec" + +#: templates/music.php:38 +msgid "Album" +msgstr "Album" + +#: templates/music.php:39 +msgid "Title" +msgstr "Názov" + + diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po new file mode 100644 index 00000000000..358e67ce2f2 --- /dev/null +++ b/l10n/sk_SK/settings.po @@ -0,0 +1,157 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011, 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 16:32+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Slovak (Slovakia) (http://www.transifex.net/projects/p/owncloud/team/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" + +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "email Zmenený" + +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 +msgid "Invalid request" +msgstr "Neplatná požiadavka" + +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID zmenené" + +#: ajax/setlanguage.php:14 +msgid "Language changed" +msgstr "Jazyk zmenený" + +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "Úroveň záznamov" + +#: templates/apps.php:8 +msgid "Add your application" +msgstr "Pridajte svoju aplikáciu" + +#: templates/apps.php:21 +msgid "Select an App" +msgstr "Vyberte Aplikáciu" + +#: templates/apps.php:23 +msgid "-licensed" +msgstr "-licencované" + +#: templates/apps.php:23 +msgid "by" +msgstr "od" + +#: templates/help.php:8 +msgid "Ask a question" +msgstr "Opýtajte sa otázku" + +#: templates/help.php:20 +msgid "Problems connecting to help database." +msgstr "Problémy spojené s pomocnou databázou." + +#: templates/help.php:21 +msgid "Go there manually." +msgstr "Prejsť tam ručne." + +#: templates/help.php:29 +msgid "Answer" +msgstr "Odpoveď" + +#: templates/personal.php:8 +msgid "You use" +msgstr "Používate" + +#: templates/personal.php:8 +msgid "of the available" +msgstr "z dostupných" + +#: templates/personal.php:13 +msgid "Your password got changed" +msgstr "Vaše heslo sa zmenilo" + +#: templates/personal.php:14 +msgid "Unable to change your password" +msgstr "Nedokážem zmeniť vaše heslo" + +#: templates/personal.php:15 +msgid "Current password" +msgstr "Aktuálne heslo" + +#: templates/personal.php:16 +msgid "New password" +msgstr "Nové heslo" + +#: templates/personal.php:17 +msgid "show" +msgstr "zobraziť" + +#: templates/personal.php:18 +msgid "Change password" +msgstr "Zmeniť heslo" + +#: templates/personal.php:24 +msgid "Email" +msgstr "Email" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "Vaša emailová adresa" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "Vyplňte emailovú adresu pre aktivovanie obnovy hesla" + +#: templates/personal.php:32 templates/personal.php:33 +msgid "Language" +msgstr "Jazyk" + +#: templates/personal.php:38 +msgid "Help translate" +msgstr "Pomôcť s prekladom" + +#: templates/personal.php:45 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "použite túto adresu pre spojenie s vaším ownCloud v správcovi súborov" + +#: templates/users.php:15 templates/users.php:30 +msgid "Name" +msgstr "Meno" + +#: templates/users.php:16 templates/users.php:31 +msgid "Password" +msgstr "Heslo" + +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 +msgid "Groups" +msgstr "Skupiny" + +#: templates/users.php:23 +msgid "Create" +msgstr "Vytvoriť" + +#: templates/users.php:33 +msgid "Quota" +msgstr "Kvóta" + +#: templates/users.php:58 +msgid "Delete" +msgstr "Odstrániť" + + diff --git a/l10n/sl/calendar.po b/l10n/sl/calendar.po new file mode 100644 index 00000000000..0c9761508e9 --- /dev/null +++ b/l10n/sl/calendar.po @@ -0,0 +1,637 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-15 13:45+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Slovenian (http://www.transifex.net/projects/p/owncloud/team/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" + +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "" + +#: ajax/settimezone.php:22 +msgid "Timezone changed" +msgstr "Časovna Cona spremenjena" + +#: ajax/settimezone.php:24 +msgid "Invalid request" +msgstr "Neveljavna zahteva" + +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 +msgid "Calendar" +msgstr "Kolendar" + +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Napačen Kolendar" + +#: lib/app.php:60 lib/object.php:332 +msgid "Birthday" +msgstr "Rojstni Dan" + +#: lib/app.php:61 lib/object.php:333 +msgid "Business" +msgstr "Poslovno" + +#: lib/app.php:62 lib/object.php:334 +msgid "Call" +msgstr "Pokliči" + +#: lib/app.php:63 lib/object.php:335 +msgid "Clients" +msgstr "Stranke" + +#: lib/app.php:64 lib/object.php:336 +msgid "Deliverer" +msgstr "Dobavitelj" + +#: lib/app.php:65 lib/object.php:337 +msgid "Holidays" +msgstr "Dopust" + +#: lib/app.php:66 lib/object.php:338 +msgid "Ideas" +msgstr "Ideje" + +#: lib/app.php:67 lib/object.php:339 +msgid "Journey" +msgstr "Potovanje" + +#: lib/app.php:68 lib/object.php:340 +msgid "Jubilee" +msgstr "Obletnica" + +#: lib/app.php:69 lib/object.php:341 +msgid "Meeting" +msgstr "Sestanek" + +#: lib/app.php:70 lib/object.php:342 +msgid "Other" +msgstr "Ostalo" + +#: lib/app.php:71 lib/object.php:343 +msgid "Personal" +msgstr "Osebno" + +#: lib/app.php:72 lib/object.php:344 +msgid "Projects" +msgstr "Projekt" + +#: lib/app.php:73 lib/object.php:345 +msgid "Questions" +msgstr "Vprašanja" + +#: lib/app.php:74 lib/object.php:346 +msgid "Work" +msgstr "Delo" + +#: lib/object.php:353 +msgid "Does not repeat" +msgstr "Se ne ponavlja" + +#: lib/object.php:354 +msgid "Daily" +msgstr "Dnevno" + +#: lib/object.php:355 +msgid "Weekly" +msgstr "Tedensko" + +#: lib/object.php:356 +msgid "Every Weekday" +msgstr "Vsak dan v tednu" + +#: lib/object.php:357 +msgid "Bi-Weekly" +msgstr "Dvakrat Tedensko" + +#: lib/object.php:358 +msgid "Monthly" +msgstr "Mesečno" + +#: lib/object.php:359 +msgid "Yearly" +msgstr "Letno" + +#: lib/object.php:366 +msgid "never" +msgstr "" + +#: lib/object.php:367 +msgid "by occurrences" +msgstr "" + +#: lib/object.php:368 +msgid "by date" +msgstr "" + +#: lib/object.php:375 +msgid "by monthday" +msgstr "" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "" + +#: lib/object.php:383 templates/lAfix.php:3 +msgid "Monday" +msgstr "" + +#: lib/object.php:384 templates/lAfix.php:4 +msgid "Tuesday" +msgstr "" + +#: lib/object.php:385 templates/lAfix.php:5 +msgid "Wednesday" +msgstr "" + +#: lib/object.php:386 templates/lAfix.php:6 +msgid "Thursday" +msgstr "" + +#: lib/object.php:387 templates/lAfix.php:7 +msgid "Friday" +msgstr "" + +#: lib/object.php:388 templates/lAfix.php:8 +msgid "Saturday" +msgstr "" + +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "" + +#: lib/object.php:396 +msgid "events week of month" +msgstr "" + +#: lib/object.php:397 +msgid "first" +msgstr "" + +#: lib/object.php:398 +msgid "second" +msgstr "" + +#: lib/object.php:399 +msgid "third" +msgstr "" + +#: lib/object.php:400 +msgid "fourth" +msgstr "" + +#: lib/object.php:401 +msgid "fifth" +msgstr "" + +#: lib/object.php:402 +msgid "last" +msgstr "" + +#: lib/object.php:424 templates/lAfix.php:16 +msgid "January" +msgstr "" + +#: lib/object.php:425 templates/lAfix.php:17 +msgid "February" +msgstr "" + +#: lib/object.php:426 templates/lAfix.php:18 +msgid "March" +msgstr "" + +#: lib/object.php:427 templates/lAfix.php:19 +msgid "April" +msgstr "" + +#: lib/object.php:428 templates/lAfix.php:20 +msgid "May" +msgstr "" + +#: lib/object.php:429 templates/lAfix.php:21 +msgid "June" +msgstr "" + +#: lib/object.php:430 templates/lAfix.php:22 +msgid "July" +msgstr "" + +#: lib/object.php:431 templates/lAfix.php:23 +msgid "August" +msgstr "" + +#: lib/object.php:432 templates/lAfix.php:24 +msgid "September" +msgstr "" + +#: lib/object.php:433 templates/lAfix.php:25 +msgid "October" +msgstr "" + +#: lib/object.php:434 templates/lAfix.php:26 +msgid "November" +msgstr "" + +#: lib/object.php:435 templates/lAfix.php:27 +msgid "December" +msgstr "" + +#: lib/object.php:441 +msgid "by events date" +msgstr "" + +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "" + +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "" + +#: lib/object.php:444 +msgid "by day and month" +msgstr "" + +#: lib/object.php:467 +msgid "Not an array" +msgstr "Not an array" + +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "" + +#: lib/search.php:40 +msgid "Cal." +msgstr "" + +#: templates/calendar.php:10 +msgid "All day" +msgstr "Cel dan" + +#: templates/calendar.php:11 +msgid "Missing fields" +msgstr "Mankajoča polja" + +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" +msgstr "Naslov" + +#: templates/calendar.php:14 +msgid "From Date" +msgstr "od Datum" + +#: templates/calendar.php:15 +msgid "From Time" +msgstr "od Čas" + +#: templates/calendar.php:16 +msgid "To Date" +msgstr "do Datum" + +#: templates/calendar.php:17 +msgid "To Time" +msgstr "do Čas" + +#: templates/calendar.php:18 +msgid "The event ends before it starts" +msgstr "Dogodek se konča preden se začne" + +#: templates/calendar.php:19 +msgid "There was a database fail" +msgstr "Napaka v podatkovni bazi. Kontaktirajte Administratorja" + +#: templates/calendar.php:52 +msgid "Week" +msgstr "Teden" + +#: templates/calendar.php:53 +msgid "Month" +msgstr "Mesec" + +#: templates/calendar.php:54 +msgid "List" +msgstr "Seznam" + +#: templates/calendar.php:59 +msgid "Today" +msgstr "Danes" + +#: templates/calendar.php:60 +msgid "Calendars" +msgstr "Kolendarji" + +#: templates/calendar.php:78 +msgid "There was a fail, while parsing the file." +msgstr "Pri razčlenjevanju datoteke je prišlo do napake." + +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "" + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "" + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "" + +#: templates/lAfix.php:32 +msgid "May." +msgstr "" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "" + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "" + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "" + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "" + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "" + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "" + +#: templates/part.choosecalendar.php:1 +msgid "Choose active calendars" +msgstr "Izberi aktivni Kolendar" + +#: templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "Nov Kolendar" + +#: templates/part.choosecalendar.php:20 +#: templates/part.choosecalendar.rowfields.php:4 +msgid "CalDav Link" +msgstr "CalDav Povezava" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Download" +msgstr "Naloži dol" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Edit" +msgstr "Uredi" + +#: templates/part.choosecalendar.rowfields.php:4 +#: templates/part.editevent.php:9 +msgid "Delete" +msgstr "Izbriši" + +#: templates/part.editcalendar.php:9 +msgid "New calendar" +msgstr "Nov Kolendar" + +#: templates/part.editcalendar.php:9 +msgid "Edit calendar" +msgstr "Uredi Kolendar" + +#: templates/part.editcalendar.php:12 +msgid "Displayname" +msgstr "Prikazano Ime" + +#: templates/part.editcalendar.php:23 +msgid "Active" +msgstr "Aktivno" + +#: templates/part.editcalendar.php:29 +msgid "Calendar color" +msgstr "Barva Kolendarja" + +#: templates/part.editcalendar.php:42 +msgid "Save" +msgstr "Shrani" + +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 +#: templates/part.newevent.php:6 +msgid "Submit" +msgstr "Potrdi" + +#: templates/part.editcalendar.php:43 +msgid "Cancel" +msgstr "Prekliči" + +#: templates/part.editevent.php:1 +msgid "Edit an event" +msgstr "Uredi Dogodek" + +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "Izvozi" + +#: templates/part.eventform.php:5 +msgid "Title of the Event" +msgstr "Naslov" + +#: templates/part.eventform.php:11 +msgid "Category" +msgstr "Kategorija" + +#: templates/part.eventform.php:13 +msgid "Select category" +msgstr "Izberi Kategorijo" + +#: templates/part.eventform.php:37 +msgid "All Day Event" +msgstr "Celodnevni Dogodek" + +#: templates/part.eventform.php:41 +msgid "From" +msgstr "Od" + +#: templates/part.eventform.php:49 +msgid "To" +msgstr "Za" + +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "Napredne Možnosti" + +#: templates/part.eventform.php:61 +msgid "Repeat" +msgstr "Ponovi" + +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "" + +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Lokacija" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Lokacija dogodka" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Opis" + +#: templates/part.eventform.php:218 +msgid "Description of the Event" +msgstr "Opis Dogodka" + +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "Izberi kolendar" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "Uvozi" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "" + +#: templates/part.newevent.php:1 +msgid "Create a new event" +msgstr "Ustvari nov dogodek" + +#: templates/settings.php:13 +msgid "Timezone" +msgstr "Časovna Cona" + +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "Časovni format" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24ur" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12ur" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "Kolendarjev CalDAV sinhronizacijski naslov" + + diff --git a/l10n/sl/contacts.po b/l10n/sl/contacts.po new file mode 100644 index 00000000000..d4af2dc65cb --- /dev/null +++ b/l10n/sl/contacts.po @@ -0,0 +1,283 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Slovenian (http://www.transifex.net/projects/p/owncloud/team/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" + +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." +msgstr "" + +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: lib/app.php:52 +msgid "This is not your addressbook." +msgstr "To ni vaš adresar." + +#: lib/app.php:61 photo.php:36 +msgid "Contact could not be found." +msgstr "Kontakta ni bilo mogoče najti." + +#: lib/app.php:89 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" +"Informacije o vVizitki (vCard) niso pravilne, Prosimo ponovno naložite okno." + +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 +msgid "Address" +msgstr "Naslov" + +#: lib/app.php:102 templates/part.addcardform.php:43 +msgid "Telephone" +msgstr "Telefon" + +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 +msgid "Email" +msgstr "Email" + +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 +msgid "Organization" +msgstr "Organizacija" + +#: lib/app.php:116 lib/app.php:123 +msgid "Work" +msgstr "Delo" + +#: lib/app.php:117 lib/app.php:121 +msgid "Home" +msgstr "Doma" + +#: lib/app.php:122 +msgid "Mobile" +msgstr "Mobitel" + +#: lib/app.php:124 +msgid "Text" +msgstr "Tekst" + +#: lib/app.php:125 +msgid "Voice" +msgstr "Glas- Voice" + +#: lib/app.php:126 +msgid "Fax" +msgstr "Faks" + +#: lib/app.php:127 +msgid "Video" +msgstr "Video" + +#: lib/app.php:128 +msgid "Pager" +msgstr "Pager" + +#: lib/search.php:22 +msgid "Contact" +msgstr "" + +#: photo.php:42 +msgid "This is not your contact." +msgstr "To ni vaš kontakt" + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Dodaj Kontakt" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Ime" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "PO Box" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Razširjeno." + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Ulica" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Mesto" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Regija" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "Poštna št." + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "Dežela" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Ustvari Kontakt" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Uredi" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Delete" +msgstr "Izbriši" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "" + +#: templates/part.property.php:3 +msgid "Birthday" +msgstr "Rojstni Dan" + +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 +msgid "Phone" +msgstr "Telefon" + +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "" + + diff --git a/l10n/sl/core.po b/l10n/sl/core.po new file mode 100644 index 00000000000..616829d650b --- /dev/null +++ b/l10n/sl/core.po @@ -0,0 +1,172 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Slovenian (http://www.transifex.net/projects/p/owncloud/team/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" + +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" +"Preko email sporočila boste prejeli povezavo s katero lahko ponovno " +"nastavite geslo" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Zahtevano" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Prijava ni Uspela!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Uporabniško Ime" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Zahtevaj ponastavitev" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Vaše geslo je bilo ponastavljeno" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "novo geslo" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Ponastavi Geslo" + +#: strings.php:5 +msgid "Personal" +msgstr "Osebno" + +#: strings.php:6 +msgid "Users" +msgstr "Uporabniki" + +#: strings.php:7 +msgid "Apps" +msgstr "Apps" + +#: strings.php:8 +msgid "Admin" +msgstr "Admin" + +#: strings.php:9 +msgid "Help" +msgstr "Pomoč" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "Ni najdeno" + +#: templates/installation.php:20 +msgid "Create an admin account" +msgstr "Ustvari admin račun" + +#: templates/installation.php:26 templates/login.php:12 +msgid "Password" +msgstr "Geslo" + +#: templates/installation.php:32 +msgid "Advanced" +msgstr "Napredno" + +#: templates/installation.php:34 +msgid "Data folder" +msgstr "Data Mapa" + +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Nastavi Podatkovno Bazo" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "Bo uporabljeno" + +#: templates/installation.php:79 +msgid "Database user" +msgstr "Podatkovna Baza Uporabnik" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Podatkovna Baza Geslo" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Ime Podatkovne Baze" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Database host" + +#: templates/installation.php:98 +msgid "Finish setup" +msgstr "Končaj instalacijo" + +#: templates/layout.guest.php:35 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:34 +msgid "Log out" +msgstr "Odjava" + +#: templates/layout.user.php:46 templates/layout.user.php:47 +msgid "Settings" +msgstr "Nastavitve" + +#: templates/login.php:5 +msgid "Lost your password?" +msgstr "Ste pozabili vaše geslo?" + +#: templates/login.php:15 +msgid "remember" +msgstr "zapomni" + +#: templates/login.php:16 +msgid "Log in" +msgstr "" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "Odjavljeni ste" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "nazaj" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "naprej" + + diff --git a/l10n/sl/files.po b/l10n/sl/files.po new file mode 100644 index 00000000000..22dd51da6b1 --- /dev/null +++ b/l10n/sl/files.po @@ -0,0 +1,114 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Slovenian (http://www.transifex.net/projects/p/owncloud/team/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" + +#: ajax/upload.php:19 +msgid "There is no error, the file uploaded with success" +msgstr "datoteka je bila naložena uspešno." + +#: ajax/upload.php:20 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "" +"Velikost željene naložene datoteke je prevelika. (upload_max_filesize - " +"php.ini) Kontaktirajte Administratorja." + +#: ajax/upload.php:21 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" +"Velikost željene naložene datoteke je prevelika. (MAX_FILE_SIZE - html " +"formi) Kontaktirajte Administratorja." + +#: ajax/upload.php:22 +msgid "The uploaded file was only partially uploaded" +msgstr "Datoteka je bila le delno naložena." + +#: ajax/upload.php:23 +msgid "No file was uploaded" +msgstr "Naloženih ni bilo nič Datotek." + +#: ajax/upload.php:24 +msgid "Missing a temporary folder" +msgstr "Ni potrebne začasne datoteke. (temporary folder)" + +#: appinfo/app.php:8 +msgid "Files" +msgstr "Datoteke" + +#: templates/admin.php:5 +msgid "Maximum upload size" +msgstr "Maksimalna velikost" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:11 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From the web" +msgstr "" + +#: templates/index.php:22 +msgid "Upload" +msgstr "Naloži gor" + +#: templates/index.php:35 +msgid "Nothing in here. Upload something!" +msgstr "Naloženih še ni bilo nič datotek." + +#: templates/index.php:43 +msgid "Name" +msgstr "Ime" + +#: templates/index.php:45 +msgid "Download" +msgstr "Naloži dol" + +#: templates/index.php:49 +msgid "Size" +msgstr "Velikost" + +#: templates/index.php:50 +msgid "Modified" +msgstr "Urejeno" + +#: templates/index.php:50 +msgid "Delete" +msgstr "Izbriši" + +#: templates/index.php:58 +msgid "Upload too large" +msgstr "Nalaganje ni mogoče, ker je preveliko." + +#: templates/index.php:60 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" +"Datoteke ki jih želiš naložiti presegajo maksimalno velikost na tem " +"strežniku. Kontaktirajte Administratorja." + + diff --git a/l10n/sl/gallery.po b/l10n/sl/gallery.po new file mode 100644 index 00000000000..9f78e9c6c55 --- /dev/null +++ b/l10n/sl/gallery.po @@ -0,0 +1,52 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Slovenian (http://www.transifex.net/projects/p/owncloud/team/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" + + diff --git a/l10n/sl/media.po b/l10n/sl/media.po new file mode 100644 index 00000000000..d9049fe094f --- /dev/null +++ b/l10n/sl/media.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Slovenian (http://www.transifex.net/projects/p/owncloud/team/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" + +#: appinfo/app.php:32 +msgid "Music" +msgstr "Glasba" + +#: templates/music.php:3 templates/player.php:13 +msgid "Play" +msgstr "Predvajaj" + +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 +msgid "Pause" +msgstr "Pavza" + +#: templates/music.php:5 +msgid "Previous" +msgstr "Prejšnja" + +#: templates/music.php:6 templates/player.php:15 +msgid "Next" +msgstr "Naslednja" + +#: templates/music.php:7 +msgid "Mute" +msgstr "Izključi zvok" + +#: templates/music.php:8 +msgid "Unmute" +msgstr "Vključi zvok" + +#: templates/music.php:25 +msgid "Rescan Collection" +msgstr "Skeniraj zbirko" + +#: templates/music.php:37 +msgid "Artist" +msgstr "Izvajalec" + +#: templates/music.php:38 +msgid "Album" +msgstr "Album" + +#: templates/music.php:39 +msgid "Title" +msgstr "Naslov" + + diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po new file mode 100644 index 00000000000..011b0cbd9ff --- /dev/null +++ b/l10n/sl/settings.po @@ -0,0 +1,157 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 16:32+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Slovenian (http://www.transifex.net/projects/p/owncloud/team/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" + +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "" + +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 +msgid "Invalid request" +msgstr "Neveljavna zahteva" + +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID spremenjen" + +#: ajax/setlanguage.php:14 +msgid "Language changed" +msgstr "Jezik je bil spremenjen" + +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "" + +#: templates/apps.php:8 +msgid "Add your application" +msgstr "Dodaj vašo aplikacijo" + +#: templates/apps.php:21 +msgid "Select an App" +msgstr "Izberi aplikacijo" + +#: templates/apps.php:23 +msgid "-licensed" +msgstr "-licenca" + +#: templates/apps.php:23 +msgid "by" +msgstr "od" + +#: templates/help.php:8 +msgid "Ask a question" +msgstr "Vprašaj" + +#: templates/help.php:20 +msgid "Problems connecting to help database." +msgstr "Težave pri povezovanju z zbirko podatkov." + +#: templates/help.php:21 +msgid "Go there manually." +msgstr "Pojdi tja ročno." + +#: templates/help.php:29 +msgid "Answer" +msgstr "Odgovor" + +#: templates/personal.php:8 +msgid "You use" +msgstr "Uporabljate" + +#: templates/personal.php:8 +msgid "of the available" +msgstr "od narazpolago" + +#: templates/personal.php:13 +msgid "Your password got changed" +msgstr "Vaše geslo je bilo spremenjeno." + +#: templates/personal.php:14 +msgid "Unable to change your password" +msgstr "Vašega geslo ni bilo mogoče spremeniti." + +#: templates/personal.php:15 +msgid "Current password" +msgstr "Trenutno Geslo" + +#: templates/personal.php:16 +msgid "New password" +msgstr "Novo geslo" + +#: templates/personal.php:17 +msgid "show" +msgstr "prikaži" + +#: templates/personal.php:18 +msgid "Change password" +msgstr "Spremeni Geslo" + +#: templates/personal.php:24 +msgid "Email" +msgstr "" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:32 templates/personal.php:33 +msgid "Language" +msgstr "Jezik" + +#: templates/personal.php:38 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:45 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "uporabi ta naslov za povezavo k \"mojoblak\" v vašem urejevalniku datotek" + +#: templates/users.php:15 templates/users.php:30 +msgid "Name" +msgstr "Ime" + +#: templates/users.php:16 templates/users.php:31 +msgid "Password" +msgstr "Geslo" + +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 +msgid "Groups" +msgstr "Skupine" + +#: templates/users.php:23 +msgid "Create" +msgstr "Ustvari" + +#: templates/users.php:33 +msgid "Quota" +msgstr "" + +#: templates/users.php:58 +msgid "Delete" +msgstr "Izbriši" + + diff --git a/l10n/sr/calendar.po b/l10n/sr/calendar.po index 31a841e957b..8bfff379dec 100644 --- a/l10n/sr/calendar.po +++ b/l10n/sr/calendar.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-15 13:45+0000\n" +"Last-Translator: icewind \n" "Language-Team: Serbian (http://www.transifex.net/projects/p/owncloud/team/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,351 +18,432 @@ 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" -#: ajax/createcalendar.php:18 ajax/settimezone.php:19 -#: ajax/updatecalendar.php:18 -msgid "Authentication error" -msgstr "Грешка аутентификације" - -#: ajax/editeventform.php:25 -msgid "Wrong calendar" +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" msgstr "" -#: ajax/settimezone.php:27 +#: ajax/settimezone.php:22 msgid "Timezone changed" msgstr "Временска зона је промењена" -#: ajax/settimezone.php:29 +#: ajax/settimezone.php:24 msgid "Invalid request" msgstr "Неисправан захтев" -#: appinfo/app.php:19 templates/part.eventform.php:27 -#: templates/part.eventinfo.php:18 +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 msgid "Calendar" msgstr "Календар" -#: lib/object.php:292 +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Погрешан календар" + +#: lib/app.php:60 lib/object.php:332 msgid "Birthday" -msgstr "" +msgstr "Рођендан" -#: lib/object.php:293 +#: lib/app.php:61 lib/object.php:333 msgid "Business" -msgstr "" +msgstr "Посао" -#: lib/object.php:294 +#: lib/app.php:62 lib/object.php:334 msgid "Call" -msgstr "" +msgstr "Позив" -#: lib/object.php:295 +#: lib/app.php:63 lib/object.php:335 msgid "Clients" -msgstr "" +msgstr "Клијенти" -#: lib/object.php:296 +#: lib/app.php:64 lib/object.php:336 msgid "Deliverer" -msgstr "" +msgstr "Достављач" -#: lib/object.php:297 +#: lib/app.php:65 lib/object.php:337 msgid "Holidays" -msgstr "" +msgstr "Празници" -#: lib/object.php:298 +#: lib/app.php:66 lib/object.php:338 msgid "Ideas" -msgstr "" +msgstr "Идеје" -#: lib/object.php:299 +#: lib/app.php:67 lib/object.php:339 msgid "Journey" -msgstr "" +msgstr "путовање" -#: lib/object.php:300 +#: lib/app.php:68 lib/object.php:340 msgid "Jubilee" -msgstr "" +msgstr "јубилеј" -#: lib/object.php:301 +#: lib/app.php:69 lib/object.php:341 msgid "Meeting" -msgstr "" +msgstr "Састанак" -#: lib/object.php:302 +#: lib/app.php:70 lib/object.php:342 msgid "Other" -msgstr "" +msgstr "Друго" -#: lib/object.php:303 +#: lib/app.php:71 lib/object.php:343 msgid "Personal" -msgstr "" +msgstr "Лично" -#: lib/object.php:304 +#: lib/app.php:72 lib/object.php:344 msgid "Projects" -msgstr "" +msgstr "Пројекти" -#: lib/object.php:305 +#: lib/app.php:73 lib/object.php:345 msgid "Questions" -msgstr "" +msgstr "Питања" -#: lib/object.php:306 +#: lib/app.php:74 lib/object.php:346 msgid "Work" -msgstr "" +msgstr "Посао" -#: lib/object.php:313 +#: lib/object.php:353 msgid "Does not repeat" msgstr "Не понавља се" -#: lib/object.php:314 +#: lib/object.php:354 msgid "Daily" msgstr "дневно" -#: lib/object.php:315 +#: lib/object.php:355 msgid "Weekly" msgstr "недељно" -#: lib/object.php:316 +#: lib/object.php:356 msgid "Every Weekday" msgstr "сваког дана у недељи" -#: lib/object.php:317 +#: lib/object.php:357 msgid "Bi-Weekly" msgstr "двонедељно" -#: lib/object.php:318 +#: lib/object.php:358 msgid "Monthly" msgstr "месечно" -#: lib/object.php:319 +#: lib/object.php:359 msgid "Yearly" msgstr "годишње" -#: lib/object.php:337 -msgid "Not an array" +#: lib/object.php:366 +msgid "never" msgstr "" -#: templates/calendar.php:3 +#: lib/object.php:367 +msgid "by occurrences" +msgstr "" + +#: lib/object.php:368 +msgid "by date" +msgstr "" + +#: lib/object.php:375 +msgid "by monthday" +msgstr "" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "" + +#: lib/object.php:383 templates/lAfix.php:3 +msgid "Monday" +msgstr "" + +#: lib/object.php:384 templates/lAfix.php:4 +msgid "Tuesday" +msgstr "" + +#: lib/object.php:385 templates/lAfix.php:5 +msgid "Wednesday" +msgstr "" + +#: lib/object.php:386 templates/lAfix.php:6 +msgid "Thursday" +msgstr "" + +#: lib/object.php:387 templates/lAfix.php:7 +msgid "Friday" +msgstr "" + +#: lib/object.php:388 templates/lAfix.php:8 +msgid "Saturday" +msgstr "" + +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "" + +#: lib/object.php:396 +msgid "events week of month" +msgstr "" + +#: lib/object.php:397 +msgid "first" +msgstr "" + +#: lib/object.php:398 +msgid "second" +msgstr "" + +#: lib/object.php:399 +msgid "third" +msgstr "" + +#: lib/object.php:400 +msgid "fourth" +msgstr "" + +#: lib/object.php:401 +msgid "fifth" +msgstr "" + +#: lib/object.php:402 +msgid "last" +msgstr "" + +#: lib/object.php:424 templates/lAfix.php:16 +msgid "January" +msgstr "" + +#: lib/object.php:425 templates/lAfix.php:17 +msgid "February" +msgstr "" + +#: lib/object.php:426 templates/lAfix.php:18 +msgid "March" +msgstr "" + +#: lib/object.php:427 templates/lAfix.php:19 +msgid "April" +msgstr "" + +#: lib/object.php:428 templates/lAfix.php:20 +msgid "May" +msgstr "" + +#: lib/object.php:429 templates/lAfix.php:21 +msgid "June" +msgstr "" + +#: lib/object.php:430 templates/lAfix.php:22 +msgid "July" +msgstr "" + +#: lib/object.php:431 templates/lAfix.php:23 +msgid "August" +msgstr "" + +#: lib/object.php:432 templates/lAfix.php:24 +msgid "September" +msgstr "" + +#: lib/object.php:433 templates/lAfix.php:25 +msgid "October" +msgstr "" + +#: lib/object.php:434 templates/lAfix.php:26 +msgid "November" +msgstr "" + +#: lib/object.php:435 templates/lAfix.php:27 +msgid "December" +msgstr "" + +#: lib/object.php:441 +msgid "by events date" +msgstr "" + +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "" + +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "" + +#: lib/object.php:444 +msgid "by day and month" +msgstr "" + +#: lib/object.php:467 +msgid "Not an array" +msgstr "Није област" + +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "" + +#: lib/search.php:40 +msgid "Cal." +msgstr "" + +#: templates/calendar.php:10 msgid "All day" msgstr "Цео дан" -#: templates/calendar.php:32 -msgid "Sunday" -msgstr "Недеља" - -#: templates/calendar.php:32 -msgid "Monday" -msgstr "Понедељак" - -#: templates/calendar.php:32 -msgid "Tuesday" -msgstr "Уторак" - -#: templates/calendar.php:32 -msgid "Wednesday" -msgstr "Среда" - -#: templates/calendar.php:32 -msgid "Thursday" -msgstr "Четвртак" - -#: templates/calendar.php:32 -msgid "Friday" -msgstr "Петак" - -#: templates/calendar.php:32 -msgid "Saturday" -msgstr "Субота" - -#: templates/calendar.php:33 -msgid "Sun." -msgstr "Нед" - -#: templates/calendar.php:33 -msgid "Mon." -msgstr "Пон" - -#: templates/calendar.php:33 -msgid "Tue." -msgstr "Уто" - -#: templates/calendar.php:33 -msgid "Wed." -msgstr "Сре" - -#: templates/calendar.php:33 -msgid "Thu." -msgstr "Чет" - -#: templates/calendar.php:33 -msgid "Fri." -msgstr "Пет" - -#: templates/calendar.php:33 -msgid "Sat." -msgstr "Суб" - -#: templates/calendar.php:34 -msgid "January" -msgstr "Јануар" - -#: templates/calendar.php:34 -msgid "February" -msgstr "Фебруар" - -#: templates/calendar.php:34 -msgid "March" -msgstr "Март" - -#: templates/calendar.php:34 -msgid "April" -msgstr "Април" - -#: templates/calendar.php:34 -msgid "May" -msgstr "Мај" - -#: templates/calendar.php:34 -msgid "June" -msgstr "Јун" - -#: templates/calendar.php:34 -msgid "July" -msgstr "Јул" - -#: templates/calendar.php:34 -msgid "August" -msgstr "Август" - -#: templates/calendar.php:34 -msgid "September" -msgstr "Септембар" - -#: templates/calendar.php:34 -msgid "October" -msgstr "Октобар" - -#: templates/calendar.php:34 -msgid "November" -msgstr "Новембар" - -#: templates/calendar.php:34 -msgid "December" -msgstr "Децембар" - -#: templates/calendar.php:35 -msgid "Jan." -msgstr "Јан" - -#: templates/calendar.php:35 -msgid "Feb." -msgstr "Феб" - -#: templates/calendar.php:35 -msgid "Mar." -msgstr "Мар" - -#: templates/calendar.php:35 -msgid "Apr." -msgstr "Апр" - -#: templates/calendar.php:35 -msgid "May." +#: templates/calendar.php:11 +msgid "Missing fields" msgstr "" -#: templates/calendar.php:35 -msgid "Jun." -msgstr "Јун" +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" +msgstr "Наслов" -#: templates/calendar.php:35 -msgid "Jul." -msgstr "Јул" +#: templates/calendar.php:14 +msgid "From Date" +msgstr "" -#: templates/calendar.php:35 -msgid "Aug." -msgstr "Авг" +#: templates/calendar.php:15 +msgid "From Time" +msgstr "" -#: templates/calendar.php:35 -msgid "Sep." -msgstr "Сеп" +#: templates/calendar.php:16 +msgid "To Date" +msgstr "" -#: templates/calendar.php:35 -msgid "Oct." -msgstr "Окт" +#: templates/calendar.php:17 +msgid "To Time" +msgstr "" -#: templates/calendar.php:35 -msgid "Nov." -msgstr "Нов" +#: templates/calendar.php:18 +msgid "The event ends before it starts" +msgstr "" -#: templates/calendar.php:35 -msgid "Dec." -msgstr "Дец" +#: templates/calendar.php:19 +msgid "There was a database fail" +msgstr "" -#: templates/calendar.php:36 templates/calendar.php:50 -#: templates/calendar.php:116 +#: templates/calendar.php:52 msgid "Week" msgstr "Недеља" -#: templates/calendar.php:37 templates/calendar.php:51 -msgid "Weeks" -msgstr "Недеља" - -#: templates/calendar.php:38 -msgid "More before {startdate}" -msgstr "" - -#: templates/calendar.php:39 -msgid "More after {enddate}" -msgstr "" - -#: templates/calendar.php:49 -msgid "Day" -msgstr "Дан" - -#: templates/calendar.php:52 +#: templates/calendar.php:53 msgid "Month" msgstr "Месец" -#: templates/calendar.php:53 +#: templates/calendar.php:54 msgid "List" -msgstr "" +msgstr "Списак" -#: templates/calendar.php:58 +#: templates/calendar.php:59 msgid "Today" msgstr "Данас" -#: templates/calendar.php:59 +#: templates/calendar.php:60 msgid "Calendars" msgstr "Календари" -#: templates/calendar.php:76 templates/calendar.php:94 -msgid "Time" -msgstr "Време" - -#: templates/calendar.php:169 +#: templates/calendar.php:78 msgid "There was a fail, while parsing the file." msgstr "дошло је до грешке при расчлањивању фајла." +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "" + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "" + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "" + +#: templates/lAfix.php:32 +msgid "May." +msgstr "" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "" + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "" + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "" + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "" + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "" + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "" + #: templates/part.choosecalendar.php:1 msgid "Choose active calendars" msgstr "Изаберите активне календаре" #: templates/part.choosecalendar.php:15 msgid "New Calendar" -msgstr "" +msgstr "Нови календар" #: templates/part.choosecalendar.php:20 #: templates/part.choosecalendar.rowfields.php:4 msgid "CalDav Link" -msgstr "" +msgstr "КалДав веза" #: templates/part.choosecalendar.rowfields.php:4 msgid "Download" msgstr "Преузми" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.eventinfo.php:64 msgid "Edit" msgstr "Уреди" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.editevent.php:8 +#: templates/part.editevent.php:9 msgid "Delete" -msgstr "" +msgstr "Обриши" #: templates/part.editcalendar.php:9 msgid "New calendar" -msgstr "" +msgstr "Нови календар" #: templates/part.editcalendar.php:9 msgid "Edit calendar" @@ -376,90 +457,181 @@ msgstr "Приказаноиме" msgid "Active" msgstr "Активан" -#: templates/part.editcalendar.php:29 templates/part.eventform.php:88 -#: templates/part.eventinfo.php:58 -msgid "Description" -msgstr "Опис" - -#: templates/part.editcalendar.php:35 +#: templates/part.editcalendar.php:29 msgid "Calendar color" msgstr "Боја календара" -#: templates/part.editcalendar.php:41 +#: templates/part.editcalendar.php:42 msgid "Save" -msgstr "" +msgstr "Сними" -#: templates/part.editcalendar.php:41 templates/part.editevent.php:7 +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 #: templates/part.newevent.php:6 msgid "Submit" msgstr "Пошаљи" -#: templates/part.editcalendar.php:42 +#: templates/part.editcalendar.php:43 msgid "Cancel" -msgstr "" +msgstr "Откажи" -#: templates/part.editevent.php:1 templates/part.eventinfo.php:1 +#: templates/part.editevent.php:1 msgid "Edit an event" msgstr "Уреди догађај" -#: templates/part.eventform.php:3 templates/part.eventinfo.php:4 -msgid "Title" -msgstr "Наслов" +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "" #: templates/part.eventform.php:5 msgid "Title of the Event" msgstr "Наслов догађаја" -#: templates/part.eventform.php:9 templates/part.eventinfo.php:9 -msgid "Location" -msgstr "Локација" - #: templates/part.eventform.php:11 -msgid "Location of the Event" -msgstr "Локација догађаја" - -#: templates/part.eventform.php:17 templates/part.eventinfo.php:16 msgid "Category" msgstr "Категорија" -#: templates/part.eventform.php:19 +#: templates/part.eventform.php:13 msgid "Select category" -msgstr "" +msgstr "Изаберите категорију" -#: templates/part.eventform.php:45 templates/part.eventinfo.php:28 +#: templates/part.eventform.php:37 msgid "All Day Event" msgstr "Целодневни догађај" -#: templates/part.eventform.php:49 templates/part.eventinfo.php:31 +#: templates/part.eventform.php:41 msgid "From" msgstr "Од" -#: templates/part.eventform.php:57 templates/part.eventinfo.php:38 +#: templates/part.eventform.php:49 msgid "To" msgstr "До" -#: templates/part.eventform.php:65 templates/part.eventinfo.php:44 +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "" + +#: templates/part.eventform.php:61 msgid "Repeat" msgstr "Понављај" -#: templates/part.eventform.php:81 templates/part.eventinfo.php:51 -msgid "Attendees" -msgstr "Присутни" +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "" -#: templates/part.eventform.php:89 +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Локација" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Локација догађаја" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Опис" + +#: templates/part.eventform.php:218 msgid "Description of the Event" msgstr "Опис догађаја" -#: templates/part.eventinfo.php:63 -msgid "Close" -msgstr "Затвори" +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "" #: templates/part.newevent.php:1 msgid "Create a new event" msgstr "Направи нови догађај" -#: templates/settings.php:11 +#: templates/settings.php:13 msgid "Timezone" msgstr "Временска зона" +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "" + +#: templates/settings.php:34 +msgid "24h" +msgstr "" + +#: templates/settings.php:35 +msgid "12h" +msgstr "" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "" + diff --git a/l10n/sr/contacts.po b/l10n/sr/contacts.po index 780af00702d..b9b5d89d5e3 100644 --- a/l10n/sr/contacts.po +++ b/l10n/sr/contacts.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Slobodan Terzić , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 20:10+0200\n" -"PO-Revision-Date: 2011-09-23 18:10+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" "Language-Team: Serbian (http://www.transifex.net/projects/p/owncloud/team/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,164 +18,265 @@ 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" -#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 -#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 -#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 -#: ajax/showsetproperty.php:32 photo.php:32 -msgid "You need to log in." +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." msgstr "" -#: ajax/addcard.php:37 +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "Контакти" + +#: lib/app.php:52 msgid "This is not your addressbook." -msgstr "" +msgstr "Ово није ваш адресар." -#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 -#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 -#: ajax/showsetproperty.php:38 photo.php:39 +#: lib/app.php:61 photo.php:36 msgid "Contact could not be found." -msgstr "" +msgstr "Контакт се не може наћи." -#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 -#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 -#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 -msgid "This is not your contact." -msgstr "" - -#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 -#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 -msgid "vCard could not be read." -msgstr "" - -#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 -#: ajax/showsetproperty.php:62 +#: lib/app.php:89 msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" +msgstr "Подаци о вКарти су неисправни. Поново учитајте страницу." -#: photo.php:53 -msgid "This card is not RFC compatible." -msgstr "" - -#: photo.php:90 -msgid "This card does not contain a photo." -msgstr "" - -#: templates/index.php:8 -msgid "Add Contact" -msgstr "" - -#: templates/part.addcardform.php:5 -msgid "Group" -msgstr "" - -#: templates/part.addcardform.php:12 templates/part.property.php:3 -msgid "Name" -msgstr "" - -#: templates/part.addcardform.php:14 -msgid "Create Contact" -msgstr "" - -#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 msgid "Address" -msgstr "" +msgstr "Адреса" -#: templates/part.addpropertyform.php:5 +#: lib/app.php:102 templates/part.addcardform.php:43 msgid "Telephone" -msgstr "" +msgstr "Телефон" -#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 msgid "Email" -msgstr "" +msgstr "Е-маил" -#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 msgid "Organization" -msgstr "" +msgstr "Организација" -#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +#: lib/app.php:116 lib/app.php:123 msgid "Work" -msgstr "" +msgstr "Посао" -#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +#: lib/app.php:117 lib/app.php:121 msgid "Home" -msgstr "" +msgstr "Кућа" -#: templates/part.addpropertyform.php:20 templates/part.property.php:48 -#: templates/part.setpropertyform.php:5 -msgid "PO Box" -msgstr "" - -#: templates/part.addpropertyform.php:21 templates/part.property.php:51 -#: templates/part.setpropertyform.php:6 -msgid "Extended" -msgstr "" - -#: templates/part.addpropertyform.php:22 templates/part.property.php:54 -#: templates/part.setpropertyform.php:7 -msgid "Street" -msgstr "" - -#: templates/part.addpropertyform.php:23 templates/part.property.php:57 -#: templates/part.setpropertyform.php:8 -msgid "City" -msgstr "" - -#: templates/part.addpropertyform.php:24 templates/part.property.php:60 -#: templates/part.setpropertyform.php:9 -msgid "Region" -msgstr "" - -#: templates/part.addpropertyform.php:25 templates/part.property.php:63 -#: templates/part.setpropertyform.php:10 -msgid "Zipcode" -msgstr "" - -#: templates/part.addpropertyform.php:26 templates/part.property.php:66 -#: templates/part.setpropertyform.php:11 -msgid "Country" -msgstr "" - -#: templates/part.addpropertyform.php:31 +#: lib/app.php:122 msgid "Mobile" -msgstr "" +msgstr "Мобилни" -#: templates/part.addpropertyform.php:33 +#: lib/app.php:124 msgid "Text" -msgstr "" +msgstr "Текст" -#: templates/part.addpropertyform.php:34 +#: lib/app.php:125 msgid "Voice" -msgstr "" +msgstr "Глас" -#: templates/part.addpropertyform.php:35 +#: lib/app.php:126 msgid "Fax" -msgstr "" +msgstr "Факс" -#: templates/part.addpropertyform.php:36 +#: lib/app.php:127 msgid "Video" -msgstr "" +msgstr "Видео" -#: templates/part.addpropertyform.php:37 +#: lib/app.php:128 msgid "Pager" +msgstr "Пејџер" + +#: lib/search.php:22 +msgid "Contact" +msgstr "Контакт" + +#: photo.php:42 +msgid "This is not your contact." +msgstr "Ово није ваш контакт." + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Додај контакт" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "Адресар" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "Адресар" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Име" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "Тип" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "Поштански број" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Прошири" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Улица" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Град" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Регија" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "Зип код" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "Земља" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Направи контакт" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "Изаберите активне адресаре" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "Нови адресар" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" msgstr "" -#: templates/part.details.php:33 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "Преузимање" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Уреди" + +#: templates/part.chooseaddressbook.rowfields.php:5 msgid "Delete" -msgstr "" +msgstr "Обриши" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "Преузми контакт" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "Обриши контакт" #: templates/part.details.php:34 -msgid "Add Property" -msgstr "" +msgid "Add" +msgstr "Додај" -#: templates/part.property.php:9 +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "Нови адресар" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "Уреди адресар" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "Приказано име" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "Активан" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "Сними" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "Пошаљи" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "Откажи" + +#: templates/part.property.php:3 msgid "Birthday" -msgstr "" +msgstr "Рођендан" -#: templates/part.property.php:29 +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "Пожељан" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 msgid "Phone" -msgstr "" +msgstr "Телефон" -#: templates/part.setpropertyform.php:17 -msgid "Edit" +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "Ажурирај" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" msgstr "" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 77abd798989..fa3a4996d57 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Slobodan Terzić , 2011. +# Slobodan Terzić , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-14 11:23+0000\n" -"Last-Translator: Xabre \n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 02:01+0000\n" +"Last-Translator: Slobodan Terzić \n" "Language-Team: Serbian (http://www.transifex.net/projects/p/owncloud/team/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,51 @@ 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" +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "Ресетовање лозинке за Оунклауд" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "Овом везом ресетујте своју лозинку: {link}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "Добићете везу за ресетовање лозинке путем е-поште." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Захтевано" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Несупела пријава!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Корисничко име" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Захтевај ресетовање" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Ваша лозинка је ресетована" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "На страницу за пријаву" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Нова лозинка" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Ресетуј лозинку" + #: strings.php:5 msgid "Personal" msgstr "Лична" @@ -46,54 +91,50 @@ msgstr "Облак није нађен" msgid "Create an admin account" msgstr "Направи административни налог" -#: templates/installation.php:21 -msgid "Username" -msgstr "Корисничко име" - -#: templates/installation.php:22 +#: templates/installation.php:26 templates/login.php:12 msgid "Password" msgstr "Лозинка" -#: templates/installation.php:27 -msgid "Configure the database" -msgstr "Подешавање базе" - -#: templates/installation.php:32 templates/installation.php:43 -#: templates/installation.php:53 -msgid "will be used" -msgstr "ће бити коришћен" - -#: templates/installation.php:64 -msgid "Database user" -msgstr "Корисник базе" - -#: templates/installation.php:65 -msgid "Database password" -msgstr "Лозинка базе" - -#: templates/installation.php:66 -msgid "Database name" -msgstr "Име базе" - -#: templates/installation.php:72 +#: templates/installation.php:32 msgid "Advanced" msgstr "Напредно" -#: templates/installation.php:75 -msgid "Database host" -msgstr "Домаћин базе" - -#: templates/installation.php:76 +#: templates/installation.php:34 msgid "Data folder" msgstr "Фацикла података" +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Подешавање базе" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "ће бити коришћен" + #: templates/installation.php:79 +msgid "Database user" +msgstr "Корисник базе" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Лозинка базе" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Име базе" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Домаћин базе" + +#: templates/installation.php:98 msgid "Finish setup" msgstr "Заврши подешавање" #: templates/layout.guest.php:35 -msgid "gives you freedom and control over your own data" -msgstr "вам даје слободу и контролу над вашим подацима" +msgid "web services under your control" +msgstr "веб сервиси под контролом" #: templates/layout.user.php:34 msgid "Log out" @@ -103,38 +144,22 @@ msgstr "Одјава" msgid "Settings" msgstr "Подешавања" -#: templates/login.php:4 +#: templates/login.php:5 msgid "Lost your password?" msgstr "Изгубили сте лозинку?" -#: templates/login.php:9 templates/login.php:13 +#: templates/login.php:15 msgid "remember" msgstr "упамти" +#: templates/login.php:16 +msgid "Log in" +msgstr "Пријава" + #: templates/logout.php:1 msgid "You are logged out." msgstr "Одјављени сте." -#: templates/lostpassword.php:3 -msgid "You will receive a link to reset your password via Email." -msgstr "Добићете везу за ресетовање лозинке путем е-поште." - -#: templates/lostpassword.php:5 -msgid "Requested" -msgstr "Захтев послат" - -#: templates/lostpassword.php:8 -msgid "Login failed!" -msgstr "Неуспешно пријављивање!" - -#: templates/lostpassword.php:10 -msgid "Username or Email" -msgstr "Корисничко име или адреса е-поште" - -#: templates/lostpassword.php:11 -msgid "Request reset" -msgstr "Захтев за ресетовање" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "претходно" @@ -143,16 +168,4 @@ msgstr "претходно" msgid "next" msgstr "следеће" -#: templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "Ваша лозинка је ресетована" - -#: templates/resetpassword.php:6 -msgid "New password" -msgstr "Нова лозинка" - -#: templates/resetpassword.php:7 -msgid "Reset password" -msgstr "Ресетуј лозинку" - diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 778a30135e7..807dfc57678 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Slobodan Terzić , 2011. +# Slobodan Terzić , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 02:03+0000\n" +"Last-Translator: Slobodan Terzić \n" "Language-Team: Serbian (http://www.transifex.net/projects/p/owncloud/team/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,33 +18,35 @@ 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" -#: ajax/upload.php:24 +#: ajax/upload.php:19 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "Нема грешке, фајл је успешно послат" -#: ajax/upload.php:25 +#: ajax/upload.php:20 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" +msgstr "Послати фајл превазилази директиву upload_max_filesize из " -#: ajax/upload.php:26 +#: ajax/upload.php:21 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" +"Послати фајл превазилази директиву MAX_FILE_SIZE која је наведена у ХТМЛ " +"форми" -#: ajax/upload.php:27 +#: ajax/upload.php:22 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "Послати фајл је само делимично отпремљен!" -#: ajax/upload.php:28 +#: ajax/upload.php:23 msgid "No file was uploaded" -msgstr "" +msgstr "Ниједан фајл није послат" -#: ajax/upload.php:29 +#: ajax/upload.php:24 msgid "Missing a temporary folder" -msgstr "" +msgstr "Недостаје привремена фасцикла" -#: appinfo/app.php:7 +#: appinfo/app.php:8 msgid "Files" msgstr "Фајлови" @@ -52,43 +54,55 @@ msgstr "Фајлови" msgid "Maximum upload size" msgstr "Максимална величина пошиљке" +#: templates/index.php:7 +msgid "New" +msgstr "Нови" + #: templates/index.php:10 +msgid "Text file" +msgstr "текстуални фајл" + +#: templates/index.php:11 +msgid "Folder" +msgstr "фасцикла" + +#: templates/index.php:12 +msgid "From the web" +msgstr "са веба" + +#: templates/index.php:22 msgid "Upload" msgstr "Пошаљи" -#: templates/index.php:17 -msgid "New Folder" -msgstr "Нова фасцикла" - -#: templates/index.php:31 +#: templates/index.php:35 msgid "Nothing in here. Upload something!" msgstr "Овде нема ничег. Пошаљите нешто!" -#: templates/index.php:39 +#: templates/index.php:43 msgid "Name" msgstr "Име" -#: templates/index.php:41 +#: templates/index.php:45 msgid "Download" msgstr "Преузми" -#: templates/index.php:45 +#: templates/index.php:49 msgid "Size" msgstr "Величина" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Modified" msgstr "Задња измена" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Delete" msgstr "Обриши" -#: templates/index.php:54 +#: templates/index.php:58 msgid "Upload too large" msgstr "Пошиљка је превелика" -#: templates/index.php:56 +#: templates/index.php:60 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." diff --git a/l10n/sr/gallery.po b/l10n/sr/gallery.po new file mode 100644 index 00000000000..c39d33fb1bf --- /dev/null +++ b/l10n/sr/gallery.po @@ -0,0 +1,53 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Slobodan Terzić , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Serbian (http://www.transifex.net/projects/p/owncloud/team/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "Галерија" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "Претражи поново" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "Назад" + + diff --git a/l10n/sr/media.po b/l10n/sr/media.po index aaab3c163d9..331a8bc9f06 100644 --- a/l10n/sr/media.po +++ b/l10n/sr/media.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-13 22:01+0000\n" -"Last-Translator: Xabre \n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Serbian (http://www.transifex.net/projects/p/owncloud/team/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,15 +18,15 @@ 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" -#: appinfo/app.php:31 +#: appinfo/app.php:32 msgid "Music" msgstr "Музика" -#: templates/music.php:3 +#: templates/music.php:3 templates/player.php:13 msgid "Play" msgstr "Пусти" -#: templates/music.php:4 templates/music.php:30 +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 msgid "Pause" msgstr "Паузирај" @@ -34,7 +34,7 @@ msgstr "Паузирај" msgid "Previous" msgstr "Претходна" -#: templates/music.php:6 +#: templates/music.php:6 templates/player.php:15 msgid "Next" msgstr "Следећа" @@ -46,11 +46,7 @@ msgstr "Искључи звук" msgid "Unmute" msgstr "Укључи звук" -#: templates/music.php:28 -msgid "Songs scanned" -msgstr "Претражених песама" - -#: templates/music.php:29 +#: templates/music.php:25 msgid "Rescan Collection" msgstr "Поново претражи збирку" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index a81b25b9474..123642508b3 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Slobodan Terzić , 2011. +# Slobodan Terzić , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-13 22:02+0000\n" -"Last-Translator: Xabre \n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 16:32+0000\n" +"Last-Translator: icewind \n" "Language-Team: Serbian (http://www.transifex.net/projects/p/owncloud/team/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,30 @@ 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" -#: ajax/openid.php:13 ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Грешка аутентификације" +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "" -#: ajax/openid.php:21 -msgid "OpenID Changed" -msgstr "OpenID је измењен" - -#: ajax/openid.php:23 ajax/setlanguage.php:23 +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 msgid "Invalid request" msgstr "Неисправан захтев" -#: ajax/setlanguage.php:21 +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID је измењен" + +#: ajax/setlanguage.php:14 msgid "Language changed" msgstr "Језик је измењен" +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "" + #: templates/apps.php:8 msgid "Add your application" msgstr "Додајте свој програм" @@ -54,15 +62,15 @@ msgstr "од" msgid "Ask a question" msgstr "Поставите питање" -#: templates/help.php:17 +#: templates/help.php:20 msgid "Problems connecting to help database." msgstr "Проблем у повезивању са базом помоћи" -#: templates/help.php:18 +#: templates/help.php:21 msgid "Go there manually." msgstr "Отиђите тамо ручно." -#: templates/help.php:26 +#: templates/help.php:29 msgid "Answer" msgstr "Одговор" @@ -98,36 +106,52 @@ msgstr "прикажи" msgid "Change password" msgstr "Измени лозинку" -#: templates/personal.php:24 templates/personal.php:25 +#: templates/personal.php:24 +msgid "Email" +msgstr "Е-пошта" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "Ваша адреса е-поште" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:32 templates/personal.php:33 msgid "Language" msgstr "Језик" -#: templates/personal.php:30 -msgid "Help translating" -msgstr "Помозите у превођењу" +#: templates/personal.php:38 +msgid "Help translate" +msgstr " Помозите у превођењу" -#: templates/personal.php:37 +#: templates/personal.php:45 msgid "use this address to connect to your ownCloud in your file manager" msgstr "" "користите ову адресу да би се повезали на ownCloud путем менаџњера фајлова" -#: templates/users.php:16 +#: templates/users.php:15 templates/users.php:30 msgid "Name" msgstr "Име" -#: templates/users.php:17 +#: templates/users.php:16 templates/users.php:31 msgid "Password" msgstr "Лозинка" -#: templates/users.php:18 templates/users.php:36 +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 msgid "Groups" msgstr "Групе" -#: templates/users.php:24 +#: templates/users.php:23 msgid "Create" msgstr "Направи" -#: templates/users.php:48 +#: templates/users.php:33 +msgid "Quota" +msgstr "" + +#: templates/users.php:58 msgid "Delete" msgstr "Обриши" diff --git a/l10n/sr@latin/calendar.po b/l10n/sr@latin/calendar.po index 30f68f4e4d7..9d94f4adbb7 100644 --- a/l10n/sr@latin/calendar.po +++ b/l10n/sr@latin/calendar.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-15 13:45+0000\n" +"Last-Translator: icewind \n" "Language-Team: Serbian (Latin) (http://www.transifex.net/projects/p/owncloud/team/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,351 +18,432 @@ 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" -#: ajax/createcalendar.php:18 ajax/settimezone.php:19 -#: ajax/updatecalendar.php:18 -msgid "Authentication error" -msgstr "Greška autentifikacije" - -#: ajax/editeventform.php:25 -msgid "Wrong calendar" +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" msgstr "" -#: ajax/settimezone.php:27 +#: ajax/settimezone.php:22 msgid "Timezone changed" msgstr "Vremenska zona je promenjena" -#: ajax/settimezone.php:29 +#: ajax/settimezone.php:24 msgid "Invalid request" msgstr "Neispravan zahtev" -#: appinfo/app.php:19 templates/part.eventform.php:27 -#: templates/part.eventinfo.php:18 +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 msgid "Calendar" msgstr "Kalendar" -#: lib/object.php:292 +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Pogrešan kalendar" + +#: lib/app.php:60 lib/object.php:332 msgid "Birthday" -msgstr "" +msgstr "Rođendan" -#: lib/object.php:293 +#: lib/app.php:61 lib/object.php:333 msgid "Business" -msgstr "" +msgstr "Posao" -#: lib/object.php:294 +#: lib/app.php:62 lib/object.php:334 msgid "Call" -msgstr "" +msgstr "Poziv" -#: lib/object.php:295 +#: lib/app.php:63 lib/object.php:335 msgid "Clients" -msgstr "" +msgstr "Klijenti" -#: lib/object.php:296 +#: lib/app.php:64 lib/object.php:336 msgid "Deliverer" -msgstr "" +msgstr "Dostavljač" -#: lib/object.php:297 +#: lib/app.php:65 lib/object.php:337 msgid "Holidays" -msgstr "" +msgstr "Praznici" -#: lib/object.php:298 +#: lib/app.php:66 lib/object.php:338 msgid "Ideas" -msgstr "" +msgstr "Ideje" -#: lib/object.php:299 +#: lib/app.php:67 lib/object.php:339 msgid "Journey" -msgstr "" +msgstr "putovanje" -#: lib/object.php:300 +#: lib/app.php:68 lib/object.php:340 msgid "Jubilee" -msgstr "" +msgstr "jubilej" -#: lib/object.php:301 +#: lib/app.php:69 lib/object.php:341 msgid "Meeting" -msgstr "" +msgstr "Sastanak" -#: lib/object.php:302 +#: lib/app.php:70 lib/object.php:342 msgid "Other" -msgstr "" +msgstr "Drugo" -#: lib/object.php:303 +#: lib/app.php:71 lib/object.php:343 msgid "Personal" -msgstr "" +msgstr "Lično" -#: lib/object.php:304 +#: lib/app.php:72 lib/object.php:344 msgid "Projects" -msgstr "" +msgstr "Projekti" -#: lib/object.php:305 +#: lib/app.php:73 lib/object.php:345 msgid "Questions" -msgstr "" +msgstr "Pitanja" -#: lib/object.php:306 +#: lib/app.php:74 lib/object.php:346 msgid "Work" -msgstr "" +msgstr "Posao" -#: lib/object.php:313 +#: lib/object.php:353 msgid "Does not repeat" msgstr "Ne ponavlja se" -#: lib/object.php:314 +#: lib/object.php:354 msgid "Daily" msgstr "dnevno" -#: lib/object.php:315 +#: lib/object.php:355 msgid "Weekly" msgstr "nedeljno" -#: lib/object.php:316 +#: lib/object.php:356 msgid "Every Weekday" msgstr "svakog dana u nedelji" -#: lib/object.php:317 +#: lib/object.php:357 msgid "Bi-Weekly" msgstr "dvonedeljno" -#: lib/object.php:318 +#: lib/object.php:358 msgid "Monthly" msgstr "mesečno" -#: lib/object.php:319 +#: lib/object.php:359 msgid "Yearly" msgstr "godišnje" -#: lib/object.php:337 -msgid "Not an array" +#: lib/object.php:366 +msgid "never" msgstr "" -#: templates/calendar.php:3 +#: lib/object.php:367 +msgid "by occurrences" +msgstr "" + +#: lib/object.php:368 +msgid "by date" +msgstr "" + +#: lib/object.php:375 +msgid "by monthday" +msgstr "" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "" + +#: lib/object.php:383 templates/lAfix.php:3 +msgid "Monday" +msgstr "" + +#: lib/object.php:384 templates/lAfix.php:4 +msgid "Tuesday" +msgstr "" + +#: lib/object.php:385 templates/lAfix.php:5 +msgid "Wednesday" +msgstr "" + +#: lib/object.php:386 templates/lAfix.php:6 +msgid "Thursday" +msgstr "" + +#: lib/object.php:387 templates/lAfix.php:7 +msgid "Friday" +msgstr "" + +#: lib/object.php:388 templates/lAfix.php:8 +msgid "Saturday" +msgstr "" + +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "" + +#: lib/object.php:396 +msgid "events week of month" +msgstr "" + +#: lib/object.php:397 +msgid "first" +msgstr "" + +#: lib/object.php:398 +msgid "second" +msgstr "" + +#: lib/object.php:399 +msgid "third" +msgstr "" + +#: lib/object.php:400 +msgid "fourth" +msgstr "" + +#: lib/object.php:401 +msgid "fifth" +msgstr "" + +#: lib/object.php:402 +msgid "last" +msgstr "" + +#: lib/object.php:424 templates/lAfix.php:16 +msgid "January" +msgstr "" + +#: lib/object.php:425 templates/lAfix.php:17 +msgid "February" +msgstr "" + +#: lib/object.php:426 templates/lAfix.php:18 +msgid "March" +msgstr "" + +#: lib/object.php:427 templates/lAfix.php:19 +msgid "April" +msgstr "" + +#: lib/object.php:428 templates/lAfix.php:20 +msgid "May" +msgstr "" + +#: lib/object.php:429 templates/lAfix.php:21 +msgid "June" +msgstr "" + +#: lib/object.php:430 templates/lAfix.php:22 +msgid "July" +msgstr "" + +#: lib/object.php:431 templates/lAfix.php:23 +msgid "August" +msgstr "" + +#: lib/object.php:432 templates/lAfix.php:24 +msgid "September" +msgstr "" + +#: lib/object.php:433 templates/lAfix.php:25 +msgid "October" +msgstr "" + +#: lib/object.php:434 templates/lAfix.php:26 +msgid "November" +msgstr "" + +#: lib/object.php:435 templates/lAfix.php:27 +msgid "December" +msgstr "" + +#: lib/object.php:441 +msgid "by events date" +msgstr "" + +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "" + +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "" + +#: lib/object.php:444 +msgid "by day and month" +msgstr "" + +#: lib/object.php:467 +msgid "Not an array" +msgstr "Nije oblast" + +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "" + +#: lib/search.php:40 +msgid "Cal." +msgstr "" + +#: templates/calendar.php:10 msgid "All day" msgstr "Ceo dan" -#: templates/calendar.php:32 -msgid "Sunday" -msgstr "Nedelja" - -#: templates/calendar.php:32 -msgid "Monday" -msgstr "Ponedeljak" - -#: templates/calendar.php:32 -msgid "Tuesday" -msgstr "Utorak" - -#: templates/calendar.php:32 -msgid "Wednesday" -msgstr "Sreda" - -#: templates/calendar.php:32 -msgid "Thursday" -msgstr "Četvrtak" - -#: templates/calendar.php:32 -msgid "Friday" -msgstr "Petak" - -#: templates/calendar.php:32 -msgid "Saturday" -msgstr "Subota" - -#: templates/calendar.php:33 -msgid "Sun." -msgstr "Ned" - -#: templates/calendar.php:33 -msgid "Mon." -msgstr "Pon" - -#: templates/calendar.php:33 -msgid "Tue." -msgstr "Uto" - -#: templates/calendar.php:33 -msgid "Wed." -msgstr "Sre" - -#: templates/calendar.php:33 -msgid "Thu." -msgstr "Čet" - -#: templates/calendar.php:33 -msgid "Fri." -msgstr "Pet" - -#: templates/calendar.php:33 -msgid "Sat." -msgstr "Sub" - -#: templates/calendar.php:34 -msgid "January" -msgstr "Januar" - -#: templates/calendar.php:34 -msgid "February" -msgstr "Februar" - -#: templates/calendar.php:34 -msgid "March" -msgstr "Mart" - -#: templates/calendar.php:34 -msgid "April" -msgstr "April" - -#: templates/calendar.php:34 -msgid "May" -msgstr "Maj" - -#: templates/calendar.php:34 -msgid "June" -msgstr "Jun" - -#: templates/calendar.php:34 -msgid "July" -msgstr "Jul" - -#: templates/calendar.php:34 -msgid "August" -msgstr "Avgust" - -#: templates/calendar.php:34 -msgid "September" -msgstr "Septembar" - -#: templates/calendar.php:34 -msgid "October" -msgstr "Oktobar" - -#: templates/calendar.php:34 -msgid "November" -msgstr "Novembar" - -#: templates/calendar.php:34 -msgid "December" -msgstr "Decembar" - -#: templates/calendar.php:35 -msgid "Jan." -msgstr "Jan" - -#: templates/calendar.php:35 -msgid "Feb." -msgstr "Feb" - -#: templates/calendar.php:35 -msgid "Mar." -msgstr "Mar" - -#: templates/calendar.php:35 -msgid "Apr." -msgstr "Apr" - -#: templates/calendar.php:35 -msgid "May." +#: templates/calendar.php:11 +msgid "Missing fields" msgstr "" -#: templates/calendar.php:35 -msgid "Jun." -msgstr "Jun" +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" +msgstr "Naslov" -#: templates/calendar.php:35 -msgid "Jul." -msgstr "Jul" +#: templates/calendar.php:14 +msgid "From Date" +msgstr "" -#: templates/calendar.php:35 -msgid "Aug." -msgstr "Avg" +#: templates/calendar.php:15 +msgid "From Time" +msgstr "" -#: templates/calendar.php:35 -msgid "Sep." -msgstr "Sep" +#: templates/calendar.php:16 +msgid "To Date" +msgstr "" -#: templates/calendar.php:35 -msgid "Oct." -msgstr "Okt" +#: templates/calendar.php:17 +msgid "To Time" +msgstr "" -#: templates/calendar.php:35 -msgid "Nov." -msgstr "Nov" +#: templates/calendar.php:18 +msgid "The event ends before it starts" +msgstr "" -#: templates/calendar.php:35 -msgid "Dec." -msgstr "Dec" +#: templates/calendar.php:19 +msgid "There was a database fail" +msgstr "" -#: templates/calendar.php:36 templates/calendar.php:50 -#: templates/calendar.php:116 +#: templates/calendar.php:52 msgid "Week" msgstr "Nedelja" -#: templates/calendar.php:37 templates/calendar.php:51 -msgid "Weeks" -msgstr "Nedelja" - -#: templates/calendar.php:38 -msgid "More before {startdate}" -msgstr "" - -#: templates/calendar.php:39 -msgid "More after {enddate}" -msgstr "" - -#: templates/calendar.php:49 -msgid "Day" -msgstr "Dan" - -#: templates/calendar.php:52 +#: templates/calendar.php:53 msgid "Month" msgstr "Mesec" -#: templates/calendar.php:53 +#: templates/calendar.php:54 msgid "List" -msgstr "" +msgstr "Spisak" -#: templates/calendar.php:58 +#: templates/calendar.php:59 msgid "Today" msgstr "Danas" -#: templates/calendar.php:59 +#: templates/calendar.php:60 msgid "Calendars" msgstr "Kalendari" -#: templates/calendar.php:76 templates/calendar.php:94 -msgid "Time" -msgstr "Vreme" - -#: templates/calendar.php:169 +#: templates/calendar.php:78 msgid "There was a fail, while parsing the file." msgstr "došlo je do greške pri rasčlanjivanju fajla." +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "" + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "" + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "" + +#: templates/lAfix.php:32 +msgid "May." +msgstr "" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "" + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "" + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "" + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "" + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "" + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "" + #: templates/part.choosecalendar.php:1 msgid "Choose active calendars" msgstr "Izaberite aktivne kalendare" #: templates/part.choosecalendar.php:15 msgid "New Calendar" -msgstr "" +msgstr "Novi kalendar" #: templates/part.choosecalendar.php:20 #: templates/part.choosecalendar.rowfields.php:4 msgid "CalDav Link" -msgstr "" +msgstr "KalDav veza" #: templates/part.choosecalendar.rowfields.php:4 msgid "Download" msgstr "Preuzmi" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.eventinfo.php:64 msgid "Edit" msgstr "Uredi" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.editevent.php:8 +#: templates/part.editevent.php:9 msgid "Delete" -msgstr "" +msgstr "Obriši" #: templates/part.editcalendar.php:9 msgid "New calendar" -msgstr "" +msgstr "Novi kalendar" #: templates/part.editcalendar.php:9 msgid "Edit calendar" @@ -376,90 +457,181 @@ msgstr "Prikazanoime" msgid "Active" msgstr "Aktivan" -#: templates/part.editcalendar.php:29 templates/part.eventform.php:88 -#: templates/part.eventinfo.php:58 -msgid "Description" -msgstr "Opis" - -#: templates/part.editcalendar.php:35 +#: templates/part.editcalendar.php:29 msgid "Calendar color" msgstr "Boja kalendara" -#: templates/part.editcalendar.php:41 +#: templates/part.editcalendar.php:42 msgid "Save" -msgstr "" +msgstr "Snimi" -#: templates/part.editcalendar.php:41 templates/part.editevent.php:7 +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 #: templates/part.newevent.php:6 msgid "Submit" msgstr "Pošalji" -#: templates/part.editcalendar.php:42 +#: templates/part.editcalendar.php:43 msgid "Cancel" -msgstr "" +msgstr "Otkaži" -#: templates/part.editevent.php:1 templates/part.eventinfo.php:1 +#: templates/part.editevent.php:1 msgid "Edit an event" msgstr "Uredi događaj" -#: templates/part.eventform.php:3 templates/part.eventinfo.php:4 -msgid "Title" -msgstr "Naslov" +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "" #: templates/part.eventform.php:5 msgid "Title of the Event" msgstr "Naslov događaja" -#: templates/part.eventform.php:9 templates/part.eventinfo.php:9 -msgid "Location" -msgstr "Lokacija" - #: templates/part.eventform.php:11 -msgid "Location of the Event" -msgstr "Lokacija događaja" - -#: templates/part.eventform.php:17 templates/part.eventinfo.php:16 msgid "Category" msgstr "Kategorija" -#: templates/part.eventform.php:19 +#: templates/part.eventform.php:13 msgid "Select category" -msgstr "" +msgstr "Izaberite kategoriju" -#: templates/part.eventform.php:45 templates/part.eventinfo.php:28 +#: templates/part.eventform.php:37 msgid "All Day Event" msgstr "Celodnevni događaj" -#: templates/part.eventform.php:49 templates/part.eventinfo.php:31 +#: templates/part.eventform.php:41 msgid "From" msgstr "Od" -#: templates/part.eventform.php:57 templates/part.eventinfo.php:38 +#: templates/part.eventform.php:49 msgid "To" msgstr "Do" -#: templates/part.eventform.php:65 templates/part.eventinfo.php:44 +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "" + +#: templates/part.eventform.php:61 msgid "Repeat" msgstr "Ponavljaj" -#: templates/part.eventform.php:81 templates/part.eventinfo.php:51 -msgid "Attendees" -msgstr "Prisutni" +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "" -#: templates/part.eventform.php:89 +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Lokacija" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Lokacija događaja" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Opis" + +#: templates/part.eventform.php:218 msgid "Description of the Event" msgstr "Opis događaja" -#: templates/part.eventinfo.php:63 -msgid "Close" -msgstr "Zatvori" +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "" #: templates/part.newevent.php:1 msgid "Create a new event" msgstr "Napravi novi događaj" -#: templates/settings.php:11 +#: templates/settings.php:13 msgid "Timezone" msgstr "Vremenska zona" +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "" + +#: templates/settings.php:34 +msgid "24h" +msgstr "" + +#: templates/settings.php:35 +msgid "12h" +msgstr "" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "" + diff --git a/l10n/sr@latin/contacts.po b/l10n/sr@latin/contacts.po index 3066a8fc090..9953de7e4ba 100644 --- a/l10n/sr@latin/contacts.po +++ b/l10n/sr@latin/contacts.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Slobodan Terzić , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 20:10+0200\n" -"PO-Revision-Date: 2011-09-23 18:10+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" "Language-Team: Serbian (Latin) (http://www.transifex.net/projects/p/owncloud/team/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,164 +18,265 @@ 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" -#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 -#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 -#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 -#: ajax/showsetproperty.php:32 photo.php:32 -msgid "You need to log in." +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." msgstr "" -#: ajax/addcard.php:37 +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: lib/app.php:52 msgid "This is not your addressbook." -msgstr "" +msgstr "Ovo nije vaš adresar." -#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 -#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 -#: ajax/showsetproperty.php:38 photo.php:39 +#: lib/app.php:61 photo.php:36 msgid "Contact could not be found." -msgstr "" +msgstr "Kontakt se ne može naći." -#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 -#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 -#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 -msgid "This is not your contact." -msgstr "" - -#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 -#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 -msgid "vCard could not be read." -msgstr "" - -#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 -#: ajax/showsetproperty.php:62 +#: lib/app.php:89 msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" +msgstr "Podaci o vKarti su neispravni. Ponovo učitajte stranicu." -#: photo.php:53 -msgid "This card is not RFC compatible." -msgstr "" - -#: photo.php:90 -msgid "This card does not contain a photo." -msgstr "" - -#: templates/index.php:8 -msgid "Add Contact" -msgstr "" - -#: templates/part.addcardform.php:5 -msgid "Group" -msgstr "" - -#: templates/part.addcardform.php:12 templates/part.property.php:3 -msgid "Name" -msgstr "" - -#: templates/part.addcardform.php:14 -msgid "Create Contact" -msgstr "" - -#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 msgid "Address" -msgstr "" +msgstr "Adresa" -#: templates/part.addpropertyform.php:5 +#: lib/app.php:102 templates/part.addcardform.php:43 msgid "Telephone" -msgstr "" +msgstr "Telefon" -#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 msgid "Email" -msgstr "" +msgstr "E-mail" -#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 msgid "Organization" -msgstr "" +msgstr "Organizacija" -#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +#: lib/app.php:116 lib/app.php:123 msgid "Work" -msgstr "" +msgstr "Posao" -#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +#: lib/app.php:117 lib/app.php:121 msgid "Home" -msgstr "" +msgstr "Kuća" -#: templates/part.addpropertyform.php:20 templates/part.property.php:48 -#: templates/part.setpropertyform.php:5 -msgid "PO Box" -msgstr "" - -#: templates/part.addpropertyform.php:21 templates/part.property.php:51 -#: templates/part.setpropertyform.php:6 -msgid "Extended" -msgstr "" - -#: templates/part.addpropertyform.php:22 templates/part.property.php:54 -#: templates/part.setpropertyform.php:7 -msgid "Street" -msgstr "" - -#: templates/part.addpropertyform.php:23 templates/part.property.php:57 -#: templates/part.setpropertyform.php:8 -msgid "City" -msgstr "" - -#: templates/part.addpropertyform.php:24 templates/part.property.php:60 -#: templates/part.setpropertyform.php:9 -msgid "Region" -msgstr "" - -#: templates/part.addpropertyform.php:25 templates/part.property.php:63 -#: templates/part.setpropertyform.php:10 -msgid "Zipcode" -msgstr "" - -#: templates/part.addpropertyform.php:26 templates/part.property.php:66 -#: templates/part.setpropertyform.php:11 -msgid "Country" -msgstr "" - -#: templates/part.addpropertyform.php:31 +#: lib/app.php:122 msgid "Mobile" -msgstr "" +msgstr "Mobilni" -#: templates/part.addpropertyform.php:33 +#: lib/app.php:124 msgid "Text" -msgstr "" +msgstr "Tekst" -#: templates/part.addpropertyform.php:34 +#: lib/app.php:125 msgid "Voice" -msgstr "" +msgstr "Glas" -#: templates/part.addpropertyform.php:35 +#: lib/app.php:126 msgid "Fax" -msgstr "" +msgstr "Faks" -#: templates/part.addpropertyform.php:36 +#: lib/app.php:127 msgid "Video" -msgstr "" +msgstr "Video" -#: templates/part.addpropertyform.php:37 +#: lib/app.php:128 msgid "Pager" +msgstr "Pejdžer" + +#: lib/search.php:22 +msgid "Contact" msgstr "" -#: templates/part.details.php:33 +#: photo.php:42 +msgid "This is not your contact." +msgstr "Ovo nije vaš kontakt." + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Dodaj kontakt" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Ime" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "Poštanski broj" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Proširi" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Ulica" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Grad" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Regija" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "Zip kod" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "Zemlja" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Napravi kontakt" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Uredi" + +#: templates/part.chooseaddressbook.rowfields.php:5 msgid "Delete" +msgstr "Obriši" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "" + +#: templates/part.details.php:4 +msgid "Delete contact" msgstr "" #: templates/part.details.php:34 -msgid "Add Property" +msgid "Add" msgstr "" -#: templates/part.property.php:9 +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "" + +#: templates/part.property.php:3 msgid "Birthday" +msgstr "Rođendan" + +#: templates/part.property.php:23 +msgid "Preferred" msgstr "" -#: templates/part.property.php:29 +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 msgid "Phone" +msgstr "Telefon" + +#: templates/part.setpropertyform.php:57 +msgid "Update" msgstr "" -#: templates/part.setpropertyform.php:17 -msgid "Edit" +#: templates/settings.php:4 +msgid "CardDAV syncing address:" msgstr "" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 33bd96a4c3d..93b14cb49ad 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-14 11:23+0000\n" -"Last-Translator: Xabre \n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Serbian (Latin) (http://www.transifex.net/projects/p/owncloud/team/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,51 @@ 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" +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "Dobićete vezu za resetovanje lozinke putem e-pošte." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Zahtevano" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Nesupela prijava!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Korisničko ime" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Zahtevaj resetovanje" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Vaša lozinka je resetovana" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Nova lozinka" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Resetuj lozinku" + #: strings.php:5 msgid "Personal" msgstr "Lična" @@ -46,54 +91,50 @@ msgstr "Oblak nije nađen" msgid "Create an admin account" msgstr "Napravi administrativni nalog" -#: templates/installation.php:21 -msgid "Username" -msgstr "Korisničko ime" - -#: templates/installation.php:22 +#: templates/installation.php:26 templates/login.php:12 msgid "Password" msgstr "Lozinka" -#: templates/installation.php:27 -msgid "Configure the database" -msgstr "Podešavanje baze" - -#: templates/installation.php:32 templates/installation.php:43 -#: templates/installation.php:53 -msgid "will be used" -msgstr "će biti korišćen" - -#: templates/installation.php:64 -msgid "Database user" -msgstr "Korisnik baze" - -#: templates/installation.php:65 -msgid "Database password" -msgstr "Lozinka baze" - -#: templates/installation.php:66 -msgid "Database name" -msgstr "Ime baze" - -#: templates/installation.php:72 +#: templates/installation.php:32 msgid "Advanced" msgstr "Napredno" -#: templates/installation.php:75 -msgid "Database host" -msgstr "Domaćin baze" - -#: templates/installation.php:76 +#: templates/installation.php:34 msgid "Data folder" msgstr "Facikla podataka" +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Podešavanje baze" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "će biti korišćen" + #: templates/installation.php:79 +msgid "Database user" +msgstr "Korisnik baze" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Lozinka baze" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Ime baze" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Domaćin baze" + +#: templates/installation.php:98 msgid "Finish setup" msgstr "Završi podešavanje" #: templates/layout.guest.php:35 -msgid "gives you freedom and control over your own data" -msgstr "vam daje slobodu i kontrolu nad vašim podacima" +msgid "web services under your control" +msgstr "" #: templates/layout.user.php:34 msgid "Log out" @@ -103,38 +144,22 @@ msgstr "Odjava" msgid "Settings" msgstr "Podešavanja" -#: templates/login.php:4 +#: templates/login.php:5 msgid "Lost your password?" msgstr "Izgubili ste lozinku?" -#: templates/login.php:9 templates/login.php:13 +#: templates/login.php:15 msgid "remember" msgstr "upamti" +#: templates/login.php:16 +msgid "Log in" +msgstr "" + #: templates/logout.php:1 msgid "You are logged out." msgstr "Odjavljeni ste." -#: templates/lostpassword.php:3 -msgid "You will receive a link to reset your password via Email." -msgstr "Dobićete vezu za resetovanje lozinke putem e-pošte." - -#: templates/lostpassword.php:5 -msgid "Requested" -msgstr "Zahtev poslat" - -#: templates/lostpassword.php:8 -msgid "Login failed!" -msgstr "Neuspešno prijavljivanje!" - -#: templates/lostpassword.php:10 -msgid "Username or Email" -msgstr "Korisničko ime ili adresa e-pošte" - -#: templates/lostpassword.php:11 -msgid "Request reset" -msgstr "Zahtev za resetovanje" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "prethodno" @@ -143,16 +168,4 @@ msgstr "prethodno" msgid "next" msgstr "sledeće" -#: templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "Vaša lozinka je resetovana" - -#: templates/resetpassword.php:6 -msgid "New password" -msgstr "Nova lozinka" - -#: templates/resetpassword.php:7 -msgid "Reset password" -msgstr "Resetuj lozinku" - diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index f9af37cbada..261d61c800d 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Serbian (Latin) (http://www.transifex.net/projects/p/owncloud/team/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,33 +18,35 @@ 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" -#: ajax/upload.php:24 +#: ajax/upload.php:19 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "Nema greške, fajl je uspešno poslat" -#: ajax/upload.php:25 +#: ajax/upload.php:20 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" +msgstr "Poslati fajl prevazilazi direktivu upload_max_filesize iz " -#: ajax/upload.php:26 +#: ajax/upload.php:21 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" +"Poslati fajl prevazilazi direktivu MAX_FILE_SIZE koja je navedena u HTML " +"formi" -#: ajax/upload.php:27 +#: ajax/upload.php:22 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "Poslati fajl je samo delimično otpremljen!" -#: ajax/upload.php:28 +#: ajax/upload.php:23 msgid "No file was uploaded" -msgstr "" +msgstr "Nijedan fajl nije poslat" -#: ajax/upload.php:29 +#: ajax/upload.php:24 msgid "Missing a temporary folder" -msgstr "" +msgstr "Nedostaje privremena fascikla" -#: appinfo/app.php:7 +#: appinfo/app.php:8 msgid "Files" msgstr "Fajlovi" @@ -52,43 +54,55 @@ msgstr "Fajlovi" msgid "Maximum upload size" msgstr "Maksimalna veličina pošiljke" +#: templates/index.php:7 +msgid "New" +msgstr "" + #: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:11 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From the web" +msgstr "" + +#: templates/index.php:22 msgid "Upload" msgstr "Pošalji" -#: templates/index.php:17 -msgid "New Folder" -msgstr "Nova fascikla" - -#: templates/index.php:31 +#: templates/index.php:35 msgid "Nothing in here. Upload something!" msgstr "Ovde nema ničeg. Pošaljite nešto!" -#: templates/index.php:39 +#: templates/index.php:43 msgid "Name" msgstr "Ime" -#: templates/index.php:41 +#: templates/index.php:45 msgid "Download" msgstr "Preuzmi" -#: templates/index.php:45 +#: templates/index.php:49 msgid "Size" msgstr "Veličina" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Modified" msgstr "Zadnja izmena" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Delete" msgstr "Obriši" -#: templates/index.php:54 +#: templates/index.php:58 msgid "Upload too large" msgstr "Pošiljka je prevelika" -#: templates/index.php:56 +#: templates/index.php:60 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." diff --git a/l10n/sr@latin/gallery.po b/l10n/sr@latin/gallery.po new file mode 100644 index 00000000000..a123809975e --- /dev/null +++ b/l10n/sr@latin/gallery.po @@ -0,0 +1,52 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Serbian (Latin) (http://www.transifex.net/projects/p/owncloud/team/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" + + diff --git a/l10n/sr@latin/media.po b/l10n/sr@latin/media.po index a647feac32c..e9d968b7493 100644 --- a/l10n/sr@latin/media.po +++ b/l10n/sr@latin/media.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-13 22:12+0000\n" -"Last-Translator: Xabre \n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Serbian (Latin) (http://www.transifex.net/projects/p/owncloud/team/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,15 +18,15 @@ 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" -#: appinfo/app.php:31 +#: appinfo/app.php:32 msgid "Music" msgstr "Muzika" -#: templates/music.php:3 +#: templates/music.php:3 templates/player.php:13 msgid "Play" msgstr "Pusti" -#: templates/music.php:4 templates/music.php:30 +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 msgid "Pause" msgstr "Pauziraj" @@ -34,7 +34,7 @@ msgstr "Pauziraj" msgid "Previous" msgstr "Prethodna" -#: templates/music.php:6 +#: templates/music.php:6 templates/player.php:15 msgid "Next" msgstr "Sledeća" @@ -46,11 +46,7 @@ msgstr "Isključi zvuk" msgid "Unmute" msgstr "Uključi zvuk" -#: templates/music.php:28 -msgid "Songs scanned" -msgstr "Pretraženih pesama" - -#: templates/music.php:29 +#: templates/music.php:25 msgid "Rescan Collection" msgstr "Ponovo pretraži zbirku" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index cb8b76399c1..439bcd298a7 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-13 22:13+0000\n" -"Last-Translator: Xabre \n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 16:32+0000\n" +"Last-Translator: icewind \n" "Language-Team: Serbian (Latin) (http://www.transifex.net/projects/p/owncloud/team/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +18,30 @@ 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" -#: ajax/openid.php:13 ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Greška autentifikacije" +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "" -#: ajax/openid.php:21 -msgid "OpenID Changed" -msgstr "OpenID je izmenjen" - -#: ajax/openid.php:23 ajax/setlanguage.php:23 +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 msgid "Invalid request" msgstr "Neispravan zahtev" -#: ajax/setlanguage.php:21 +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID je izmenjen" + +#: ajax/setlanguage.php:14 msgid "Language changed" msgstr "Jezik je izmenjen" +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "" + #: templates/apps.php:8 msgid "Add your application" msgstr "Dodajte svoj program" @@ -54,15 +62,15 @@ msgstr "od" msgid "Ask a question" msgstr "Postavite pitanje" -#: templates/help.php:17 +#: templates/help.php:20 msgid "Problems connecting to help database." msgstr "Problem u povezivanju sa bazom pomoći" -#: templates/help.php:18 +#: templates/help.php:21 msgid "Go there manually." msgstr "Otiđite tamo ručno." -#: templates/help.php:26 +#: templates/help.php:29 msgid "Answer" msgstr "Odgovor" @@ -98,36 +106,52 @@ msgstr "prikaži" msgid "Change password" msgstr "Izmeni lozinku" -#: templates/personal.php:24 templates/personal.php:25 +#: templates/personal.php:24 +msgid "Email" +msgstr "" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:32 templates/personal.php:33 msgid "Language" msgstr "Jezik" -#: templates/personal.php:30 -msgid "Help translating" -msgstr "Pomozite u prevođenju" +#: templates/personal.php:38 +msgid "Help translate" +msgstr "" -#: templates/personal.php:37 +#: templates/personal.php:45 msgid "use this address to connect to your ownCloud in your file manager" msgstr "" "koristite ovu adresu da bi se povezali na ownCloud putem menadžnjera fajlova" -#: templates/users.php:16 +#: templates/users.php:15 templates/users.php:30 msgid "Name" msgstr "Ime" -#: templates/users.php:17 +#: templates/users.php:16 templates/users.php:31 msgid "Password" msgstr "Lozinka" -#: templates/users.php:18 templates/users.php:36 +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 msgid "Groups" msgstr "Grupe" -#: templates/users.php:24 +#: templates/users.php:23 msgid "Create" msgstr "Napravi" -#: templates/users.php:48 +#: templates/users.php:33 +msgid "Quota" +msgstr "" + +#: templates/users.php:58 msgid "Delete" msgstr "Obriši" diff --git a/l10n/sv/calendar.po b/l10n/sv/calendar.po index db5536fcbc9..4d3e02d4eff 100644 --- a/l10n/sv/calendar.po +++ b/l10n/sv/calendar.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-15 13:45+0000\n" +"Last-Translator: icewind \n" "Language-Team: Swedish (http://www.transifex.net/projects/p/owncloud/team/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,448 +18,620 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/createcalendar.php:18 ajax/settimezone.php:19 -#: ajax/updatecalendar.php:18 -msgid "Authentication error" +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" msgstr "" -#: ajax/editeventform.php:25 -msgid "Wrong calendar" -msgstr "" - -#: ajax/settimezone.php:27 +#: ajax/settimezone.php:22 msgid "Timezone changed" -msgstr "" +msgstr "Tidszon ändrad" -#: ajax/settimezone.php:29 +#: ajax/settimezone.php:24 msgid "Invalid request" -msgstr "" +msgstr "Ogiltig begäran" -#: appinfo/app.php:19 templates/part.eventform.php:27 -#: templates/part.eventinfo.php:18 +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 msgid "Calendar" -msgstr "" +msgstr "Kalender" -#: lib/object.php:292 +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Fel kalender" + +#: lib/app.php:60 lib/object.php:332 msgid "Birthday" -msgstr "" +msgstr "Födelsedag" -#: lib/object.php:293 +#: lib/app.php:61 lib/object.php:333 msgid "Business" -msgstr "" +msgstr "Företag" -#: lib/object.php:294 +#: lib/app.php:62 lib/object.php:334 msgid "Call" -msgstr "" +msgstr "Ringa" -#: lib/object.php:295 +#: lib/app.php:63 lib/object.php:335 msgid "Clients" -msgstr "" +msgstr "Klienter" -#: lib/object.php:296 +#: lib/app.php:64 lib/object.php:336 msgid "Deliverer" -msgstr "" +msgstr "Leverantör" -#: lib/object.php:297 +#: lib/app.php:65 lib/object.php:337 msgid "Holidays" -msgstr "" +msgstr "Semester" -#: lib/object.php:298 +#: lib/app.php:66 lib/object.php:338 msgid "Ideas" -msgstr "" +msgstr "Idéer" -#: lib/object.php:299 +#: lib/app.php:67 lib/object.php:339 msgid "Journey" -msgstr "" +msgstr "Resa" -#: lib/object.php:300 +#: lib/app.php:68 lib/object.php:340 msgid "Jubilee" -msgstr "" +msgstr "Jubileum" -#: lib/object.php:301 +#: lib/app.php:69 lib/object.php:341 msgid "Meeting" -msgstr "" +msgstr "Möte" -#: lib/object.php:302 +#: lib/app.php:70 lib/object.php:342 msgid "Other" -msgstr "" +msgstr "Annat" -#: lib/object.php:303 +#: lib/app.php:71 lib/object.php:343 msgid "Personal" -msgstr "" +msgstr "Personlig" -#: lib/object.php:304 +#: lib/app.php:72 lib/object.php:344 msgid "Projects" -msgstr "" +msgstr "Projekt" -#: lib/object.php:305 +#: lib/app.php:73 lib/object.php:345 msgid "Questions" -msgstr "" +msgstr "Frågor" -#: lib/object.php:306 +#: lib/app.php:74 lib/object.php:346 msgid "Work" -msgstr "" +msgstr "Arbetet" -#: lib/object.php:313 +#: lib/object.php:353 msgid "Does not repeat" -msgstr "" +msgstr "Upprepas inte" -#: lib/object.php:314 +#: lib/object.php:354 msgid "Daily" -msgstr "" +msgstr "Dagligen" -#: lib/object.php:315 +#: lib/object.php:355 msgid "Weekly" -msgstr "" +msgstr "Varje vecka" -#: lib/object.php:316 +#: lib/object.php:356 msgid "Every Weekday" -msgstr "" +msgstr "Varje vardag" -#: lib/object.php:317 +#: lib/object.php:357 msgid "Bi-Weekly" -msgstr "" +msgstr "Varannan vecka" -#: lib/object.php:318 +#: lib/object.php:358 msgid "Monthly" -msgstr "" +msgstr "Varje månad" -#: lib/object.php:319 +#: lib/object.php:359 msgid "Yearly" +msgstr "Årligen" + +#: lib/object.php:366 +msgid "never" msgstr "" -#: lib/object.php:337 -msgid "Not an array" +#: lib/object.php:367 +msgid "by occurrences" msgstr "" -#: templates/calendar.php:3 -msgid "All day" +#: lib/object.php:368 +msgid "by date" msgstr "" -#: templates/calendar.php:32 -msgid "Sunday" +#: lib/object.php:375 +msgid "by monthday" msgstr "" -#: templates/calendar.php:32 +#: lib/object.php:376 +msgid "by weekday" +msgstr "" + +#: lib/object.php:383 templates/lAfix.php:3 msgid "Monday" msgstr "" -#: templates/calendar.php:32 +#: lib/object.php:384 templates/lAfix.php:4 msgid "Tuesday" msgstr "" -#: templates/calendar.php:32 +#: lib/object.php:385 templates/lAfix.php:5 msgid "Wednesday" msgstr "" -#: templates/calendar.php:32 +#: lib/object.php:386 templates/lAfix.php:6 msgid "Thursday" msgstr "" -#: templates/calendar.php:32 +#: lib/object.php:387 templates/lAfix.php:7 msgid "Friday" msgstr "" -#: templates/calendar.php:32 +#: lib/object.php:388 templates/lAfix.php:8 msgid "Saturday" msgstr "" -#: templates/calendar.php:33 -msgid "Sun." +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" msgstr "" -#: templates/calendar.php:33 -msgid "Mon." +#: lib/object.php:396 +msgid "events week of month" msgstr "" -#: templates/calendar.php:33 -msgid "Tue." +#: lib/object.php:397 +msgid "first" msgstr "" -#: templates/calendar.php:33 -msgid "Wed." +#: lib/object.php:398 +msgid "second" msgstr "" -#: templates/calendar.php:33 -msgid "Thu." +#: lib/object.php:399 +msgid "third" msgstr "" -#: templates/calendar.php:33 -msgid "Fri." +#: lib/object.php:400 +msgid "fourth" msgstr "" -#: templates/calendar.php:33 -msgid "Sat." +#: lib/object.php:401 +msgid "fifth" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:402 +msgid "last" +msgstr "" + +#: lib/object.php:424 templates/lAfix.php:16 msgid "January" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:425 templates/lAfix.php:17 msgid "February" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:426 templates/lAfix.php:18 msgid "March" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:427 templates/lAfix.php:19 msgid "April" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:428 templates/lAfix.php:20 msgid "May" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:429 templates/lAfix.php:21 msgid "June" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:430 templates/lAfix.php:22 msgid "July" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:431 templates/lAfix.php:23 msgid "August" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:432 templates/lAfix.php:24 msgid "September" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:433 templates/lAfix.php:25 msgid "October" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:434 templates/lAfix.php:26 msgid "November" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:435 templates/lAfix.php:27 msgid "December" msgstr "" -#: templates/calendar.php:35 +#: lib/object.php:441 +msgid "by events date" +msgstr "" + +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "" + +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "" + +#: lib/object.php:444 +msgid "by day and month" +msgstr "" + +#: lib/object.php:467 +msgid "Not an array" +msgstr "ingen rad" + +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "" + +#: lib/search.php:40 +msgid "Cal." +msgstr "" + +#: templates/calendar.php:10 +msgid "All day" +msgstr "Hela dagen" + +#: templates/calendar.php:11 +msgid "Missing fields" +msgstr "Saknade fält" + +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" +msgstr "Rubrik" + +#: templates/calendar.php:14 +msgid "From Date" +msgstr "Från datum" + +#: templates/calendar.php:15 +msgid "From Time" +msgstr "Från tid" + +#: templates/calendar.php:16 +msgid "To Date" +msgstr "Till datum" + +#: templates/calendar.php:17 +msgid "To Time" +msgstr "Till tid" + +#: templates/calendar.php:18 +msgid "The event ends before it starts" +msgstr "Händelsen slutar innan den börjar" + +#: templates/calendar.php:19 +msgid "There was a database fail" +msgstr "Det blev ett databasfel" + +#: templates/calendar.php:52 +msgid "Week" +msgstr "Vecka" + +#: templates/calendar.php:53 +msgid "Month" +msgstr "Månad" + +#: templates/calendar.php:54 +msgid "List" +msgstr "Lista" + +#: templates/calendar.php:59 +msgid "Today" +msgstr "Idag" + +#: templates/calendar.php:60 +msgid "Calendars" +msgstr "Kalendrar" + +#: templates/calendar.php:78 +msgid "There was a fail, while parsing the file." +msgstr "Det blev ett fel medan filen analyserades." + +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "" + +#: templates/lAfix.php:28 msgid "Jan." msgstr "" -#: templates/calendar.php:35 +#: templates/lAfix.php:29 msgid "Feb." msgstr "" -#: templates/calendar.php:35 +#: templates/lAfix.php:30 msgid "Mar." msgstr "" -#: templates/calendar.php:35 +#: templates/lAfix.php:31 msgid "Apr." msgstr "" -#: templates/calendar.php:35 +#: templates/lAfix.php:32 msgid "May." msgstr "" -#: templates/calendar.php:35 +#: templates/lAfix.php:33 msgid "Jun." msgstr "" -#: templates/calendar.php:35 +#: templates/lAfix.php:34 msgid "Jul." msgstr "" -#: templates/calendar.php:35 +#: templates/lAfix.php:35 msgid "Aug." msgstr "" -#: templates/calendar.php:35 +#: templates/lAfix.php:36 msgid "Sep." msgstr "" -#: templates/calendar.php:35 +#: templates/lAfix.php:37 msgid "Oct." msgstr "" -#: templates/calendar.php:35 +#: templates/lAfix.php:38 msgid "Nov." msgstr "" -#: templates/calendar.php:35 +#: templates/lAfix.php:39 msgid "Dec." msgstr "" -#: templates/calendar.php:36 templates/calendar.php:50 -#: templates/calendar.php:116 -msgid "Week" -msgstr "" - -#: templates/calendar.php:37 templates/calendar.php:51 -msgid "Weeks" -msgstr "" - -#: templates/calendar.php:38 -msgid "More before {startdate}" -msgstr "" - -#: templates/calendar.php:39 -msgid "More after {enddate}" -msgstr "" - -#: templates/calendar.php:49 -msgid "Day" -msgstr "" - -#: templates/calendar.php:52 -msgid "Month" -msgstr "" - -#: templates/calendar.php:53 -msgid "List" -msgstr "" - -#: templates/calendar.php:58 -msgid "Today" -msgstr "" - -#: templates/calendar.php:59 -msgid "Calendars" -msgstr "" - -#: templates/calendar.php:76 templates/calendar.php:94 -msgid "Time" -msgstr "" - -#: templates/calendar.php:169 -msgid "There was a fail, while parsing the file." -msgstr "" - #: templates/part.choosecalendar.php:1 msgid "Choose active calendars" -msgstr "" +msgstr "Välj aktiva kalendrar" #: templates/part.choosecalendar.php:15 msgid "New Calendar" -msgstr "" +msgstr "Ny kalender" #: templates/part.choosecalendar.php:20 #: templates/part.choosecalendar.rowfields.php:4 msgid "CalDav Link" -msgstr "" +msgstr "CalDAV-länk" #: templates/part.choosecalendar.rowfields.php:4 msgid "Download" -msgstr "" +msgstr "Ladda ner" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.eventinfo.php:64 msgid "Edit" -msgstr "" +msgstr "Redigera" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.editevent.php:8 +#: templates/part.editevent.php:9 msgid "Delete" -msgstr "" +msgstr "Radera" #: templates/part.editcalendar.php:9 msgid "New calendar" -msgstr "" +msgstr "Nya kalender" #: templates/part.editcalendar.php:9 msgid "Edit calendar" -msgstr "" +msgstr "Redigera kalender" #: templates/part.editcalendar.php:12 msgid "Displayname" -msgstr "" +msgstr "Visningsnamn" #: templates/part.editcalendar.php:23 msgid "Active" -msgstr "" +msgstr "Aktiv" -#: templates/part.editcalendar.php:29 templates/part.eventform.php:88 -#: templates/part.eventinfo.php:58 -msgid "Description" -msgstr "" - -#: templates/part.editcalendar.php:35 +#: templates/part.editcalendar.php:29 msgid "Calendar color" -msgstr "" - -#: templates/part.editcalendar.php:41 -msgid "Save" -msgstr "" - -#: templates/part.editcalendar.php:41 templates/part.editevent.php:7 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "" +msgstr "Kalender-färg" #: templates/part.editcalendar.php:42 +msgid "Save" +msgstr "Spara" + +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 +#: templates/part.newevent.php:6 +msgid "Submit" +msgstr "Lägg till" + +#: templates/part.editcalendar.php:43 msgid "Cancel" -msgstr "" +msgstr "Avbryt" -#: templates/part.editevent.php:1 templates/part.eventinfo.php:1 +#: templates/part.editevent.php:1 msgid "Edit an event" -msgstr "" +msgstr "Redigera en händelse" -#: templates/part.eventform.php:3 templates/part.eventinfo.php:4 -msgid "Title" -msgstr "" +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "Exportera" #: templates/part.eventform.php:5 msgid "Title of the Event" -msgstr "" - -#: templates/part.eventform.php:9 templates/part.eventinfo.php:9 -msgid "Location" -msgstr "" +msgstr "Rubrik för händelsen" #: templates/part.eventform.php:11 -msgid "Location of the Event" -msgstr "" - -#: templates/part.eventform.php:17 templates/part.eventinfo.php:16 msgid "Category" -msgstr "" +msgstr "Kategori" -#: templates/part.eventform.php:19 +#: templates/part.eventform.php:13 msgid "Select category" -msgstr "" +msgstr "Välj kategori" -#: templates/part.eventform.php:45 templates/part.eventinfo.php:28 +#: templates/part.eventform.php:37 msgid "All Day Event" -msgstr "" +msgstr "Hela dagen" -#: templates/part.eventform.php:49 templates/part.eventinfo.php:31 +#: templates/part.eventform.php:41 msgid "From" -msgstr "" +msgstr "Från" -#: templates/part.eventform.php:57 templates/part.eventinfo.php:38 +#: templates/part.eventform.php:49 msgid "To" -msgstr "" +msgstr "Till" -#: templates/part.eventform.php:65 templates/part.eventinfo.php:44 +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "Avancerade alternativ" + +#: templates/part.eventform.php:61 msgid "Repeat" +msgstr "Upprepa" + +#: templates/part.eventform.php:68 +msgid "Advanced" msgstr "" -#: templates/part.eventform.php:81 templates/part.eventinfo.php:51 -msgid "Attendees" +#: templates/part.eventform.php:112 +msgid "Select weekdays" msgstr "" -#: templates/part.eventform.php:89 +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Plats" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Platsen för händelsen" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Beskrivning" + +#: templates/part.eventform.php:218 msgid "Description of the Event" +msgstr "Beskrivning av händelse" + +#: templates/part.import.php:1 +msgid "Import a calendar file" msgstr "" -#: templates/part.eventinfo.php:63 -msgid "Close" +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "Välj kalender" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "Importera" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "" + +#: templates/part.import.php:24 +msgid "Close Dialog" msgstr "" #: templates/part.newevent.php:1 msgid "Create a new event" -msgstr "" +msgstr "Skapa en ny händelse" -#: templates/settings.php:11 +#: templates/settings.php:13 msgid "Timezone" +msgstr "Tidszon" + +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" msgstr "" +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "Tidsformat" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24h" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12h" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "Synkroniseringsadress för CalDAV kalender:" + diff --git a/l10n/sv/contacts.po b/l10n/sv/contacts.po index f492fa61d7d..73543943dd9 100644 --- a/l10n/sv/contacts.po +++ b/l10n/sv/contacts.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 20:10+0200\n" -"PO-Revision-Date: 2011-09-23 18:10+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" "Language-Team: Swedish (http://www.transifex.net/projects/p/owncloud/team/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,164 +18,265 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 -#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 -#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 -#: ajax/showsetproperty.php:32 photo.php:32 -msgid "You need to log in." +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." msgstr "" -#: ajax/addcard.php:37 +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: lib/app.php:52 msgid "This is not your addressbook." -msgstr "" +msgstr "Det här är inte din adressbok." -#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 -#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 -#: ajax/showsetproperty.php:38 photo.php:39 +#: lib/app.php:61 photo.php:36 msgid "Contact could not be found." -msgstr "" +msgstr "Kontakt kunde inte hittas." -#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 -#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 -#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 -msgid "This is not your contact." -msgstr "" - -#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 -#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 -msgid "vCard could not be read." -msgstr "" - -#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 -#: ajax/showsetproperty.php:62 +#: lib/app.php:89 msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" +msgstr "Information om vCard är felaktigt. Vänligen ladda om sidan." -#: photo.php:53 -msgid "This card is not RFC compatible." -msgstr "" - -#: photo.php:90 -msgid "This card does not contain a photo." -msgstr "" - -#: templates/index.php:8 -msgid "Add Contact" -msgstr "" - -#: templates/part.addcardform.php:5 -msgid "Group" -msgstr "" - -#: templates/part.addcardform.php:12 templates/part.property.php:3 -msgid "Name" -msgstr "" - -#: templates/part.addcardform.php:14 -msgid "Create Contact" -msgstr "" - -#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 msgid "Address" -msgstr "" +msgstr "Adress" -#: templates/part.addpropertyform.php:5 +#: lib/app.php:102 templates/part.addcardform.php:43 msgid "Telephone" -msgstr "" +msgstr "Telefon" -#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 msgid "Email" -msgstr "" +msgstr "E-post" -#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 msgid "Organization" -msgstr "" +msgstr "Organisation" -#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +#: lib/app.php:116 lib/app.php:123 msgid "Work" -msgstr "" +msgstr "Arbete" -#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +#: lib/app.php:117 lib/app.php:121 msgid "Home" -msgstr "" +msgstr "Hem" -#: templates/part.addpropertyform.php:20 templates/part.property.php:48 -#: templates/part.setpropertyform.php:5 -msgid "PO Box" -msgstr "" - -#: templates/part.addpropertyform.php:21 templates/part.property.php:51 -#: templates/part.setpropertyform.php:6 -msgid "Extended" -msgstr "" - -#: templates/part.addpropertyform.php:22 templates/part.property.php:54 -#: templates/part.setpropertyform.php:7 -msgid "Street" -msgstr "" - -#: templates/part.addpropertyform.php:23 templates/part.property.php:57 -#: templates/part.setpropertyform.php:8 -msgid "City" -msgstr "" - -#: templates/part.addpropertyform.php:24 templates/part.property.php:60 -#: templates/part.setpropertyform.php:9 -msgid "Region" -msgstr "" - -#: templates/part.addpropertyform.php:25 templates/part.property.php:63 -#: templates/part.setpropertyform.php:10 -msgid "Zipcode" -msgstr "" - -#: templates/part.addpropertyform.php:26 templates/part.property.php:66 -#: templates/part.setpropertyform.php:11 -msgid "Country" -msgstr "" - -#: templates/part.addpropertyform.php:31 +#: lib/app.php:122 msgid "Mobile" -msgstr "" +msgstr "Mobil" -#: templates/part.addpropertyform.php:33 +#: lib/app.php:124 msgid "Text" -msgstr "" +msgstr "Text" -#: templates/part.addpropertyform.php:34 +#: lib/app.php:125 msgid "Voice" -msgstr "" +msgstr "Röst" -#: templates/part.addpropertyform.php:35 +#: lib/app.php:126 msgid "Fax" -msgstr "" +msgstr "Fax" -#: templates/part.addpropertyform.php:36 +#: lib/app.php:127 msgid "Video" -msgstr "" +msgstr "Video" -#: templates/part.addpropertyform.php:37 +#: lib/app.php:128 msgid "Pager" +msgstr "Personsökare" + +#: lib/search.php:22 +msgid "Contact" msgstr "" -#: templates/part.details.php:33 +#: photo.php:42 +msgid "This is not your contact." +msgstr "Det här är inte din kontakt." + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Lägg till kontakt" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Namn" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "Postbox" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Utökad" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Gata" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Stad" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Län" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "Postnummer" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "Land" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Skapa kontakt" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Redigera" + +#: templates/part.chooseaddressbook.rowfields.php:5 msgid "Delete" +msgstr "Radera" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "" + +#: templates/part.details.php:4 +msgid "Delete contact" msgstr "" #: templates/part.details.php:34 -msgid "Add Property" +msgid "Add" msgstr "" -#: templates/part.property.php:9 +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "" + +#: templates/part.property.php:3 msgid "Birthday" +msgstr "Födelsedag" + +#: templates/part.property.php:23 +msgid "Preferred" msgstr "" -#: templates/part.property.php:29 +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 msgid "Phone" +msgstr "Telefon" + +#: templates/part.setpropertyform.php:57 +msgid "Update" msgstr "" -#: templates/part.setpropertyform.php:17 -msgid "Edit" +#: templates/settings.php:4 +msgid "CardDAV syncing address:" msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 0870f7efb7e..1d822e5fbd8 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -4,13 +4,14 @@ # # Translators: # , 2011. +# , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-12 07:50+0000\n" -"Last-Translator: HakanS \n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Swedish (http://www.transifex.net/projects/p/owncloud/team/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +19,51 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "Du får en länk att återställa ditt lösenord via e-post." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Begärd" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Inloggning misslyckades!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Användarnamn" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Begär återställning" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Ditt lösenord har återställts" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Nytt lösenord" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Återställ lösenordet" + #: strings.php:5 msgid "Personal" msgstr "Personlig" @@ -46,54 +92,50 @@ msgstr "Hittade inget moln" msgid "Create an admin account" msgstr "Skapa ett administratörskonto" -#: templates/installation.php:21 -msgid "Username" -msgstr "Användarnamn" - -#: templates/installation.php:22 +#: templates/installation.php:26 templates/login.php:12 msgid "Password" msgstr "Lösenord" -#: templates/installation.php:27 -msgid "Configure the database" -msgstr "Konfigurera databasen" - -#: templates/installation.php:32 templates/installation.php:43 -#: templates/installation.php:53 -msgid "will be used" -msgstr "kommer att användas" - -#: templates/installation.php:64 -msgid "Database user" -msgstr "Databas-användare" - -#: templates/installation.php:65 -msgid "Database password" -msgstr "Lösenord för databasen" - -#: templates/installation.php:66 -msgid "Database name" -msgstr "Databasens namn" - -#: templates/installation.php:72 +#: templates/installation.php:32 msgid "Advanced" msgstr "Avancerat" -#: templates/installation.php:75 -msgid "Database host" -msgstr "Databasserver" - -#: templates/installation.php:76 +#: templates/installation.php:34 msgid "Data folder" msgstr "Datamapp" +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Konfigurera databasen" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "kommer att användas" + #: templates/installation.php:79 +msgid "Database user" +msgstr "Databas-användare" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Lösenord för databasen" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Databasens namn" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Databasserver" + +#: templates/installation.php:98 msgid "Finish setup" msgstr "Avsluta installation" #: templates/layout.guest.php:35 -msgid "gives you freedom and control over your own data" -msgstr "ger dig frihet och kontroll över din egen data" +msgid "web services under your control" +msgstr "" #: templates/layout.user.php:34 msgid "Log out" @@ -103,38 +145,22 @@ msgstr "Logga ut" msgid "Settings" msgstr "Inställningar" -#: templates/login.php:4 +#: templates/login.php:5 msgid "Lost your password?" -msgstr "Tappat bort ditt lösenord?" +msgstr "Glömt ditt lösenord?" -#: templates/login.php:9 templates/login.php:13 +#: templates/login.php:15 msgid "remember" msgstr "kom ihåg" +#: templates/login.php:16 +msgid "Log in" +msgstr "" + #: templates/logout.php:1 msgid "You are logged out." msgstr "Du är utloggad" -#: templates/lostpassword.php:3 -msgid "You will receive a link to reset your password via Email." -msgstr "Du kommer få en länk, via e-post, där du kan återställ ditt lösenord" - -#: templates/lostpassword.php:5 -msgid "Requested" -msgstr "Begärd" - -#: templates/lostpassword.php:8 -msgid "Login failed!" -msgstr "Inloggning misslyckades!" - -#: templates/lostpassword.php:10 -msgid "Username or Email" -msgstr "Användarnamn eller e-post" - -#: templates/lostpassword.php:11 -msgid "Request reset" -msgstr "Begär återställning" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "föregående" @@ -143,16 +169,4 @@ msgstr "föregående" msgid "next" msgstr "nästa" -#: templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "Ditt lösenord har återställts" - -#: templates/resetpassword.php:6 -msgid "New password" -msgstr "Nytt lösenord" - -#: templates/resetpassword.php:7 -msgid "Reset password" -msgstr "Återställ lösenord" - diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 64566d0b29b..a43ea6cdb9d 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Swedish (http://www.transifex.net/projects/p/owncloud/team/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,33 +18,36 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/upload.php:24 +#: ajax/upload.php:19 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "Inga fel uppstod. Filen laddades upp utan problem" -#: ajax/upload.php:25 +#: ajax/upload.php:20 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "" +"Den uppladdade filen överskrider upload_max_filesize direktivet i php.ini" -#: ajax/upload.php:26 +#: ajax/upload.php:21 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" +"Den uppladdade filen överstiger MAX_FILE_SIZE direktivet som anges i HTML-" +"formulär" -#: ajax/upload.php:27 +#: ajax/upload.php:22 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "Den uppladdade filen var endast delvist uppladdad" -#: ajax/upload.php:28 +#: ajax/upload.php:23 msgid "No file was uploaded" -msgstr "" +msgstr "Ingen fil blev uppladdad" -#: ajax/upload.php:29 +#: ajax/upload.php:24 msgid "Missing a temporary folder" -msgstr "" +msgstr "Saknar en tillfällig mapp" -#: appinfo/app.php:7 +#: appinfo/app.php:8 msgid "Files" msgstr "Filer" @@ -51,48 +55,60 @@ msgstr "Filer" msgid "Maximum upload size" msgstr "Maximal storlek att lägga upp" +#: templates/index.php:7 +msgid "New" +msgstr "" + #: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:11 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From the web" +msgstr "" + +#: templates/index.php:22 msgid "Upload" -msgstr "Lägg upp" +msgstr "Ladda upp" -#: templates/index.php:17 -msgid "New Folder" -msgstr "Ny katalog" - -#: templates/index.php:31 +#: templates/index.php:35 msgid "Nothing in here. Upload something!" -msgstr "Ingenting här. Lägg upp något!" +msgstr "Ingenting här. Ladda upp något!" -#: templates/index.php:39 +#: templates/index.php:43 msgid "Name" msgstr "Namn" -#: templates/index.php:41 +#: templates/index.php:45 msgid "Download" msgstr "Ladda ned" -#: templates/index.php:45 +#: templates/index.php:49 msgid "Size" msgstr "Storlek" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Modified" msgstr "Ändrad" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Delete" msgstr "Ta bort" -#: templates/index.php:54 +#: templates/index.php:58 msgid "Upload too large" -msgstr "För stor överföring" +msgstr "För stor uppladdning" -#: templates/index.php:56 +#: templates/index.php:60 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -"Filerna du försöker lägga upp överstiger den maximala storleken för " +"Filerna du försöker ladda upp överstiger den maximala storleken för " "filöverföringar på servern." diff --git a/l10n/sv/gallery.po b/l10n/sv/gallery.po new file mode 100644 index 00000000000..48c30ca1579 --- /dev/null +++ b/l10n/sv/gallery.po @@ -0,0 +1,52 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Swedish (http://www.transifex.net/projects/p/owncloud/team/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" + + diff --git a/l10n/sv/media.po b/l10n/sv/media.po index 9c01948ed29..31728e350b8 100644 --- a/l10n/sv/media.po +++ b/l10n/sv/media.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-12 06:24+0000\n" -"Last-Translator: HakanS \n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Swedish (http://www.transifex.net/projects/p/owncloud/team/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,15 +18,15 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: appinfo/app.php:31 +#: appinfo/app.php:32 msgid "Music" msgstr "Musik" -#: templates/music.php:3 +#: templates/music.php:3 templates/player.php:13 msgid "Play" msgstr "Spela" -#: templates/music.php:4 templates/music.php:30 +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 msgid "Pause" msgstr "Paus" @@ -33,7 +34,7 @@ msgstr "Paus" msgid "Previous" msgstr "Föregående" -#: templates/music.php:6 +#: templates/music.php:6 templates/player.php:15 msgid "Next" msgstr "Nästa" @@ -45,11 +46,7 @@ msgstr "Ljudlös" msgid "Unmute" msgstr "Ljud på" -#: templates/music.php:28 -msgid "Songs scanned" -msgstr "Skannade låtar" - -#: templates/music.php:29 +#: templates/music.php:25 msgid "Rescan Collection" msgstr "Sök igenom samlingen" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 4ffc833e868..f123e1a317d 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -4,13 +4,14 @@ # # Translators: # , 2011. +# , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-12 07:57+0000\n" -"Last-Translator: HakanS \n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 16:32+0000\n" +"Last-Translator: icewind \n" "Language-Team: Swedish (http://www.transifex.net/projects/p/owncloud/team/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,22 +19,30 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ajax/openid.php:13 ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Autentiseringsfel" +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "" -#: ajax/openid.php:21 -msgid "OpenID Changed" -msgstr "OpenID ändrat" - -#: ajax/openid.php:23 ajax/setlanguage.php:23 +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 msgid "Invalid request" msgstr "Ogiltig begäran" -#: ajax/setlanguage.php:21 +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID ändrat" + +#: ajax/setlanguage.php:14 msgid "Language changed" msgstr "Språk ändrades" +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "" + #: templates/apps.php:8 msgid "Add your application" msgstr "Lägg till din applikation" @@ -54,15 +63,15 @@ msgstr "av" msgid "Ask a question" msgstr "Ställ en fråga" -#: templates/help.php:17 +#: templates/help.php:20 msgid "Problems connecting to help database." msgstr "Problem med att ansluta till hjälp-databasen." -#: templates/help.php:18 +#: templates/help.php:21 msgid "Go there manually." msgstr "Gå dit manuellt" -#: templates/help.php:26 +#: templates/help.php:29 msgid "Answer" msgstr "Svar" @@ -98,36 +107,51 @@ msgstr "visa" msgid "Change password" msgstr "Ändra lösenord" -#: templates/personal.php:24 templates/personal.php:25 +#: templates/personal.php:24 +msgid "Email" +msgstr "" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:32 templates/personal.php:33 msgid "Language" msgstr "Språk" -#: templates/personal.php:30 -msgid "Help translating" -msgstr "Hjälp till att översätta" - -#: templates/personal.php:37 -msgid "use this address to connect to your ownCloud in your file manager" +#: templates/personal.php:38 +msgid "Help translate" msgstr "" -"använd denna adress för att ansluta till ditt ownCloud i din filhanterare" -#: templates/users.php:16 +#: templates/personal.php:45 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "använd denna adress för att ansluta ownCloud till din filhanterare" + +#: templates/users.php:15 templates/users.php:30 msgid "Name" msgstr "Namn" -#: templates/users.php:17 +#: templates/users.php:16 templates/users.php:31 msgid "Password" msgstr "Lösenord" -#: templates/users.php:18 templates/users.php:36 +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 msgid "Groups" msgstr "Grupper" -#: templates/users.php:24 +#: templates/users.php:23 msgid "Create" msgstr "Skapa" -#: templates/users.php:48 +#: templates/users.php:33 +msgid "Quota" +msgstr "" + +#: templates/users.php:58 msgid "Delete" msgstr "Ta bort" diff --git a/l10n/templates/calendar.pot b/l10n/templates/calendar.pot index 66cc90a4bfd..c110dfdc0bc 100644 --- a/l10n/templates/calendar.pot +++ b/l10n/templates/calendar.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,329 +17,411 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: ajax/createcalendar.php:18 ajax/settimezone.php:19 -#: ajax/updatecalendar.php:18 -msgid "Authentication error" +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" msgstr "" -#: ajax/editeventform.php:25 -msgid "Wrong calendar" -msgstr "" - -#: ajax/settimezone.php:27 +#: ajax/settimezone.php:22 msgid "Timezone changed" msgstr "" -#: ajax/settimezone.php:29 +#: ajax/settimezone.php:24 msgid "Invalid request" msgstr "" -#: appinfo/app.php:19 templates/part.eventform.php:27 -#: templates/part.eventinfo.php:18 +#: appinfo/app.php:20 templates/calendar.php:14 +#: templates/part.eventform.php:20 msgid "Calendar" msgstr "" -#: lib/object.php:292 +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "" + +#: lib/app.php:60 lib/object.php:332 msgid "Birthday" msgstr "" -#: lib/object.php:293 +#: lib/app.php:61 lib/object.php:333 msgid "Business" msgstr "" -#: lib/object.php:294 +#: lib/app.php:62 lib/object.php:334 msgid "Call" msgstr "" -#: lib/object.php:295 +#: lib/app.php:63 lib/object.php:335 msgid "Clients" msgstr "" -#: lib/object.php:296 +#: lib/app.php:64 lib/object.php:336 msgid "Deliverer" msgstr "" -#: lib/object.php:297 +#: lib/app.php:65 lib/object.php:337 msgid "Holidays" msgstr "" -#: lib/object.php:298 +#: lib/app.php:66 lib/object.php:338 msgid "Ideas" msgstr "" -#: lib/object.php:299 +#: lib/app.php:67 lib/object.php:339 msgid "Journey" msgstr "" -#: lib/object.php:300 +#: lib/app.php:68 lib/object.php:340 msgid "Jubilee" msgstr "" -#: lib/object.php:301 +#: lib/app.php:69 lib/object.php:341 msgid "Meeting" msgstr "" -#: lib/object.php:302 +#: lib/app.php:70 lib/object.php:342 msgid "Other" msgstr "" -#: lib/object.php:303 +#: lib/app.php:71 lib/object.php:343 msgid "Personal" msgstr "" -#: lib/object.php:304 +#: lib/app.php:72 lib/object.php:344 msgid "Projects" msgstr "" -#: lib/object.php:305 +#: lib/app.php:73 lib/object.php:345 msgid "Questions" msgstr "" -#: lib/object.php:306 +#: lib/app.php:74 lib/object.php:346 msgid "Work" msgstr "" -#: lib/object.php:313 +#: lib/object.php:353 msgid "Does not repeat" msgstr "" -#: lib/object.php:314 +#: lib/object.php:354 msgid "Daily" msgstr "" -#: lib/object.php:315 +#: lib/object.php:355 msgid "Weekly" msgstr "" -#: lib/object.php:316 +#: lib/object.php:356 msgid "Every Weekday" msgstr "" -#: lib/object.php:317 +#: lib/object.php:357 msgid "Bi-Weekly" msgstr "" -#: lib/object.php:318 +#: lib/object.php:358 msgid "Monthly" msgstr "" -#: lib/object.php:319 +#: lib/object.php:359 msgid "Yearly" msgstr "" -#: lib/object.php:337 -msgid "Not an array" +#: lib/object.php:366 +msgid "never" msgstr "" -#: templates/calendar.php:3 -msgid "All day" +#: lib/object.php:367 +msgid "by occurrences" msgstr "" -#: templates/calendar.php:32 -msgid "Sunday" +#: lib/object.php:368 +msgid "by date" msgstr "" -#: templates/calendar.php:32 +#: lib/object.php:375 +msgid "by monthday" +msgstr "" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "" + +#: lib/object.php:383 templates/lAfix.php:3 msgid "Monday" msgstr "" -#: templates/calendar.php:32 +#: lib/object.php:384 templates/lAfix.php:4 msgid "Tuesday" msgstr "" -#: templates/calendar.php:32 +#: lib/object.php:385 templates/lAfix.php:5 msgid "Wednesday" msgstr "" -#: templates/calendar.php:32 +#: lib/object.php:386 templates/lAfix.php:6 msgid "Thursday" msgstr "" -#: templates/calendar.php:32 +#: lib/object.php:387 templates/lAfix.php:7 msgid "Friday" msgstr "" -#: templates/calendar.php:32 +#: lib/object.php:388 templates/lAfix.php:8 msgid "Saturday" msgstr "" -#: templates/calendar.php:33 -msgid "Sun." +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" msgstr "" -#: templates/calendar.php:33 -msgid "Mon." +#: lib/object.php:396 +msgid "events week of month" msgstr "" -#: templates/calendar.php:33 -msgid "Tue." +#: lib/object.php:397 +msgid "first" msgstr "" -#: templates/calendar.php:33 -msgid "Wed." +#: lib/object.php:398 +msgid "second" msgstr "" -#: templates/calendar.php:33 -msgid "Thu." +#: lib/object.php:399 +msgid "third" msgstr "" -#: templates/calendar.php:33 -msgid "Fri." +#: lib/object.php:400 +msgid "fourth" msgstr "" -#: templates/calendar.php:33 -msgid "Sat." +#: lib/object.php:401 +msgid "fifth" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:402 +msgid "last" +msgstr "" + +#: lib/object.php:424 templates/lAfix.php:16 msgid "January" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:425 templates/lAfix.php:17 msgid "February" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:426 templates/lAfix.php:18 msgid "March" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:427 templates/lAfix.php:19 msgid "April" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:428 templates/lAfix.php:20 msgid "May" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:429 templates/lAfix.php:21 msgid "June" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:430 templates/lAfix.php:22 msgid "July" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:431 templates/lAfix.php:23 msgid "August" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:432 templates/lAfix.php:24 msgid "September" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:433 templates/lAfix.php:25 msgid "October" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:434 templates/lAfix.php:26 msgid "November" msgstr "" -#: templates/calendar.php:34 +#: lib/object.php:435 templates/lAfix.php:27 msgid "December" msgstr "" -#: templates/calendar.php:35 -msgid "Jan." +#: lib/object.php:441 +msgid "by events date" msgstr "" -#: templates/calendar.php:35 -msgid "Feb." +#: lib/object.php:442 +msgid "by yearday(s)" msgstr "" -#: templates/calendar.php:35 -msgid "Mar." +#: lib/object.php:443 +msgid "by weeknumber(s)" msgstr "" -#: templates/calendar.php:35 -msgid "Apr." +#: lib/object.php:444 +msgid "by day and month" msgstr "" -#: templates/calendar.php:35 -msgid "May." +#: lib/object.php:467 +msgid "Not an array" msgstr "" -#: templates/calendar.php:35 -msgid "Jun." +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" msgstr "" -#: templates/calendar.php:35 -msgid "Jul." +#: lib/search.php:40 +msgid "Cal." msgstr "" -#: templates/calendar.php:35 -msgid "Aug." +#: templates/calendar.php:10 +msgid "All day" msgstr "" -#: templates/calendar.php:35 -msgid "Sep." +#: templates/calendar.php:11 templates/part.choosecalendar.php:15 +msgid "New Calendar" msgstr "" -#: templates/calendar.php:35 -msgid "Oct." +#: templates/calendar.php:12 +msgid "Missing fields" msgstr "" -#: templates/calendar.php:35 -msgid "Nov." +#: templates/calendar.php:13 templates/part.eventform.php:3 +msgid "Title" msgstr "" -#: templates/calendar.php:35 -msgid "Dec." +#: templates/calendar.php:15 +msgid "From Date" msgstr "" -#: templates/calendar.php:36 templates/calendar.php:50 -#: templates/calendar.php:116 -msgid "Week" +#: templates/calendar.php:16 +msgid "From Time" msgstr "" -#: templates/calendar.php:37 templates/calendar.php:51 -msgid "Weeks" +#: templates/calendar.php:17 +msgid "To Date" +msgstr "" + +#: templates/calendar.php:18 +msgid "To Time" +msgstr "" + +#: templates/calendar.php:19 +msgid "The event ends before it starts" +msgstr "" + +#: templates/calendar.php:20 +msgid "There was a database fail" msgstr "" #: templates/calendar.php:38 -msgid "More before {startdate}" +msgid "Week" msgstr "" #: templates/calendar.php:39 -msgid "More after {enddate}" -msgstr "" - -#: templates/calendar.php:49 -msgid "Day" -msgstr "" - -#: templates/calendar.php:52 msgid "Month" msgstr "" -#: templates/calendar.php:53 +#: templates/calendar.php:40 msgid "List" msgstr "" -#: templates/calendar.php:58 +#: templates/calendar.php:46 msgid "Today" msgstr "" -#: templates/calendar.php:59 +#: templates/calendar.php:47 msgid "Calendars" msgstr "" -#: templates/calendar.php:76 templates/calendar.php:94 -msgid "Time" +#: templates/calendar.php:65 +msgid "There was a fail, while parsing the file." msgstr "" -#: templates/calendar.php:169 -msgid "There was a fail, while parsing the file." +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "" + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "" + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "" + +#: templates/lAfix.php:32 +msgid "May." +msgstr "" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "" + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "" + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "" + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "" + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "" + +#: templates/lAfix.php:39 +msgid "Dec." msgstr "" #: templates/part.choosecalendar.php:1 msgid "Choose active calendars" msgstr "" -#: templates/part.choosecalendar.php:15 -msgid "New Calendar" -msgstr "" - #: templates/part.choosecalendar.php:20 #: templates/part.choosecalendar.rowfields.php:4 msgid "CalDav Link" @@ -350,12 +432,11 @@ msgid "Download" msgstr "" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.eventinfo.php:64 msgid "Edit" msgstr "" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.editevent.php:8 +#: templates/part.editevent.php:9 msgid "Delete" msgstr "" @@ -375,88 +456,179 @@ msgstr "" msgid "Active" msgstr "" -#: templates/part.editcalendar.php:29 templates/part.eventform.php:88 -#: templates/part.eventinfo.php:58 -msgid "Description" -msgstr "" - -#: templates/part.editcalendar.php:35 +#: templates/part.editcalendar.php:29 msgid "Calendar color" msgstr "" -#: templates/part.editcalendar.php:41 +#: templates/part.editcalendar.php:42 msgid "Save" msgstr "" -#: templates/part.editcalendar.php:41 templates/part.editevent.php:7 +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 #: templates/part.newevent.php:6 msgid "Submit" msgstr "" -#: templates/part.editcalendar.php:42 +#: templates/part.editcalendar.php:43 msgid "Cancel" msgstr "" -#: templates/part.editevent.php:1 templates/part.eventinfo.php:1 +#: templates/part.editevent.php:1 msgid "Edit an event" msgstr "" -#: templates/part.eventform.php:3 templates/part.eventinfo.php:4 -msgid "Title" +#: templates/part.editevent.php:10 +msgid "Export" msgstr "" #: templates/part.eventform.php:5 msgid "Title of the Event" msgstr "" -#: templates/part.eventform.php:9 templates/part.eventinfo.php:9 -msgid "Location" -msgstr "" - #: templates/part.eventform.php:11 -msgid "Location of the Event" -msgstr "" - -#: templates/part.eventform.php:17 templates/part.eventinfo.php:16 msgid "Category" msgstr "" -#: templates/part.eventform.php:19 +#: templates/part.eventform.php:13 msgid "Select category" msgstr "" -#: templates/part.eventform.php:45 templates/part.eventinfo.php:28 +#: templates/part.eventform.php:37 msgid "All Day Event" msgstr "" -#: templates/part.eventform.php:49 templates/part.eventinfo.php:31 +#: templates/part.eventform.php:41 msgid "From" msgstr "" -#: templates/part.eventform.php:57 templates/part.eventinfo.php:38 +#: templates/part.eventform.php:49 msgid "To" msgstr "" -#: templates/part.eventform.php:65 templates/part.eventinfo.php:44 +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "" + +#: templates/part.eventform.php:61 msgid "Repeat" msgstr "" -#: templates/part.eventform.php:81 templates/part.eventinfo.php:51 -msgid "Attendees" +#: templates/part.eventform.php:68 +msgid "Advanced" msgstr "" -#: templates/part.eventform.php:89 +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "" + +#: templates/part.eventform.php:218 msgid "Description of the Event" msgstr "" -#: templates/part.eventinfo.php:63 -msgid "Close" +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "" + +#: templates/part.import.php:24 +msgid "Close Dialog" msgstr "" #: templates/part.newevent.php:1 msgid "Create a new event" msgstr "" -#: templates/settings.php:11 +#: templates/settings.php:13 msgid "Timezone" msgstr "" + +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "" + +#: templates/settings.php:34 +msgid "24h" +msgstr "" + +#: templates/settings.php:35 +msgid "12h" +msgstr "" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "" diff --git a/l10n/templates/contacts.pot b/l10n/templates/contacts.pot index b0426f2bb59..040a5934646 100644 --- a/l10n/templates/contacts.pot +++ b/l10n/templates/contacts.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,162 +17,263 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 -#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 -#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 -#: ajax/showsetproperty.php:32 photo.php:32 -msgid "You need to log in." +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." msgstr "" -#: ajax/addcard.php:37 +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: lib/app.php:52 msgid "This is not your addressbook." msgstr "" -#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 -#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 -#: ajax/showsetproperty.php:38 photo.php:39 +#: lib/app.php:61 photo.php:36 msgid "Contact could not be found." msgstr "" -#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 -#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 -#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 -msgid "This is not your contact." -msgstr "" - -#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 -#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 -msgid "vCard could not be read." -msgstr "" - -#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 -#: ajax/showsetproperty.php:62 +#: lib/app.php:89 msgid "Information about vCard is incorrect. Please reload the page." msgstr "" -#: photo.php:53 -msgid "This card is not RFC compatible." -msgstr "" - -#: photo.php:90 -msgid "This card does not contain a photo." -msgstr "" - -#: templates/index.php:8 -msgid "Add Contact" -msgstr "" - -#: templates/part.addcardform.php:5 -msgid "Group" -msgstr "" - -#: templates/part.addcardform.php:12 templates/part.property.php:3 -msgid "Name" -msgstr "" - -#: templates/part.addcardform.php:14 -msgid "Create Contact" -msgstr "" - -#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 msgid "Address" msgstr "" -#: templates/part.addpropertyform.php:5 +#: lib/app.php:102 templates/part.addcardform.php:43 msgid "Telephone" msgstr "" -#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 msgid "Email" msgstr "" -#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 msgid "Organization" msgstr "" -#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +#: lib/app.php:116 lib/app.php:123 msgid "Work" msgstr "" -#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +#: lib/app.php:117 lib/app.php:121 msgid "Home" msgstr "" -#: templates/part.addpropertyform.php:20 templates/part.property.php:48 -#: templates/part.setpropertyform.php:5 -msgid "PO Box" -msgstr "" - -#: templates/part.addpropertyform.php:21 templates/part.property.php:51 -#: templates/part.setpropertyform.php:6 -msgid "Extended" -msgstr "" - -#: templates/part.addpropertyform.php:22 templates/part.property.php:54 -#: templates/part.setpropertyform.php:7 -msgid "Street" -msgstr "" - -#: templates/part.addpropertyform.php:23 templates/part.property.php:57 -#: templates/part.setpropertyform.php:8 -msgid "City" -msgstr "" - -#: templates/part.addpropertyform.php:24 templates/part.property.php:60 -#: templates/part.setpropertyform.php:9 -msgid "Region" -msgstr "" - -#: templates/part.addpropertyform.php:25 templates/part.property.php:63 -#: templates/part.setpropertyform.php:10 -msgid "Zipcode" -msgstr "" - -#: templates/part.addpropertyform.php:26 templates/part.property.php:66 -#: templates/part.setpropertyform.php:11 -msgid "Country" -msgstr "" - -#: templates/part.addpropertyform.php:31 +#: lib/app.php:122 msgid "Mobile" msgstr "" -#: templates/part.addpropertyform.php:33 +#: lib/app.php:124 msgid "Text" msgstr "" -#: templates/part.addpropertyform.php:34 +#: lib/app.php:125 msgid "Voice" msgstr "" -#: templates/part.addpropertyform.php:35 +#: lib/app.php:126 msgid "Fax" msgstr "" -#: templates/part.addpropertyform.php:36 +#: lib/app.php:127 msgid "Video" msgstr "" -#: templates/part.addpropertyform.php:37 +#: lib/app.php:128 msgid "Pager" msgstr "" -#: templates/part.details.php:31 +#: lib/search.php:22 +msgid "Contact" +msgstr "" + +#: photo.php:42 +msgid "This is not your contact." +msgstr "" + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 msgid "Delete" msgstr "" -#: templates/part.details.php:32 -msgid "Add Property" +#: templates/part.details.php:3 +msgid "Download contact" msgstr "" -#: templates/part.property.php:9 +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "" + +#: templates/part.property.php:3 msgid "Birthday" msgstr "" -#: templates/part.property.php:29 +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 msgid "Phone" msgstr "" -#: templates/part.setpropertyform.php:17 -msgid "Edit" +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 98b310f2d14..6915a1438e0 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" +"POT-Creation-Date: 2012-01-24 00:25+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,6 +17,51 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" @@ -45,53 +90,49 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:21 -msgid "Username" -msgstr "" - -#: templates/installation.php:22 +#: templates/installation.php:26 templates/login.php:12 msgid "Password" msgstr "" -#: templates/installation.php:27 -msgid "Configure the database" -msgstr "" - -#: templates/installation.php:32 templates/installation.php:43 -#: templates/installation.php:53 -msgid "will be used" -msgstr "" - -#: templates/installation.php:64 -msgid "Database user" -msgstr "" - -#: templates/installation.php:65 -msgid "Database password" -msgstr "" - -#: templates/installation.php:66 -msgid "Database name" -msgstr "" - -#: templates/installation.php:72 +#: templates/installation.php:32 msgid "Advanced" msgstr "" -#: templates/installation.php:75 -msgid "Database host" -msgstr "" - -#: templates/installation.php:76 +#: templates/installation.php:34 msgid "Data folder" msgstr "" +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "" + #: templates/installation.php:79 +msgid "Database user" +msgstr "" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "" + +#: templates/installation.php:98 msgid "Finish setup" msgstr "" #: templates/layout.guest.php:35 -msgid "gives you freedom and control over your own data" +msgid "web services under your control" msgstr "" #: templates/layout.user.php:34 @@ -102,38 +143,22 @@ msgstr "" msgid "Settings" msgstr "" -#: templates/login.php:4 +#: templates/login.php:5 msgid "Lost your password?" msgstr "" -#: templates/login.php:9 templates/login.php:13 +#: templates/login.php:15 msgid "remember" msgstr "" +#: templates/login.php:16 +msgid "Log in" +msgstr "" + #: templates/logout.php:1 msgid "You are logged out." msgstr "" -#: templates/lostpassword.php:3 -msgid "You will receive a link to reset your password via Email." -msgstr "" - -#: templates/lostpassword.php:5 -msgid "Requested" -msgstr "" - -#: templates/lostpassword.php:8 -msgid "Login failed!" -msgstr "" - -#: templates/lostpassword.php:10 -msgid "Username or Email" -msgstr "" - -#: templates/lostpassword.php:11 -msgid "Request reset" -msgstr "" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" @@ -141,15 +166,3 @@ msgstr "" #: templates/part.pagenavi.php:20 msgid "next" msgstr "" - -#: templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "" - -#: templates/resetpassword.php:6 -msgid "New password" -msgstr "" - -#: templates/resetpassword.php:7 -msgid "Reset password" -msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 5b57ccec9a2..ce0f7d8d6f5 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" +"POT-Creation-Date: 2012-01-24 00:25+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,33 +17,33 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: ajax/upload.php:24 +#: ajax/upload.php:19 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:20 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:21 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:22 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:23 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:24 msgid "Missing a temporary folder" msgstr "" -#: appinfo/app.php:7 +#: appinfo/app.php:8 msgid "Files" msgstr "" @@ -51,43 +51,55 @@ msgstr "" msgid "Maximum upload size" msgstr "" +#: templates/index.php:7 +msgid "New" +msgstr "" + #: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:11 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From the web" +msgstr "" + +#: templates/index.php:22 msgid "Upload" msgstr "" -#: templates/index.php:17 -msgid "New Folder" -msgstr "" - -#: templates/index.php:31 +#: templates/index.php:35 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:39 +#: templates/index.php:43 msgid "Name" msgstr "" -#: templates/index.php:41 +#: templates/index.php:45 msgid "Download" msgstr "" -#: templates/index.php:45 +#: templates/index.php:49 msgid "Size" msgstr "" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Modified" msgstr "" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Delete" msgstr "" -#: templates/index.php:54 +#: templates/index.php:58 msgid "Upload too large" msgstr "" -#: templates/index.php:56 +#: templates/index.php:60 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." diff --git a/l10n/templates/gallery.pot b/l10n/templates/gallery.pot new file mode 100644 index 00000000000..899544a3dbc --- /dev/null +++ b/l10n/templates/gallery.pot @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" diff --git a/l10n/templates/media.pot b/l10n/templates/media.pot index 0a2757a306e..ece252e0ead 100644 --- a/l10n/templates/media.pot +++ b/l10n/templates/media.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" +"POT-Creation-Date: 2012-01-24 00:25+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,15 +17,15 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: appinfo/app.php:31 +#: appinfo/app.php:32 templates/player.php:9 msgid "Music" msgstr "" -#: templates/music.php:3 +#: templates/music.php:3 templates/player.php:13 msgid "Play" msgstr "" -#: templates/music.php:4 templates/music.php:30 +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 msgid "Pause" msgstr "" @@ -33,7 +33,7 @@ msgstr "" msgid "Previous" msgstr "" -#: templates/music.php:6 +#: templates/music.php:6 templates/player.php:15 msgid "Next" msgstr "" @@ -45,11 +45,7 @@ msgstr "" msgid "Unmute" msgstr "" -#: templates/music.php:28 -msgid "Songs scanned" -msgstr "" - -#: templates/music.php:29 +#: templates/music.php:25 msgid "Rescan Collection" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index b1444319153..d016d78831b 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" +"POT-Creation-Date: 2012-01-24 00:25+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,22 +17,30 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: ajax/openid.php:13 ajax/setlanguage.php:13 -msgid "Authentication error" +#: ajax/lostpassword.php:14 +msgid "email Changed" msgstr "" -#: ajax/openid.php:21 -msgid "OpenID Changed" -msgstr "" - -#: ajax/openid.php:23 ajax/setlanguage.php:23 +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 msgid "Invalid request" msgstr "" -#: ajax/setlanguage.php:21 +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "" + +#: ajax/setlanguage.php:14 msgid "Language changed" msgstr "" +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "" + #: templates/apps.php:8 msgid "Add your application" msgstr "" @@ -53,15 +61,15 @@ msgstr "" msgid "Ask a question" msgstr "" -#: templates/help.php:17 +#: templates/help.php:20 msgid "Problems connecting to help database." msgstr "" -#: templates/help.php:18 +#: templates/help.php:21 msgid "Go there manually." msgstr "" -#: templates/help.php:26 +#: templates/help.php:29 msgid "Answer" msgstr "" @@ -97,34 +105,50 @@ msgstr "" msgid "Change password" msgstr "" -#: templates/personal.php:24 templates/personal.php:25 +#: templates/personal.php:24 +msgid "Email" +msgstr "" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:32 templates/personal.php:33 msgid "Language" msgstr "" -#: templates/personal.php:30 -msgid "Help translating" +#: templates/personal.php:38 +msgid "Help translate" msgstr "" -#: templates/personal.php:37 +#: templates/personal.php:45 msgid "use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:16 +#: templates/users.php:15 templates/users.php:30 msgid "Name" msgstr "" -#: templates/users.php:17 +#: templates/users.php:16 templates/users.php:31 msgid "Password" msgstr "" -#: templates/users.php:18 templates/users.php:36 +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 msgid "Groups" msgstr "" -#: templates/users.php:24 +#: templates/users.php:23 msgid "Create" msgstr "" -#: templates/users.php:48 +#: templates/users.php:33 +msgid "Quota" +msgstr "" + +#: templates/users.php:58 msgid "Delete" msgstr "" diff --git a/l10n/th_TH/calendar.po b/l10n/th_TH/calendar.po new file mode 100644 index 00000000000..10fbec8319d --- /dev/null +++ b/l10n/th_TH/calendar.po @@ -0,0 +1,637 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# AriesAnywhere Anywhere , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-26 07:18+0000\n" +"Last-Translator: AriesAnywhere Anywhere \n" +"Language-Team: Thai (Thailand) (http://www.transifex.net/projects/p/owncloud/team/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "สร้างโซนเวลาใหม่:" + +#: ajax/settimezone.php:22 +msgid "Timezone changed" +msgstr "โซนเวลาถูกเปลี่ยนแล้ว" + +#: ajax/settimezone.php:24 +msgid "Invalid request" +msgstr "คำร้องขอไม่ถูกต้อง" + +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 +msgid "Calendar" +msgstr "ปฏิทิน" + +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "ปฏิทินไม่ถูกต้อง" + +#: lib/app.php:60 lib/object.php:332 +msgid "Birthday" +msgstr "วันเกิด" + +#: lib/app.php:61 lib/object.php:333 +msgid "Business" +msgstr "ธุรกิจ" + +#: lib/app.php:62 lib/object.php:334 +msgid "Call" +msgstr "โทรติดต่อ" + +#: lib/app.php:63 lib/object.php:335 +msgid "Clients" +msgstr "ลูกค้า" + +#: lib/app.php:64 lib/object.php:336 +msgid "Deliverer" +msgstr "จัดส่ง" + +#: lib/app.php:65 lib/object.php:337 +msgid "Holidays" +msgstr "วันหยุด" + +#: lib/app.php:66 lib/object.php:338 +msgid "Ideas" +msgstr "ไอเดีย" + +#: lib/app.php:67 lib/object.php:339 +msgid "Journey" +msgstr "การเดินทาง" + +#: lib/app.php:68 lib/object.php:340 +msgid "Jubilee" +msgstr "งานเลี้ยง" + +#: lib/app.php:69 lib/object.php:341 +msgid "Meeting" +msgstr "นัดประชุม" + +#: lib/app.php:70 lib/object.php:342 +msgid "Other" +msgstr "อื่นๆ" + +#: lib/app.php:71 lib/object.php:343 +msgid "Personal" +msgstr "ส่วนตัว" + +#: lib/app.php:72 lib/object.php:344 +msgid "Projects" +msgstr "โครงการ" + +#: lib/app.php:73 lib/object.php:345 +msgid "Questions" +msgstr "คำถาม" + +#: lib/app.php:74 lib/object.php:346 +msgid "Work" +msgstr "งาน" + +#: lib/object.php:353 +msgid "Does not repeat" +msgstr "ไม่ต้องทำซ้ำ" + +#: lib/object.php:354 +msgid "Daily" +msgstr "รายวัน" + +#: lib/object.php:355 +msgid "Weekly" +msgstr "รายสัปดาห์" + +#: lib/object.php:356 +msgid "Every Weekday" +msgstr "ทุกวันหยุด" + +#: lib/object.php:357 +msgid "Bi-Weekly" +msgstr "รายปักษ์" + +#: lib/object.php:358 +msgid "Monthly" +msgstr "รายเดือน" + +#: lib/object.php:359 +msgid "Yearly" +msgstr "รายปี" + +#: lib/object.php:366 +msgid "never" +msgstr "ไม่ต้องเลย" + +#: lib/object.php:367 +msgid "by occurrences" +msgstr "ตามจำนวนที่ปรากฏ" + +#: lib/object.php:368 +msgid "by date" +msgstr "ตามวันที่" + +#: lib/object.php:375 +msgid "by monthday" +msgstr "จากเดือน" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "จากสัปดาห์" + +#: lib/object.php:383 templates/lAfix.php:3 +msgid "Monday" +msgstr "วันจันทร์" + +#: lib/object.php:384 templates/lAfix.php:4 +msgid "Tuesday" +msgstr "วันอังคาร" + +#: lib/object.php:385 templates/lAfix.php:5 +msgid "Wednesday" +msgstr "วันพุธ" + +#: lib/object.php:386 templates/lAfix.php:6 +msgid "Thursday" +msgstr "วันพฤหัสบดี" + +#: lib/object.php:387 templates/lAfix.php:7 +msgid "Friday" +msgstr "วันศุกร์" + +#: lib/object.php:388 templates/lAfix.php:8 +msgid "Saturday" +msgstr "วันเสาร์" + +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "วันอาทิตย์" + +#: lib/object.php:396 +msgid "events week of month" +msgstr "สัปดาห์ที่มีกิจกรรมของเดือน" + +#: lib/object.php:397 +msgid "first" +msgstr "ลำดับแรก" + +#: lib/object.php:398 +msgid "second" +msgstr "ลำดับที่สอง" + +#: lib/object.php:399 +msgid "third" +msgstr "ลำดับที่สาม" + +#: lib/object.php:400 +msgid "fourth" +msgstr "ลำดับที่สี่" + +#: lib/object.php:401 +msgid "fifth" +msgstr "ลำดับที่ห้า" + +#: lib/object.php:402 +msgid "last" +msgstr "ลำดับสุดท้าย" + +#: lib/object.php:424 templates/lAfix.php:16 +msgid "January" +msgstr "มกราคม" + +#: lib/object.php:425 templates/lAfix.php:17 +msgid "February" +msgstr "กุมภาพันธ์" + +#: lib/object.php:426 templates/lAfix.php:18 +msgid "March" +msgstr "มีนาคม" + +#: lib/object.php:427 templates/lAfix.php:19 +msgid "April" +msgstr "เมษายน" + +#: lib/object.php:428 templates/lAfix.php:20 +msgid "May" +msgstr "พฤษภาคม" + +#: lib/object.php:429 templates/lAfix.php:21 +msgid "June" +msgstr "มิถุนายน" + +#: lib/object.php:430 templates/lAfix.php:22 +msgid "July" +msgstr "กรกฏาคม" + +#: lib/object.php:431 templates/lAfix.php:23 +msgid "August" +msgstr "สิงหาคม" + +#: lib/object.php:432 templates/lAfix.php:24 +msgid "September" +msgstr "กันยายน" + +#: lib/object.php:433 templates/lAfix.php:25 +msgid "October" +msgstr "ตุลาคม" + +#: lib/object.php:434 templates/lAfix.php:26 +msgid "November" +msgstr "พฤศจิกายน" + +#: lib/object.php:435 templates/lAfix.php:27 +msgid "December" +msgstr "ธันวาคม" + +#: lib/object.php:441 +msgid "by events date" +msgstr "ตามวันที่จัดกิจกรรม" + +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "ของเมื่อวานนี้" + +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "จากหมายเลขของสัปดาห์" + +#: lib/object.php:444 +msgid "by day and month" +msgstr "ตามวันและเดือน" + +#: lib/object.php:467 +msgid "Not an array" +msgstr "ไม่ใช่อาเรย์" + +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "วันที่" + +#: lib/search.php:40 +msgid "Cal." +msgstr "คำนวณ" + +#: templates/calendar.php:10 +msgid "All day" +msgstr "ทั้งวัน" + +#: templates/calendar.php:11 +msgid "Missing fields" +msgstr "ช่องฟิลด์เกิดการสูญหาย" + +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" +msgstr "ชื่อกิจกรรม" + +#: templates/calendar.php:14 +msgid "From Date" +msgstr "จากวันที่" + +#: templates/calendar.php:15 +msgid "From Time" +msgstr "ตั้งแต่เวลา" + +#: templates/calendar.php:16 +msgid "To Date" +msgstr "ถึงวันที่" + +#: templates/calendar.php:17 +msgid "To Time" +msgstr "ถึงเวลา" + +#: templates/calendar.php:18 +msgid "The event ends before it starts" +msgstr "วันที่สิ้นสุดกิจกรรมดังกล่าวอยู่ก่อนวันเริ่มต้น" + +#: templates/calendar.php:19 +msgid "There was a database fail" +msgstr "เกิดความล้มเหลวกับฐานข้อมูล" + +#: templates/calendar.php:52 +msgid "Week" +msgstr "สัปดาห์" + +#: templates/calendar.php:53 +msgid "Month" +msgstr "เดือน" + +#: templates/calendar.php:54 +msgid "List" +msgstr "รายการ" + +#: templates/calendar.php:59 +msgid "Today" +msgstr "วันนี้" + +#: templates/calendar.php:60 +msgid "Calendars" +msgstr "ปฏิทิน" + +#: templates/calendar.php:78 +msgid "There was a fail, while parsing the file." +msgstr "เกิดความล้มเหลวในการแยกไฟล์" + +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "อา." + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "จ." + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "อ." + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "พ." + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "พฤ." + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "ศ." + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "ส." + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "ม.ค." + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "ก.พ." + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "มี.ค." + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "เม.ย." + +#: templates/lAfix.php:32 +msgid "May." +msgstr "พ.ค." + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "มิ.ย." + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "ก.ค." + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "ส.ค." + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "ก.ย." + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "ต.ค." + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "พ.ย." + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "ธ.ค." + +#: templates/part.choosecalendar.php:1 +msgid "Choose active calendars" +msgstr "เลือกปฏิทินที่ต้องการใช้งาน" + +#: templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "สร้างปฏิทินใหม่" + +#: templates/part.choosecalendar.php:20 +#: templates/part.choosecalendar.rowfields.php:4 +msgid "CalDav Link" +msgstr "ลิงค์ CalDav" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Download" +msgstr "ดาวน์โหลด" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Edit" +msgstr "แก้ไข" + +#: templates/part.choosecalendar.rowfields.php:4 +#: templates/part.editevent.php:9 +msgid "Delete" +msgstr "ลบ" + +#: templates/part.editcalendar.php:9 +msgid "New calendar" +msgstr "สร้างปฏิทินใหม่" + +#: templates/part.editcalendar.php:9 +msgid "Edit calendar" +msgstr "แก้ไขปฏิทิน" + +#: templates/part.editcalendar.php:12 +msgid "Displayname" +msgstr "ชื่อที่ต้องการให้แสดง" + +#: templates/part.editcalendar.php:23 +msgid "Active" +msgstr "ใช้งาน" + +#: templates/part.editcalendar.php:29 +msgid "Calendar color" +msgstr "สีของปฏิทิน" + +#: templates/part.editcalendar.php:42 +msgid "Save" +msgstr "บันทึก" + +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 +#: templates/part.newevent.php:6 +msgid "Submit" +msgstr "ส่งข้อมูล" + +#: templates/part.editcalendar.php:43 +msgid "Cancel" +msgstr "ยกเลิก" + +#: templates/part.editevent.php:1 +msgid "Edit an event" +msgstr "แก้ไขกิจกรรม" + +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "ส่งออกข้อมูล" + +#: templates/part.eventform.php:5 +msgid "Title of the Event" +msgstr "ชื่อของกิจกรรม" + +#: templates/part.eventform.php:11 +msgid "Category" +msgstr "หมวดหมู่" + +#: templates/part.eventform.php:13 +msgid "Select category" +msgstr "เลือกหมวดหมู่" + +#: templates/part.eventform.php:37 +msgid "All Day Event" +msgstr "เป็นกิจกรรมตลอดทั้งวัน" + +#: templates/part.eventform.php:41 +msgid "From" +msgstr "จาก" + +#: templates/part.eventform.php:49 +msgid "To" +msgstr "ถึง" + +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "ตัวเลือกขั้นสูง" + +#: templates/part.eventform.php:61 +msgid "Repeat" +msgstr "ทำซ้ำ" + +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "ขั้นสูง" + +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "เลือกสัปดาห์" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "เลือกวัน" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "และวันที่มีเหตุการณ์เกิดขึ้นในปี" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "และวันที่มีเหตุการณ์เกิดขึ้นในเดือน" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "เลือกเดือน" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "เลือกสัปดาห์" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "และสัปดาห์ที่มีเหตุการณ์เกิดขึ้นในปี" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "ช่วงเวลา" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "สิ้นสุด" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "จำนวนที่ปรากฏ" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "สถานที่" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "สถานที่จัดกิจกรรม" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "คำอธิบาย" + +#: templates/part.eventform.php:218 +msgid "Description of the Event" +msgstr "คำอธิบายเกี่ยวกับกิจกรรม" + +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "นำเข้าไฟล์ปฏิทิน" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "กรณาเลือกปฏิทิน" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "สร้างปฏิทินใหม่" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "ชื่อของปฏิทิน" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "นำเข้าข้อมูล" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "นำเข้าข้อมูลปฏิทิน" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "ปฏิทินถูกนำเข้าข้อมูลเรียบร้อยแล้ว" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "ปิดกล่องข้อความโต้ตอบ" + +#: templates/part.newevent.php:1 +msgid "Create a new event" +msgstr "สร้างกิจกรรมใหม่" + +#: templates/settings.php:13 +msgid "Timezone" +msgstr "โซนเวลา" + +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "ตรวจสอบการเปลี่ยนแปลงโซนเวลาอยู่เสมอ" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "รูปแบบการแสดงเวลา" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24 ช.ม." + +#: templates/settings.php:35 +msgid "12h" +msgstr "12 ช.ม." + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "ที่อยู่ในการเชื่อมข้อมูลกับปฏิทิน CalDav:" + + diff --git a/l10n/th_TH/contacts.po b/l10n/th_TH/contacts.po new file mode 100644 index 00000000000..8eb6719d9c6 --- /dev/null +++ b/l10n/th_TH/contacts.po @@ -0,0 +1,282 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# AriesAnywhere Anywhere , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-26 07:10+0000\n" +"Last-Translator: AriesAnywhere Anywhere \n" +"Language-Team: Thai (Thailand) (http://www.transifex.net/projects/p/owncloud/team/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." +msgstr "เกิดข้อผิดพลาดใน (ยกเลิก)การเปิดใช้งานสมุดบันทึกที่อยู่" + +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "เกิดข้อผิดพลาดในการเพิ่มรายชื่อผู้ติดต่อใหม่" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "ไม่สามารถเพิ่มรายละเอียดที่ไม่มีข้อมูลได้" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "อย่างน้อยที่สุดช่องข้อมูลที่อยู่จะต้องถูกกรอกลงไป" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "เกิดข้อผิดพลาดในการเพิ่มรายละเอียดการติดต่อ" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "เกิดข้อผิดพลาดในการเพิ่มสมุดบันทึกที่อยู่ใหม่" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "เกิดข้อผิดพลาดในการเปิดใช้งานสมุดบันทึกที่อยู่" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "เกิดข้อผิดพลาดในการลบรายละเอียดการติดต่อ" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "เกิดข้อผิดพลาดในการอัพเดทข้อมูลการติดต่อ" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "เกิดข้อผิดพลาดในการอัพเดทสมุดบันทึกที่อยู่" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "ข้อมูลการติดต่อ" + +#: lib/app.php:52 +msgid "This is not your addressbook." +msgstr "นี่ไม่ใช่สมุดบันทึกที่อยู่ของคุณ" + +#: lib/app.php:61 photo.php:36 +msgid "Contact could not be found." +msgstr "ไม่พบข้อมูลการติดต่อ" + +#: lib/app.php:89 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "ข้อมูลเกี่ยวกับ vCard ไม่ถูกต้อง กรุณาโหลดหน้าเวปใหม่อีกครั้ง" + +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 +msgid "Address" +msgstr "ที่อยู่" + +#: lib/app.php:102 templates/part.addcardform.php:43 +msgid "Telephone" +msgstr "โทรศัพท์" + +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 +msgid "Email" +msgstr "อีเมล์" + +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 +msgid "Organization" +msgstr "หน่วยงาน" + +#: lib/app.php:116 lib/app.php:123 +msgid "Work" +msgstr "ที่ทำงาน" + +#: lib/app.php:117 lib/app.php:121 +msgid "Home" +msgstr "บ้าน" + +#: lib/app.php:122 +msgid "Mobile" +msgstr "มือถือ" + +#: lib/app.php:124 +msgid "Text" +msgstr "ข้อความ" + +#: lib/app.php:125 +msgid "Voice" +msgstr "เสียงพูด" + +#: lib/app.php:126 +msgid "Fax" +msgstr "โทรสาร" + +#: lib/app.php:127 +msgid "Video" +msgstr "วีดีโอ" + +#: lib/app.php:128 +msgid "Pager" +msgstr "เพจเจอร์" + +#: lib/search.php:22 +msgid "Contact" +msgstr "ข้อมูลการติดต่อ" + +#: photo.php:42 +msgid "This is not your contact." +msgstr "นี่ไม่ใช่ข้อมูลการติดต่อของคุณ" + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "เพิ่มรายชื่อผู้ติดต่อใหม่" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "สมุดบันทึกที่อยู่" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "สมุดบันทึกที่อยู่" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "ชื่อ" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "ประเภท" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "ตู้ ปณ." + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "เพิ่ม" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "ถนน" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "เมือง" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "ภูมิภาค" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "รหัสไปรษณีย์" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "ประเทศ" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "สร้างข้อมูลการติดต่อใหม่" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "เลือกสมุดบันทึกข้อมูลติดต่อที่ต้องการใช้งาน" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "สร้างสมุดบันทึกข้อมูลการติดต่อใหม่" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "ลิงค์ CardDav" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "ดาวน์โหลด" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "แก้ไข" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Delete" +msgstr "ลบ" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "ดาวน์โหลดข้อมูลการติดต่อ" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "ลบข้อมูลการติดต่อ" + +#: templates/part.details.php:34 +msgid "Add" +msgstr "เพิ่ม" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "สร้างสมุดบันทึกที่อยู่ใหม่" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "แก้ไขสมุดบันทึกที่อยู่" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "ชื่อที่ต้องการให้แสดง" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "เปิดใช้" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "บันทึก" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "ส่งข้อมูล" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "ยกเลิก" + +#: templates/part.property.php:3 +msgid "Birthday" +msgstr "วันเกิด" + +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "พิเศษ" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 +msgid "Phone" +msgstr "โทรศัพท์" + +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "อัพเดท" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "ที่อยู่ในการเชื่อมข้อมูลกับระบบบันทึกที่อยู่ CardDAV:" + + diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po new file mode 100644 index 00000000000..4a2a218de33 --- /dev/null +++ b/l10n/th_TH/core.po @@ -0,0 +1,171 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# AriesAnywhere Anywhere , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-16 19:32+0000\n" +"Last-Translator: AriesAnywhere Anywhere \n" +"Language-Team: Thai (Thailand) (http://www.transifex.net/projects/p/owncloud/team/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "เปลี่ยนรหัสผ่านใน Owncloud" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "ใช้ลิงค์ต่อไปนี้เพื่อเปลี่ยนรหัสผ่านของคุณใหม่: {link}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "คุณจะได้รับลิงค์เพื่อกำหนดรหัสผ่านใหม่ทางอีเมล์" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "ส่งคำร้องเรียบร้อยแล้ว" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "ไม่สามารถเข้าสู่ระบบได้!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "ชื่อผู้ใช้งาน" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "ขอเปลี่ยนรหัสใหม่" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "รหัสผ่านของคุณถูกเปลี่ยนเรียบร้อยแล้ว" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "ไปที่หน้าเข้าสู่ระบบ" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "รหัสผ่านใหม่" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "เปลี่ยนรหัสผ่าน" + +#: strings.php:5 +msgid "Personal" +msgstr "ส่วนตัว" + +#: strings.php:6 +msgid "Users" +msgstr "ผู้ใช้งาน" + +#: strings.php:7 +msgid "Apps" +msgstr "Apps" + +#: strings.php:8 +msgid "Admin" +msgstr "ผู้ดูแลระบบ" + +#: strings.php:9 +msgid "Help" +msgstr "ช่วยเหลือ" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "ไม่พบ Cloud" + +#: templates/installation.php:20 +msgid "Create an admin account" +msgstr "สร้าง บัญชีผู้ดูแลระบบ" + +#: templates/installation.php:26 templates/login.php:12 +msgid "Password" +msgstr "รหัสผ่าน" + +#: templates/installation.php:32 +msgid "Advanced" +msgstr "ขั้นสูง" + +#: templates/installation.php:34 +msgid "Data folder" +msgstr "โฟลเดอร์เก็บข้อมูล" + +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "กำหนดค่าฐานข้อมูล" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "จะถูกใช้" + +#: templates/installation.php:79 +msgid "Database user" +msgstr "ชื่อผู้ใช้งานฐานข้อมูล" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "รหัสผ่านฐานข้อมูล" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "ชื่อฐานข้อมูล" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Database host" + +#: templates/installation.php:98 +msgid "Finish setup" +msgstr "ติดตั้งเรียบร้อยแล้ว" + +#: templates/layout.guest.php:35 +msgid "web services under your control" +msgstr "web services under your control" + +#: templates/layout.user.php:34 +msgid "Log out" +msgstr "ออกจากระบบ" + +#: templates/layout.user.php:46 templates/layout.user.php:47 +msgid "Settings" +msgstr "ตั้งค่า" + +#: templates/login.php:5 +msgid "Lost your password?" +msgstr "ลืมรหัสผ่าน?" + +#: templates/login.php:15 +msgid "remember" +msgstr "จำรหัสผ่าน" + +#: templates/login.php:16 +msgid "Log in" +msgstr "เข้าสู่ระบบ" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "คุณออกจากระบบเรียบร้อยแล้ว" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "ก่อนหน้า" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "ถัดไป" + + diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po new file mode 100644 index 00000000000..07c3357a301 --- /dev/null +++ b/l10n/th_TH/files.po @@ -0,0 +1,114 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# AriesAnywhere Anywhere , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-16 18:03+0000\n" +"Last-Translator: AriesAnywhere Anywhere \n" +"Language-Team: Thai (Thailand) (http://www.transifex.net/projects/p/owncloud/team/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ajax/upload.php:19 +msgid "There is no error, the file uploaded with success" +msgstr "ไม่มีข้อผิดพลาดใดๆ ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว" + +#: ajax/upload.php:20 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "" +"ไฟล์ที่อัพโหลดมีขนาดเกินคำสั่ง upload_max_filesize ที่ระบุเอาไว้ในไฟล์ " +"php.ini" + +#: ajax/upload.php:21 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" +"ไฟล์ที่อัพโหลดมีขนาดเกินคำสั่ง MAX_FILE_SIZE " +"ที่ระบุเอาไว้ในรูปแบบคำสั่งในภาษา HTML" + +#: ajax/upload.php:22 +msgid "The uploaded file was only partially uploaded" +msgstr "ไฟล์ที่อัพโหลดยังไม่ได้ถูกอัพโหลดอย่างสมบูรณ์" + +#: ajax/upload.php:23 +msgid "No file was uploaded" +msgstr "ยังไม่มีไฟล์ที่ถูกอัพโหลด" + +#: ajax/upload.php:24 +msgid "Missing a temporary folder" +msgstr "แฟ้มเอกสารชั่วคราวเกิดการสูญหาย" + +#: appinfo/app.php:8 +msgid "Files" +msgstr "ไฟล์" + +#: templates/admin.php:5 +msgid "Maximum upload size" +msgstr "ขนาดไฟล์สูงสุดที่อัพโหลดได้" + +#: templates/index.php:7 +msgid "New" +msgstr "อัพโหลดไฟล์ใหม่" + +#: templates/index.php:10 +msgid "Text file" +msgstr "ไฟล์ข้อความ" + +#: templates/index.php:11 +msgid "Folder" +msgstr "แฟ้มเอกสาร" + +#: templates/index.php:12 +msgid "From the web" +msgstr "จากเวป" + +#: templates/index.php:22 +msgid "Upload" +msgstr "อัพโหลด" + +#: templates/index.php:35 +msgid "Nothing in here. Upload something!" +msgstr "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!" + +#: templates/index.php:43 +msgid "Name" +msgstr "ชื่อ" + +#: templates/index.php:45 +msgid "Download" +msgstr "ดาวน์โหลด" + +#: templates/index.php:49 +msgid "Size" +msgstr "ขนาด" + +#: templates/index.php:50 +msgid "Modified" +msgstr "ปรับปรุงล่าสุด" + +#: templates/index.php:50 +msgid "Delete" +msgstr "ลบ" + +#: templates/index.php:58 +msgid "Upload too large" +msgstr "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป" + +#: templates/index.php:60 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" +"ไฟล์ที่คุณพยายามที่จะอัพโหลดมีขนาดเกินกว่าขนาดสูงสุดที่กำหนดไว้ให้อัพโหลดได้สำหรับเซิร์ฟเวอร์นี้" + + diff --git a/l10n/th_TH/gallery.po b/l10n/th_TH/gallery.po new file mode 100644 index 00000000000..ffeb3b04056 --- /dev/null +++ b/l10n/th_TH/gallery.po @@ -0,0 +1,53 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# AriesAnywhere Anywhere , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-26 07:08+0000\n" +"Last-Translator: AriesAnywhere Anywhere \n" +"Language-Team: Thai (Thailand) (http://www.transifex.net/projects/p/owncloud/team/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "แกลอรี่" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "กำลังสแกนไดเร็กทอรี่" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "ไม่พบรูปภาพที่ต้องการ" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "การสร้างรูปขนาดย่อ" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "คุณต้องการลบอัลบั้มนี้ออกหรือไม่" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "กรอกชื่อแกลอรี่ใหม่" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "ตรวจสอบอีกครั้ง" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "ย้อนกลับ" + + diff --git a/l10n/th_TH/media.po b/l10n/th_TH/media.po new file mode 100644 index 00000000000..f486a4609ff --- /dev/null +++ b/l10n/th_TH/media.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# AriesAnywhere Anywhere , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-16 17:33+0000\n" +"Last-Translator: AriesAnywhere Anywhere \n" +"Language-Team: Thai (Thailand) (http://www.transifex.net/projects/p/owncloud/team/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: appinfo/app.php:32 templates/player.php:9 +msgid "Music" +msgstr "เพลง" + +#: templates/music.php:3 templates/player.php:13 +msgid "Play" +msgstr "เล่น" + +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 +msgid "Pause" +msgstr "หยุดชั่วคราว" + +#: templates/music.php:5 +msgid "Previous" +msgstr "ก่อนหน้า" + +#: templates/music.php:6 templates/player.php:15 +msgid "Next" +msgstr "ถัดไป" + +#: templates/music.php:7 +msgid "Mute" +msgstr "ปิดเสียง" + +#: templates/music.php:8 +msgid "Unmute" +msgstr "เปิดเสียง" + +#: templates/music.php:25 +msgid "Rescan Collection" +msgstr "ตรวจสอบไฟล์ที่เก็บไว้อีกครั้ง" + +#: templates/music.php:37 +msgid "Artist" +msgstr "ศิลปิน" + +#: templates/music.php:38 +msgid "Album" +msgstr "อัลบั้ม" + +#: templates/music.php:39 +msgid "Title" +msgstr "ชื่อ" + + diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po new file mode 100644 index 00000000000..5444a4182f3 --- /dev/null +++ b/l10n/th_TH/settings.po @@ -0,0 +1,160 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# AriesAnywhere Anywhere , 2012. +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-20 17:48+0100\n" +"PO-Revision-Date: 2012-01-16 20:19+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Thai (Thailand) (http://www.transifex.net/projects/p/owncloud/team/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "อีเมล์ถูกเปลี่ยนแล้ว" + +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 +msgid "Invalid request" +msgstr "คำร้องขอไม่ถูกต้อง" + +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "เปลี่ยนชื่อบัญชี OpenID แล้ว" + +#: ajax/setlanguage.php:14 +msgid "Language changed" +msgstr "เปลี่ยนภาษาเรียบร้อยแล้ว" + +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "ภาษาไทย" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "ระดับการเก็บบันทึก log" + +#: templates/apps.php:8 +msgid "Add your application" +msgstr "เพิ่มแอพพลิเคชั่นของคุณ" + +#: templates/apps.php:21 +msgid "Select an App" +msgstr "เลือก App" + +#: templates/apps.php:23 +msgid "-licensed" +msgstr "-ได้รับอนุญาติแล้ว" + +#: templates/apps.php:23 +msgid "by" +msgstr "โดย" + +#: templates/help.php:8 +msgid "Ask a question" +msgstr "สอบถามข้อมูล" + +#: templates/help.php:20 +msgid "Problems connecting to help database." +msgstr "เกิดปัญหาในการเชื่อมต่อกับฐานข้อมูลช่วยเหลือ" + +#: templates/help.php:21 +msgid "Go there manually." +msgstr "ไปที่นั่นด้วยตนเอง" + +#: templates/help.php:29 +msgid "Answer" +msgstr "คำตอบ" + +#: templates/personal.php:8 +msgid "You use" +msgstr "คุณใช้พื้นที่ไป" + +#: templates/personal.php:8 +msgid "of the available" +msgstr "จากจำนวนที่ใช้ได้" + +#: templates/personal.php:13 +msgid "Your password got changed" +msgstr "เปลี่ยนรหัสผ่านเรียบร้อยแล้ว" + +#: templates/personal.php:14 +msgid "Unable to change your password" +msgstr "ไม่สามารถเปลี่ยนรหัสผ่านของคุณได้" + +#: templates/personal.php:15 +msgid "Current password" +msgstr "รหัสผ่านปัจจุบัน" + +#: templates/personal.php:16 +msgid "New password" +msgstr "รหัสผ่านใหม่" + +#: templates/personal.php:17 +msgid "show" +msgstr "แสดง" + +#: templates/personal.php:18 +msgid "Change password" +msgstr "เปลี่ยนรหัสผ่าน" + +#: templates/personal.php:24 +msgid "Email" +msgstr "อีเมล์" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "ที่อยู่อีเมล์ของคุณ" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "กรอกที่อยู่อีเมล์ของคุณเพื่อเปิดให้มีการกู้คืนรหัสผ่านได้" + +#: templates/personal.php:32 templates/personal.php:33 +msgid "Language" +msgstr "ภาษา" + +#: templates/personal.php:38 +msgid "Help translate" +msgstr "ช่วยกันแปล" + +#: templates/personal.php:45 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "" +"ใช้ที่อยู่นี้ในการเชื่อมต่อกับบัญชี ownCloud " +"ของคุณในเครื่องมือจัดการไฟล์ของคุณ" + +#: templates/users.php:15 templates/users.php:30 +msgid "Name" +msgstr "ชื่อ" + +#: templates/users.php:16 templates/users.php:31 +msgid "Password" +msgstr "รหัสผ่าน" + +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 +msgid "Groups" +msgstr "กลุ่ม" + +#: templates/users.php:23 +msgid "Create" +msgstr "สร้าง" + +#: templates/users.php:33 +msgid "Quota" +msgstr "พื้นที่" + +#: templates/users.php:58 +msgid "Delete" +msgstr "ลบ" + + diff --git a/l10n/tr/calendar.po b/l10n/tr/calendar.po new file mode 100644 index 00000000000..6025d7e6bb6 --- /dev/null +++ b/l10n/tr/calendar.po @@ -0,0 +1,637 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Aranel Surion , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-15 14:44+0100\n" +"PO-Revision-Date: 2012-01-15 13:45+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Turkish (http://www.transifex.net/projects/p/owncloud/team/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "" + +#: ajax/settimezone.php:22 +msgid "Timezone changed" +msgstr "Zaman dilimi değiştirildi" + +#: ajax/settimezone.php:24 +msgid "Invalid request" +msgstr "Geçersiz istek" + +#: appinfo/app.php:20 templates/calendar.php:13 +#: templates/part.eventform.php:20 +msgid "Calendar" +msgstr "Takvim" + +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "Yanlış takvim" + +#: lib/app.php:60 lib/object.php:332 +msgid "Birthday" +msgstr "Doğum günü" + +#: lib/app.php:61 lib/object.php:333 +msgid "Business" +msgstr "İş" + +#: lib/app.php:62 lib/object.php:334 +msgid "Call" +msgstr "Arama" + +#: lib/app.php:63 lib/object.php:335 +msgid "Clients" +msgstr "Müşteriler" + +#: lib/app.php:64 lib/object.php:336 +msgid "Deliverer" +msgstr "Teslimatçı" + +#: lib/app.php:65 lib/object.php:337 +msgid "Holidays" +msgstr "Tatil günleri" + +#: lib/app.php:66 lib/object.php:338 +msgid "Ideas" +msgstr "Fikirler" + +#: lib/app.php:67 lib/object.php:339 +msgid "Journey" +msgstr "Seyahat" + +#: lib/app.php:68 lib/object.php:340 +msgid "Jubilee" +msgstr "Yıl dönümü" + +#: lib/app.php:69 lib/object.php:341 +msgid "Meeting" +msgstr "Toplantı" + +#: lib/app.php:70 lib/object.php:342 +msgid "Other" +msgstr "Diğer" + +#: lib/app.php:71 lib/object.php:343 +msgid "Personal" +msgstr "Kişisel" + +#: lib/app.php:72 lib/object.php:344 +msgid "Projects" +msgstr "Projeler" + +#: lib/app.php:73 lib/object.php:345 +msgid "Questions" +msgstr "Sorular" + +#: lib/app.php:74 lib/object.php:346 +msgid "Work" +msgstr "İş" + +#: lib/object.php:353 +msgid "Does not repeat" +msgstr "Tekrar etmiyor" + +#: lib/object.php:354 +msgid "Daily" +msgstr "Günlük" + +#: lib/object.php:355 +msgid "Weekly" +msgstr "Haftalı" + +#: lib/object.php:356 +msgid "Every Weekday" +msgstr "Haftaiçi Her gün" + +#: lib/object.php:357 +msgid "Bi-Weekly" +msgstr "İki haftada bir" + +#: lib/object.php:358 +msgid "Monthly" +msgstr "Aylık" + +#: lib/object.php:359 +msgid "Yearly" +msgstr "Yıllı" + +#: lib/object.php:366 +msgid "never" +msgstr "" + +#: lib/object.php:367 +msgid "by occurrences" +msgstr "" + +#: lib/object.php:368 +msgid "by date" +msgstr "" + +#: lib/object.php:375 +msgid "by monthday" +msgstr "" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "" + +#: lib/object.php:383 templates/lAfix.php:3 +msgid "Monday" +msgstr "" + +#: lib/object.php:384 templates/lAfix.php:4 +msgid "Tuesday" +msgstr "" + +#: lib/object.php:385 templates/lAfix.php:5 +msgid "Wednesday" +msgstr "" + +#: lib/object.php:386 templates/lAfix.php:6 +msgid "Thursday" +msgstr "" + +#: lib/object.php:387 templates/lAfix.php:7 +msgid "Friday" +msgstr "" + +#: lib/object.php:388 templates/lAfix.php:8 +msgid "Saturday" +msgstr "" + +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "" + +#: lib/object.php:396 +msgid "events week of month" +msgstr "" + +#: lib/object.php:397 +msgid "first" +msgstr "" + +#: lib/object.php:398 +msgid "second" +msgstr "" + +#: lib/object.php:399 +msgid "third" +msgstr "" + +#: lib/object.php:400 +msgid "fourth" +msgstr "" + +#: lib/object.php:401 +msgid "fifth" +msgstr "" + +#: lib/object.php:402 +msgid "last" +msgstr "" + +#: lib/object.php:424 templates/lAfix.php:16 +msgid "January" +msgstr "" + +#: lib/object.php:425 templates/lAfix.php:17 +msgid "February" +msgstr "" + +#: lib/object.php:426 templates/lAfix.php:18 +msgid "March" +msgstr "" + +#: lib/object.php:427 templates/lAfix.php:19 +msgid "April" +msgstr "" + +#: lib/object.php:428 templates/lAfix.php:20 +msgid "May" +msgstr "" + +#: lib/object.php:429 templates/lAfix.php:21 +msgid "June" +msgstr "" + +#: lib/object.php:430 templates/lAfix.php:22 +msgid "July" +msgstr "" + +#: lib/object.php:431 templates/lAfix.php:23 +msgid "August" +msgstr "" + +#: lib/object.php:432 templates/lAfix.php:24 +msgid "September" +msgstr "" + +#: lib/object.php:433 templates/lAfix.php:25 +msgid "October" +msgstr "" + +#: lib/object.php:434 templates/lAfix.php:26 +msgid "November" +msgstr "" + +#: lib/object.php:435 templates/lAfix.php:27 +msgid "December" +msgstr "" + +#: lib/object.php:441 +msgid "by events date" +msgstr "" + +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "" + +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "" + +#: lib/object.php:444 +msgid "by day and month" +msgstr "" + +#: lib/object.php:467 +msgid "Not an array" +msgstr "Bir dizi değil" + +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "" + +#: lib/search.php:40 +msgid "Cal." +msgstr "" + +#: templates/calendar.php:10 +msgid "All day" +msgstr "Tüm gün" + +#: templates/calendar.php:11 +msgid "Missing fields" +msgstr "Eksik alanlar" + +#: templates/calendar.php:12 templates/part.eventform.php:3 +msgid "Title" +msgstr "Başlık" + +#: templates/calendar.php:14 +msgid "From Date" +msgstr "Bu Tarihten" + +#: templates/calendar.php:15 +msgid "From Time" +msgstr "Bu Saatten" + +#: templates/calendar.php:16 +msgid "To Date" +msgstr "Bu Tarihe" + +#: templates/calendar.php:17 +msgid "To Time" +msgstr "Bu Saate" + +#: templates/calendar.php:18 +msgid "The event ends before it starts" +msgstr "Olay başlamadan önce bitiyor" + +#: templates/calendar.php:19 +msgid "There was a database fail" +msgstr "Bir veritabanı başarısızlığı oluştu" + +#: templates/calendar.php:52 +msgid "Week" +msgstr "Hafta" + +#: templates/calendar.php:53 +msgid "Month" +msgstr "Ay" + +#: templates/calendar.php:54 +msgid "List" +msgstr "Liste" + +#: templates/calendar.php:59 +msgid "Today" +msgstr "Bugün" + +#: templates/calendar.php:60 +msgid "Calendars" +msgstr "Takvimler" + +#: templates/calendar.php:78 +msgid "There was a fail, while parsing the file." +msgstr "Dosya okunurken başarısızlık oldu." + +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "" + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "" + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "" + +#: templates/lAfix.php:32 +msgid "May." +msgstr "" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "" + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "" + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "" + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "" + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "" + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "" + +#: templates/part.choosecalendar.php:1 +msgid "Choose active calendars" +msgstr "Aktif takvimleri seçin" + +#: templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "Yeni Takvim" + +#: templates/part.choosecalendar.php:20 +#: templates/part.choosecalendar.rowfields.php:4 +msgid "CalDav Link" +msgstr "CalDav Bağlantısı" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Download" +msgstr "İndir" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Edit" +msgstr "Düzenle" + +#: templates/part.choosecalendar.rowfields.php:4 +#: templates/part.editevent.php:9 +msgid "Delete" +msgstr "Sil" + +#: templates/part.editcalendar.php:9 +msgid "New calendar" +msgstr "Yeni takvim" + +#: templates/part.editcalendar.php:9 +msgid "Edit calendar" +msgstr "Takvimi düzenle" + +#: templates/part.editcalendar.php:12 +msgid "Displayname" +msgstr "Görünümadı" + +#: templates/part.editcalendar.php:23 +msgid "Active" +msgstr "Aktif" + +#: templates/part.editcalendar.php:29 +msgid "Calendar color" +msgstr "Takvim rengi" + +#: templates/part.editcalendar.php:42 +msgid "Save" +msgstr "Kaydet" + +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 +#: templates/part.newevent.php:6 +msgid "Submit" +msgstr "Gönder" + +#: templates/part.editcalendar.php:43 +msgid "Cancel" +msgstr "İptal" + +#: templates/part.editevent.php:1 +msgid "Edit an event" +msgstr "Bir olay düzenle" + +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "Dışa aktar" + +#: templates/part.eventform.php:5 +msgid "Title of the Event" +msgstr "Olayın Başlığı" + +#: templates/part.eventform.php:11 +msgid "Category" +msgstr "Kategori" + +#: templates/part.eventform.php:13 +msgid "Select category" +msgstr "Kategori seçin" + +#: templates/part.eventform.php:37 +msgid "All Day Event" +msgstr "Tüm Gün Olay" + +#: templates/part.eventform.php:41 +msgid "From" +msgstr "Kimden" + +#: templates/part.eventform.php:49 +msgid "To" +msgstr "Kime" + +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "Gelişmiş opsiyonlar" + +#: templates/part.eventform.php:61 +msgid "Repeat" +msgstr "Tekrar" + +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "" + +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "Konum" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "Olayın Konumu" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "Açıklama" + +#: templates/part.eventform.php:218 +msgid "Description of the Event" +msgstr "Olayın Açıklaması" + +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "Lütfen takvimi seçin" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "İçe Al" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "" + +#: templates/part.newevent.php:1 +msgid "Create a new event" +msgstr "Yeni olay oluştur" + +#: templates/settings.php:13 +msgid "Timezone" +msgstr "Zaman dilimi" + +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "Saat biçimi" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24s" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12s" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "CalDAV Takvim senkron adresi:" + + diff --git a/l10n/tr/contacts.po b/l10n/tr/contacts.po new file mode 100644 index 00000000000..0d3a4a77619 --- /dev/null +++ b/l10n/tr/contacts.po @@ -0,0 +1,282 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Aranel Surion , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Turkish (http://www.transifex.net/projects/p/owncloud/team/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." +msgstr "" + +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: lib/app.php:52 +msgid "This is not your addressbook." +msgstr "Bu sizin adres defteriniz değil." + +#: lib/app.php:61 photo.php:36 +msgid "Contact could not be found." +msgstr "Kişi bulunamadı." + +#: lib/app.php:89 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "vCard bilgileri doğru değil. Lütfen sayfayı yenileyin." + +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 +msgid "Address" +msgstr "Adres" + +#: lib/app.php:102 templates/part.addcardform.php:43 +msgid "Telephone" +msgstr "Telefon" + +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 +msgid "Email" +msgstr "Eposta" + +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 +msgid "Organization" +msgstr "Organizasyon" + +#: lib/app.php:116 lib/app.php:123 +msgid "Work" +msgstr "İş" + +#: lib/app.php:117 lib/app.php:121 +msgid "Home" +msgstr "Ev" + +#: lib/app.php:122 +msgid "Mobile" +msgstr "Mobil" + +#: lib/app.php:124 +msgid "Text" +msgstr "Metin" + +#: lib/app.php:125 +msgid "Voice" +msgstr "Ses" + +#: lib/app.php:126 +msgid "Fax" +msgstr "Faks" + +#: lib/app.php:127 +msgid "Video" +msgstr "Video" + +#: lib/app.php:128 +msgid "Pager" +msgstr "Sayfalayıcı" + +#: lib/search.php:22 +msgid "Contact" +msgstr "" + +#: photo.php:42 +msgid "This is not your contact." +msgstr "Bu sizin kişiniz değil." + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "Kişi Ekle" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "Ad" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "Posta Kutusu" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "Uzatılmış" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "Sokak" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "Şehir" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "Bölge" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "Posta kodu" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "Ülke" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "Kişi Oluştur" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "Düzenle" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Delete" +msgstr "Sil" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "" + +#: templates/part.property.php:3 +msgid "Birthday" +msgstr "Doğum günü" + +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 +msgid "Phone" +msgstr "Telefon" + +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "" + + diff --git a/l10n/tr/core.po b/l10n/tr/core.po new file mode 100644 index 00000000000..64d503eecf2 --- /dev/null +++ b/l10n/tr/core.po @@ -0,0 +1,171 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Aranel Surion , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Turkish (http://www.transifex.net/projects/p/owncloud/team/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "Parolanızı sıfırlamak için bir bağlantı Eposta olarak gönderilecek." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "İstendi" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Giriş başarısız!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "Kullanıcı adı" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Sıfırlama iste" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Parolanız sıfırlandı" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Yeni parola" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Parolayı sıfırla" + +#: strings.php:5 +msgid "Personal" +msgstr "Kişisel" + +#: strings.php:6 +msgid "Users" +msgstr "Kullanıcılar" + +#: strings.php:7 +msgid "Apps" +msgstr "Uygulamalar" + +#: strings.php:8 +msgid "Admin" +msgstr "Yönetici" + +#: strings.php:9 +msgid "Help" +msgstr "Yardı" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "Bulut bulunamadı" + +#: templates/installation.php:20 +msgid "Create an admin account" +msgstr "Bir yönetici hesabı oluşturun" + +#: templates/installation.php:26 templates/login.php:12 +msgid "Password" +msgstr "Parola" + +#: templates/installation.php:32 +msgid "Advanced" +msgstr "Gelişmiş" + +#: templates/installation.php:34 +msgid "Data folder" +msgstr "Veri klasörü" + +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "Veritabanını ayarla" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "kullanılacak" + +#: templates/installation.php:79 +msgid "Database user" +msgstr "Veritabanı kullanıcı adı" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "Veritabanı parolası" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "Veritabanı adı" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "Veritabanı sunucusu" + +#: templates/installation.php:98 +msgid "Finish setup" +msgstr "Kurulumu tamamla" + +#: templates/layout.guest.php:35 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:34 +msgid "Log out" +msgstr "Çıkış yap" + +#: templates/layout.user.php:46 templates/layout.user.php:47 +msgid "Settings" +msgstr "Ayarlar" + +#: templates/login.php:5 +msgid "Lost your password?" +msgstr "Parolanızı mı unuttunuz?" + +#: templates/login.php:15 +msgid "remember" +msgstr "hatırla" + +#: templates/login.php:16 +msgid "Log in" +msgstr "" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "Çıkış yaptınız." + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "önceki" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "sonraki" + + diff --git a/l10n/tr/files.po b/l10n/tr/files.po new file mode 100644 index 00000000000..3330007801e --- /dev/null +++ b/l10n/tr/files.po @@ -0,0 +1,112 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Aranel Surion , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Turkish (http://www.transifex.net/projects/p/owncloud/team/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ajax/upload.php:19 +msgid "There is no error, the file uploaded with success" +msgstr "Bir hata yok, dosya başarıyla yüklendi" + +#: ajax/upload.php:20 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "" +"Yüklenen dosya php.ini de belirtilen upload_max_filesize sınırını aşıyor" + +#: ajax/upload.php:21 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "Yüklenen dosya HTML formundaki MAX_FILE_SIZE sınırını aşıyor" + +#: ajax/upload.php:22 +msgid "The uploaded file was only partially uploaded" +msgstr "Yüklenen dosyanın sadece bir kısmı yüklendi" + +#: ajax/upload.php:23 +msgid "No file was uploaded" +msgstr "Hiç dosya yüklenmedi" + +#: ajax/upload.php:24 +msgid "Missing a temporary folder" +msgstr "Geçici bir klasör eksik" + +#: appinfo/app.php:8 +msgid "Files" +msgstr "Dosyalar" + +#: templates/admin.php:5 +msgid "Maximum upload size" +msgstr "Maksimum yükleme boyutu" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:11 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From the web" +msgstr "" + +#: templates/index.php:22 +msgid "Upload" +msgstr "Yükle" + +#: templates/index.php:35 +msgid "Nothing in here. Upload something!" +msgstr "Burada hiçbir şey yok. Birşeyler yükleyin!" + +#: templates/index.php:43 +msgid "Name" +msgstr "Ad" + +#: templates/index.php:45 +msgid "Download" +msgstr "İndir" + +#: templates/index.php:49 +msgid "Size" +msgstr "Boyut" + +#: templates/index.php:50 +msgid "Modified" +msgstr "Değiştirilme" + +#: templates/index.php:50 +msgid "Delete" +msgstr "Sil" + +#: templates/index.php:58 +msgid "Upload too large" +msgstr "Yüklemeniz çok büyük" + +#: templates/index.php:60 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" +"Yüklemeye çalıştığınız dosyalar bu sunucudaki maksimum yükleme boyutunu " +"aşıyor." + + diff --git a/l10n/tr/gallery.po b/l10n/tr/gallery.po new file mode 100644 index 00000000000..f50e537ef55 --- /dev/null +++ b/l10n/tr/gallery.po @@ -0,0 +1,52 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Turkish (http://www.transifex.net/projects/p/owncloud/team/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" + + diff --git a/l10n/tr/media.po b/l10n/tr/media.po new file mode 100644 index 00000000000..03f15722ccd --- /dev/null +++ b/l10n/tr/media.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Aranel Surion , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Turkish (http://www.transifex.net/projects/p/owncloud/team/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: appinfo/app.php:32 +msgid "Music" +msgstr "Müzik" + +#: templates/music.php:3 templates/player.php:13 +msgid "Play" +msgstr "Oynat" + +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 +msgid "Pause" +msgstr "Beklet" + +#: templates/music.php:5 +msgid "Previous" +msgstr "Önceki" + +#: templates/music.php:6 templates/player.php:15 +msgid "Next" +msgstr "Sonraki" + +#: templates/music.php:7 +msgid "Mute" +msgstr "Sesi kapat" + +#: templates/music.php:8 +msgid "Unmute" +msgstr "Sesi aç" + +#: templates/music.php:25 +msgid "Rescan Collection" +msgstr "Koleksiyonu Tara" + +#: templates/music.php:37 +msgid "Artist" +msgstr "Sanatç" + +#: templates/music.php:38 +msgid "Album" +msgstr "Albüm" + +#: templates/music.php:39 +msgid "Title" +msgstr "Başlık" + + diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po new file mode 100644 index 00000000000..8763b746c4d --- /dev/null +++ b/l10n/tr/settings.po @@ -0,0 +1,157 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Aranel Surion , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-16 17:31+0100\n" +"PO-Revision-Date: 2012-01-16 16:32+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Turkish (http://www.transifex.net/projects/p/owncloud/team/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "" + +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 +msgid "Invalid request" +msgstr "Geçersiz istek" + +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID Değiştirildi" + +#: ajax/setlanguage.php:14 +msgid "Language changed" +msgstr "Dil değiştirildi" + +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "" + +#: templates/apps.php:8 +msgid "Add your application" +msgstr "Uygulamanızı ekleyin" + +#: templates/apps.php:21 +msgid "Select an App" +msgstr "Bir uygulama seçin" + +#: templates/apps.php:23 +msgid "-licensed" +msgstr "-lisanslı" + +#: templates/apps.php:23 +msgid "by" +msgstr "yapan" + +#: templates/help.php:8 +msgid "Ask a question" +msgstr "Bir soru sorun" + +#: templates/help.php:20 +msgid "Problems connecting to help database." +msgstr "Yardım veritabanına bağlanmada sorunlar var." + +#: templates/help.php:21 +msgid "Go there manually." +msgstr "Oraya elle gidin." + +#: templates/help.php:29 +msgid "Answer" +msgstr "Cevap" + +#: templates/personal.php:8 +msgid "You use" +msgstr "Kullanıyorsunuz" + +#: templates/personal.php:8 +msgid "of the available" +msgstr "mevcut olandan" + +#: templates/personal.php:13 +msgid "Your password got changed" +msgstr "Parolanız değiştirildi" + +#: templates/personal.php:14 +msgid "Unable to change your password" +msgstr "Parolanız değiştirilemiyor" + +#: templates/personal.php:15 +msgid "Current password" +msgstr "Mevcut parola" + +#: templates/personal.php:16 +msgid "New password" +msgstr "Yeni parola" + +#: templates/personal.php:17 +msgid "show" +msgstr "göster" + +#: templates/personal.php:18 +msgid "Change password" +msgstr "Parola değiştir" + +#: templates/personal.php:24 +msgid "Email" +msgstr "" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:32 templates/personal.php:33 +msgid "Language" +msgstr "Dil" + +#: templates/personal.php:38 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:45 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "bu adresi kullanarak ownCloud unuza dosya yöneticinizle bağlanın" + +#: templates/users.php:15 templates/users.php:30 +msgid "Name" +msgstr "Ad" + +#: templates/users.php:16 templates/users.php:31 +msgid "Password" +msgstr "Parola" + +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 +msgid "Groups" +msgstr "Gruplar" + +#: templates/users.php:23 +msgid "Create" +msgstr "Oluştur" + +#: templates/users.php:33 +msgid "Quota" +msgstr "" + +#: templates/users.php:58 +msgid "Delete" +msgstr "Sil" + + diff --git a/l10n/uk/calendar.po b/l10n/uk/calendar.po new file mode 100644 index 00000000000..e2161b31ea5 --- /dev/null +++ b/l10n/uk/calendar.po @@ -0,0 +1,636 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2011-09-03 16:52+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Ukrainian (http://www.transifex.net/projects/p/owncloud/team/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "" + +#: ajax/settimezone.php:22 +msgid "Timezone changed" +msgstr "" + +#: ajax/settimezone.php:24 +msgid "Invalid request" +msgstr "" + +#: appinfo/app.php:20 templates/calendar.php:14 +#: templates/part.eventform.php:20 +msgid "Calendar" +msgstr "" + +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "" + +#: lib/app.php:60 lib/object.php:332 +msgid "Birthday" +msgstr "" + +#: lib/app.php:61 lib/object.php:333 +msgid "Business" +msgstr "" + +#: lib/app.php:62 lib/object.php:334 +msgid "Call" +msgstr "" + +#: lib/app.php:63 lib/object.php:335 +msgid "Clients" +msgstr "" + +#: lib/app.php:64 lib/object.php:336 +msgid "Deliverer" +msgstr "" + +#: lib/app.php:65 lib/object.php:337 +msgid "Holidays" +msgstr "" + +#: lib/app.php:66 lib/object.php:338 +msgid "Ideas" +msgstr "" + +#: lib/app.php:67 lib/object.php:339 +msgid "Journey" +msgstr "" + +#: lib/app.php:68 lib/object.php:340 +msgid "Jubilee" +msgstr "" + +#: lib/app.php:69 lib/object.php:341 +msgid "Meeting" +msgstr "" + +#: lib/app.php:70 lib/object.php:342 +msgid "Other" +msgstr "" + +#: lib/app.php:71 lib/object.php:343 +msgid "Personal" +msgstr "" + +#: lib/app.php:72 lib/object.php:344 +msgid "Projects" +msgstr "" + +#: lib/app.php:73 lib/object.php:345 +msgid "Questions" +msgstr "" + +#: lib/app.php:74 lib/object.php:346 +msgid "Work" +msgstr "" + +#: lib/object.php:353 +msgid "Does not repeat" +msgstr "" + +#: lib/object.php:354 +msgid "Daily" +msgstr "" + +#: lib/object.php:355 +msgid "Weekly" +msgstr "" + +#: lib/object.php:356 +msgid "Every Weekday" +msgstr "" + +#: lib/object.php:357 +msgid "Bi-Weekly" +msgstr "" + +#: lib/object.php:358 +msgid "Monthly" +msgstr "" + +#: lib/object.php:359 +msgid "Yearly" +msgstr "" + +#: lib/object.php:366 +msgid "never" +msgstr "" + +#: lib/object.php:367 +msgid "by occurrences" +msgstr "" + +#: lib/object.php:368 +msgid "by date" +msgstr "" + +#: lib/object.php:375 +msgid "by monthday" +msgstr "" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "" + +#: lib/object.php:383 templates/lAfix.php:3 +msgid "Monday" +msgstr "" + +#: lib/object.php:384 templates/lAfix.php:4 +msgid "Tuesday" +msgstr "" + +#: lib/object.php:385 templates/lAfix.php:5 +msgid "Wednesday" +msgstr "" + +#: lib/object.php:386 templates/lAfix.php:6 +msgid "Thursday" +msgstr "" + +#: lib/object.php:387 templates/lAfix.php:7 +msgid "Friday" +msgstr "" + +#: lib/object.php:388 templates/lAfix.php:8 +msgid "Saturday" +msgstr "" + +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "" + +#: lib/object.php:396 +msgid "events week of month" +msgstr "" + +#: lib/object.php:397 +msgid "first" +msgstr "" + +#: lib/object.php:398 +msgid "second" +msgstr "" + +#: lib/object.php:399 +msgid "third" +msgstr "" + +#: lib/object.php:400 +msgid "fourth" +msgstr "" + +#: lib/object.php:401 +msgid "fifth" +msgstr "" + +#: lib/object.php:402 +msgid "last" +msgstr "" + +#: lib/object.php:424 templates/lAfix.php:16 +msgid "January" +msgstr "" + +#: lib/object.php:425 templates/lAfix.php:17 +msgid "February" +msgstr "" + +#: lib/object.php:426 templates/lAfix.php:18 +msgid "March" +msgstr "" + +#: lib/object.php:427 templates/lAfix.php:19 +msgid "April" +msgstr "" + +#: lib/object.php:428 templates/lAfix.php:20 +msgid "May" +msgstr "" + +#: lib/object.php:429 templates/lAfix.php:21 +msgid "June" +msgstr "" + +#: lib/object.php:430 templates/lAfix.php:22 +msgid "July" +msgstr "" + +#: lib/object.php:431 templates/lAfix.php:23 +msgid "August" +msgstr "" + +#: lib/object.php:432 templates/lAfix.php:24 +msgid "September" +msgstr "" + +#: lib/object.php:433 templates/lAfix.php:25 +msgid "October" +msgstr "" + +#: lib/object.php:434 templates/lAfix.php:26 +msgid "November" +msgstr "" + +#: lib/object.php:435 templates/lAfix.php:27 +msgid "December" +msgstr "" + +#: lib/object.php:441 +msgid "by events date" +msgstr "" + +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "" + +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "" + +#: lib/object.php:444 +msgid "by day and month" +msgstr "" + +#: lib/object.php:467 +msgid "Not an array" +msgstr "" + +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "" + +#: lib/search.php:40 +msgid "Cal." +msgstr "" + +#: templates/calendar.php:10 +msgid "All day" +msgstr "" + +#: templates/calendar.php:11 templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "" + +#: templates/calendar.php:12 +msgid "Missing fields" +msgstr "" + +#: templates/calendar.php:13 templates/part.eventform.php:3 +msgid "Title" +msgstr "" + +#: templates/calendar.php:15 +msgid "From Date" +msgstr "" + +#: templates/calendar.php:16 +msgid "From Time" +msgstr "" + +#: templates/calendar.php:17 +msgid "To Date" +msgstr "" + +#: templates/calendar.php:18 +msgid "To Time" +msgstr "" + +#: templates/calendar.php:19 +msgid "The event ends before it starts" +msgstr "" + +#: templates/calendar.php:20 +msgid "There was a database fail" +msgstr "" + +#: templates/calendar.php:38 +msgid "Week" +msgstr "" + +#: templates/calendar.php:39 +msgid "Month" +msgstr "" + +#: templates/calendar.php:40 +msgid "List" +msgstr "" + +#: templates/calendar.php:46 +msgid "Today" +msgstr "" + +#: templates/calendar.php:47 +msgid "Calendars" +msgstr "" + +#: templates/calendar.php:65 +msgid "There was a fail, while parsing the file." +msgstr "" + +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "" + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "" + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "" + +#: templates/lAfix.php:32 +msgid "May." +msgstr "" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "" + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "" + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "" + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "" + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "" + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "" + +#: templates/part.choosecalendar.php:1 +msgid "Choose active calendars" +msgstr "" + +#: templates/part.choosecalendar.php:20 +#: templates/part.choosecalendar.rowfields.php:4 +msgid "CalDav Link" +msgstr "" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Download" +msgstr "" + +#: templates/part.choosecalendar.rowfields.php:4 +msgid "Edit" +msgstr "" + +#: templates/part.choosecalendar.rowfields.php:4 +#: templates/part.editevent.php:9 +msgid "Delete" +msgstr "" + +#: templates/part.editcalendar.php:9 +msgid "New calendar" +msgstr "" + +#: templates/part.editcalendar.php:9 +msgid "Edit calendar" +msgstr "" + +#: templates/part.editcalendar.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editcalendar.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editcalendar.php:29 +msgid "Calendar color" +msgstr "" + +#: templates/part.editcalendar.php:42 +msgid "Save" +msgstr "" + +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 +#: templates/part.newevent.php:6 +msgid "Submit" +msgstr "" + +#: templates/part.editcalendar.php:43 +msgid "Cancel" +msgstr "" + +#: templates/part.editevent.php:1 +msgid "Edit an event" +msgstr "" + +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "" + +#: templates/part.eventform.php:5 +msgid "Title of the Event" +msgstr "" + +#: templates/part.eventform.php:11 +msgid "Category" +msgstr "" + +#: templates/part.eventform.php:13 +msgid "Select category" +msgstr "" + +#: templates/part.eventform.php:37 +msgid "All Day Event" +msgstr "" + +#: templates/part.eventform.php:41 +msgid "From" +msgstr "" + +#: templates/part.eventform.php:49 +msgid "To" +msgstr "" + +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "" + +#: templates/part.eventform.php:61 +msgid "Repeat" +msgstr "" + +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "" + +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "" + +#: templates/part.eventform.php:218 +msgid "Description of the Event" +msgstr "" + +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "" + +#: templates/part.newevent.php:1 +msgid "Create a new event" +msgstr "" + +#: templates/settings.php:13 +msgid "Timezone" +msgstr "" + +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "" + +#: templates/settings.php:34 +msgid "24h" +msgstr "" + +#: templates/settings.php:35 +msgid "12h" +msgstr "" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "" + + diff --git a/l10n/uk/contacts.po b/l10n/uk/contacts.po new file mode 100644 index 00000000000..4c495ff147d --- /dev/null +++ b/l10n/uk/contacts.po @@ -0,0 +1,281 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Ukrainian (http://www.transifex.net/projects/p/owncloud/team/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." +msgstr "" + +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "" + +#: lib/app.php:52 +msgid "This is not your addressbook." +msgstr "" + +#: lib/app.php:61 photo.php:36 +msgid "Contact could not be found." +msgstr "" + +#: lib/app.php:89 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 +msgid "Address" +msgstr "" + +#: lib/app.php:102 templates/part.addcardform.php:43 +msgid "Telephone" +msgstr "" + +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 +msgid "Email" +msgstr "" + +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 +msgid "Organization" +msgstr "" + +#: lib/app.php:116 lib/app.php:123 +msgid "Work" +msgstr "" + +#: lib/app.php:117 lib/app.php:121 +msgid "Home" +msgstr "" + +#: lib/app.php:122 +msgid "Mobile" +msgstr "" + +#: lib/app.php:124 +msgid "Text" +msgstr "" + +#: lib/app.php:125 +msgid "Voice" +msgstr "" + +#: lib/app.php:126 +msgid "Fax" +msgstr "" + +#: lib/app.php:127 +msgid "Video" +msgstr "" + +#: lib/app.php:128 +msgid "Pager" +msgstr "" + +#: lib/search.php:22 +msgid "Contact" +msgstr "" + +#: photo.php:42 +msgid "This is not your contact." +msgstr "" + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "" + +#: templates/part.property.php:3 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "" + + diff --git a/l10n/uk/core.po b/l10n/uk/core.po new file mode 100644 index 00000000000..3ede91110b1 --- /dev/null +++ b/l10n/uk/core.po @@ -0,0 +1,170 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:25+0100\n" +"PO-Revision-Date: 2011-07-25 16:05+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Ukrainian (http://www.transifex.net/projects/p/owncloud/team/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "" + +#: templates/installation.php:20 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:26 templates/login.php:12 +msgid "Password" +msgstr "" + +#: templates/installation.php:32 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:34 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "" + +#: templates/installation.php:79 +msgid "Database user" +msgstr "" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "" + +#: templates/installation.php:98 +msgid "Finish setup" +msgstr "" + +#: templates/layout.guest.php:35 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:34 +msgid "Log out" +msgstr "" + +#: templates/layout.user.php:46 templates/layout.user.php:47 +msgid "Settings" +msgstr "" + +#: templates/login.php:5 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:15 +msgid "remember" +msgstr "" + +#: templates/login.php:16 +msgid "Log in" +msgstr "" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "" + + diff --git a/l10n/uk/files.po b/l10n/uk/files.po new file mode 100644 index 00000000000..94b976dd1d6 --- /dev/null +++ b/l10n/uk/files.po @@ -0,0 +1,108 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:25+0100\n" +"PO-Revision-Date: 2011-08-13 02:19+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Ukrainian (http://www.transifex.net/projects/p/owncloud/team/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: ajax/upload.php:19 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:20 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "" + +#: ajax/upload.php:21 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:22 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:23 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:24 +msgid "Missing a temporary folder" +msgstr "" + +#: appinfo/app.php:8 +msgid "Files" +msgstr "" + +#: templates/admin.php:5 +msgid "Maximum upload size" +msgstr "" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:11 +msgid "Folder" +msgstr "" + +#: templates/index.php:12 +msgid "From the web" +msgstr "" + +#: templates/index.php:22 +msgid "Upload" +msgstr "" + +#: templates/index.php:35 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:43 +msgid "Name" +msgstr "" + +#: templates/index.php:45 +msgid "Download" +msgstr "" + +#: templates/index.php:49 +msgid "Size" +msgstr "" + +#: templates/index.php:50 +msgid "Modified" +msgstr "" + +#: templates/index.php:50 +msgid "Delete" +msgstr "" + +#: templates/index.php:58 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:60 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + + diff --git a/l10n/uk/gallery.po b/l10n/uk/gallery.po new file mode 100644 index 00000000000..e39e12e2343 --- /dev/null +++ b/l10n/uk/gallery.po @@ -0,0 +1,52 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Ukrainian (http://www.transifex.net/projects/p/owncloud/team/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "" + + diff --git a/l10n/uk/media.po b/l10n/uk/media.po new file mode 100644 index 00000000000..5f7b442b171 --- /dev/null +++ b/l10n/uk/media.po @@ -0,0 +1,64 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:25+0100\n" +"PO-Revision-Date: 2011-08-13 02:19+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Ukrainian (http://www.transifex.net/projects/p/owncloud/team/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: appinfo/app.php:32 templates/player.php:9 +msgid "Music" +msgstr "" + +#: templates/music.php:3 templates/player.php:13 +msgid "Play" +msgstr "" + +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 +msgid "Pause" +msgstr "" + +#: templates/music.php:5 +msgid "Previous" +msgstr "" + +#: templates/music.php:6 templates/player.php:15 +msgid "Next" +msgstr "" + +#: templates/music.php:7 +msgid "Mute" +msgstr "" + +#: templates/music.php:8 +msgid "Unmute" +msgstr "" + +#: templates/music.php:25 +msgid "Rescan Collection" +msgstr "" + +#: templates/music.php:37 +msgid "Artist" +msgstr "" + +#: templates/music.php:38 +msgid "Album" +msgstr "" + +#: templates/music.php:39 +msgid "Title" +msgstr "" + + diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po new file mode 100644 index 00000000000..6fa57d5c321 --- /dev/null +++ b/l10n/uk/settings.po @@ -0,0 +1,156 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:25+0100\n" +"PO-Revision-Date: 2011-07-25 16:05+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Ukrainian (http://www.transifex.net/projects/p/owncloud/team/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "" + +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 +msgid "Invalid request" +msgstr "" + +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "" + +#: ajax/setlanguage.php:14 +msgid "Language changed" +msgstr "" + +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "" + +#: templates/apps.php:8 +msgid "Add your application" +msgstr "" + +#: templates/apps.php:21 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:23 +msgid "-licensed" +msgstr "" + +#: templates/apps.php:23 +msgid "by" +msgstr "" + +#: templates/help.php:8 +msgid "Ask a question" +msgstr "" + +#: templates/help.php:20 +msgid "Problems connecting to help database." +msgstr "" + +#: templates/help.php:21 +msgid "Go there manually." +msgstr "" + +#: templates/help.php:29 +msgid "Answer" +msgstr "" + +#: templates/personal.php:8 +msgid "You use" +msgstr "" + +#: templates/personal.php:8 +msgid "of the available" +msgstr "" + +#: templates/personal.php:13 +msgid "Your password got changed" +msgstr "" + +#: templates/personal.php:14 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:15 +msgid "Current password" +msgstr "" + +#: templates/personal.php:16 +msgid "New password" +msgstr "" + +#: templates/personal.php:17 +msgid "show" +msgstr "" + +#: templates/personal.php:18 +msgid "Change password" +msgstr "" + +#: templates/personal.php:24 +msgid "Email" +msgstr "" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:32 templates/personal.php:33 +msgid "Language" +msgstr "" + +#: templates/personal.php:38 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:45 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/users.php:15 templates/users.php:30 +msgid "Name" +msgstr "" + +#: templates/users.php:16 templates/users.php:31 +msgid "Password" +msgstr "" + +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 +msgid "Groups" +msgstr "" + +#: templates/users.php:23 +msgid "Create" +msgstr "" + +#: templates/users.php:33 +msgid "Quota" +msgstr "" + +#: templates/users.php:58 +msgid "Delete" +msgstr "" + + diff --git a/l10n/zh_CN/calendar.po b/l10n/zh_CN/calendar.po index 7e2d49b529b..a80e877b379 100644 --- a/l10n/zh_CN/calendar.po +++ b/l10n/zh_CN/calendar.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011. +# , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-22 07:42+0000\n" +"Last-Translator: csslayer \n" "Language-Team: Chinese (China) (http://www.transifex.net/projects/p/owncloud/team/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,351 +18,432 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0\n" -#: ajax/createcalendar.php:18 ajax/settimezone.php:19 -#: ajax/updatecalendar.php:18 -msgid "Authentication error" -msgstr "验证错误" +#: ajax/guesstimezone.php:42 +msgid "New Timezone:" +msgstr "新时区:" -#: ajax/editeventform.php:25 -msgid "Wrong calendar" -msgstr "" - -#: ajax/settimezone.php:27 +#: ajax/settimezone.php:22 msgid "Timezone changed" msgstr "时区已修改" -#: ajax/settimezone.php:29 +#: ajax/settimezone.php:24 msgid "Invalid request" msgstr "非法请求" -#: appinfo/app.php:19 templates/part.eventform.php:27 -#: templates/part.eventinfo.php:18 +#: appinfo/app.php:20 templates/calendar.php:14 +#: templates/part.eventform.php:20 msgid "Calendar" msgstr "日历" -#: lib/object.php:292 +#: lib/app.php:19 +msgid "Wrong calendar" +msgstr "错误的日历" + +#: lib/app.php:60 lib/object.php:332 msgid "Birthday" -msgstr "" +msgstr "生日" -#: lib/object.php:293 +#: lib/app.php:61 lib/object.php:333 msgid "Business" -msgstr "" +msgstr "商务" -#: lib/object.php:294 +#: lib/app.php:62 lib/object.php:334 msgid "Call" -msgstr "" +msgstr "呼叫" -#: lib/object.php:295 +#: lib/app.php:63 lib/object.php:335 msgid "Clients" -msgstr "" +msgstr "客户" -#: lib/object.php:296 +#: lib/app.php:64 lib/object.php:336 msgid "Deliverer" -msgstr "" +msgstr "派送" -#: lib/object.php:297 +#: lib/app.php:65 lib/object.php:337 msgid "Holidays" -msgstr "" +msgstr "节日" -#: lib/object.php:298 +#: lib/app.php:66 lib/object.php:338 msgid "Ideas" -msgstr "" +msgstr "想法" -#: lib/object.php:299 +#: lib/app.php:67 lib/object.php:339 msgid "Journey" -msgstr "" +msgstr "旅行" -#: lib/object.php:300 +#: lib/app.php:68 lib/object.php:340 msgid "Jubilee" -msgstr "" +msgstr "周年纪念" -#: lib/object.php:301 +#: lib/app.php:69 lib/object.php:341 msgid "Meeting" -msgstr "" +msgstr "会议" -#: lib/object.php:302 +#: lib/app.php:70 lib/object.php:342 msgid "Other" -msgstr "" +msgstr "其他" -#: lib/object.php:303 +#: lib/app.php:71 lib/object.php:343 msgid "Personal" -msgstr "" +msgstr "个人" -#: lib/object.php:304 +#: lib/app.php:72 lib/object.php:344 msgid "Projects" -msgstr "" +msgstr "项目" -#: lib/object.php:305 +#: lib/app.php:73 lib/object.php:345 msgid "Questions" -msgstr "" +msgstr "问题" -#: lib/object.php:306 +#: lib/app.php:74 lib/object.php:346 msgid "Work" -msgstr "" +msgstr "工作" -#: lib/object.php:313 +#: lib/object.php:353 msgid "Does not repeat" msgstr "不重复" -#: lib/object.php:314 +#: lib/object.php:354 msgid "Daily" msgstr "每天" -#: lib/object.php:315 +#: lib/object.php:355 msgid "Weekly" msgstr "每周" -#: lib/object.php:316 +#: lib/object.php:356 msgid "Every Weekday" msgstr "每个工作日" -#: lib/object.php:317 +#: lib/object.php:357 msgid "Bi-Weekly" msgstr "每两周" -#: lib/object.php:318 +#: lib/object.php:358 msgid "Monthly" msgstr "每月" -#: lib/object.php:319 +#: lib/object.php:359 msgid "Yearly" msgstr "每年" -#: lib/object.php:337 -msgid "Not an array" -msgstr "" +#: lib/object.php:366 +msgid "never" +msgstr "从不" -#: templates/calendar.php:3 -msgid "All day" -msgstr "全天" +#: lib/object.php:367 +msgid "by occurrences" +msgstr "按发生次数" -#: templates/calendar.php:32 -msgid "Sunday" -msgstr "星期日" +#: lib/object.php:368 +msgid "by date" +msgstr "按日期" -#: templates/calendar.php:32 +#: lib/object.php:375 +msgid "by monthday" +msgstr "按月的某天" + +#: lib/object.php:376 +msgid "by weekday" +msgstr "按星期的某天" + +#: lib/object.php:383 templates/lAfix.php:3 msgid "Monday" msgstr "星期一" -#: templates/calendar.php:32 +#: lib/object.php:384 templates/lAfix.php:4 msgid "Tuesday" msgstr "星期二" -#: templates/calendar.php:32 +#: lib/object.php:385 templates/lAfix.php:5 msgid "Wednesday" msgstr "星期三" -#: templates/calendar.php:32 +#: lib/object.php:386 templates/lAfix.php:6 msgid "Thursday" msgstr "星期四" -#: templates/calendar.php:32 +#: lib/object.php:387 templates/lAfix.php:7 msgid "Friday" msgstr "星期五" -#: templates/calendar.php:32 +#: lib/object.php:388 templates/lAfix.php:8 msgid "Saturday" msgstr "星期六" -#: templates/calendar.php:33 -msgid "Sun." -msgstr "日" +#: lib/object.php:389 templates/lAfix.php:2 +msgid "Sunday" +msgstr "星期日" -#: templates/calendar.php:33 -msgid "Mon." -msgstr "一" +#: lib/object.php:396 +msgid "events week of month" +msgstr "事件在每月的第几个星期" -#: templates/calendar.php:33 -msgid "Tue." -msgstr "二" +#: lib/object.php:397 +msgid "first" +msgstr "第一" -#: templates/calendar.php:33 -msgid "Wed." -msgstr "三" +#: lib/object.php:398 +msgid "second" +msgstr "第二" -#: templates/calendar.php:33 -msgid "Thu." -msgstr "四" +#: lib/object.php:399 +msgid "third" +msgstr "第三" -#: templates/calendar.php:33 -msgid "Fri." -msgstr "五" +#: lib/object.php:400 +msgid "fourth" +msgstr "第四" -#: templates/calendar.php:33 -msgid "Sat." -msgstr "六" +#: lib/object.php:401 +msgid "fifth" +msgstr "第五" -#: templates/calendar.php:34 +#: lib/object.php:402 +msgid "last" +msgstr "最后" + +#: lib/object.php:424 templates/lAfix.php:16 msgid "January" -msgstr "1月" +msgstr "一月" -#: templates/calendar.php:34 +#: lib/object.php:425 templates/lAfix.php:17 msgid "February" -msgstr "2月" +msgstr "二月" -#: templates/calendar.php:34 +#: lib/object.php:426 templates/lAfix.php:18 msgid "March" -msgstr "3月" +msgstr "三月" -#: templates/calendar.php:34 +#: lib/object.php:427 templates/lAfix.php:19 msgid "April" -msgstr "4月" +msgstr "四月" -#: templates/calendar.php:34 +#: lib/object.php:428 templates/lAfix.php:20 msgid "May" -msgstr "5月" +msgstr "五月" -#: templates/calendar.php:34 +#: lib/object.php:429 templates/lAfix.php:21 msgid "June" -msgstr "6月" +msgstr "六月" -#: templates/calendar.php:34 +#: lib/object.php:430 templates/lAfix.php:22 msgid "July" -msgstr "7月" +msgstr "七月" -#: templates/calendar.php:34 +#: lib/object.php:431 templates/lAfix.php:23 msgid "August" -msgstr "8月" +msgstr "八月" -#: templates/calendar.php:34 +#: lib/object.php:432 templates/lAfix.php:24 msgid "September" -msgstr "9月" +msgstr "九月" -#: templates/calendar.php:34 +#: lib/object.php:433 templates/lAfix.php:25 msgid "October" -msgstr "10月" +msgstr "十月" -#: templates/calendar.php:34 +#: lib/object.php:434 templates/lAfix.php:26 msgid "November" -msgstr "11月" +msgstr "十一月" -#: templates/calendar.php:34 +#: lib/object.php:435 templates/lAfix.php:27 msgid "December" -msgstr "12月" +msgstr "十二月" -#: templates/calendar.php:35 -msgid "Jan." -msgstr "1月" +#: lib/object.php:441 +msgid "by events date" +msgstr "按事件日期" -#: templates/calendar.php:35 -msgid "Feb." -msgstr "2月" +#: lib/object.php:442 +msgid "by yearday(s)" +msgstr "按每年的某天" -#: templates/calendar.php:35 -msgid "Mar." -msgstr "3月" +#: lib/object.php:443 +msgid "by weeknumber(s)" +msgstr "按星期数" -#: templates/calendar.php:35 -msgid "Apr." -msgstr "4月" +#: lib/object.php:444 +msgid "by day and month" +msgstr "按天和月份" -#: templates/calendar.php:35 -msgid "May." -msgstr "" +#: lib/object.php:467 +msgid "Not an array" +msgstr "不是一个数组" -#: templates/calendar.php:35 -msgid "Jun." -msgstr "6月" +#: lib/search.php:32 lib/search.php:34 lib/search.php:37 +msgid "Date" +msgstr "日期" -#: templates/calendar.php:35 -msgid "Jul." -msgstr "7月" +#: lib/search.php:40 +msgid "Cal." +msgstr "日历" -#: templates/calendar.php:35 -msgid "Aug." -msgstr "8月" +#: templates/calendar.php:10 +msgid "All day" +msgstr "全天" -#: templates/calendar.php:35 -msgid "Sep." -msgstr "9月" +#: templates/calendar.php:11 templates/part.choosecalendar.php:15 +msgid "New Calendar" +msgstr "新日历" -#: templates/calendar.php:35 -msgid "Oct." -msgstr "10月" +#: templates/calendar.php:12 +msgid "Missing fields" +msgstr "缺少字段" -#: templates/calendar.php:35 -msgid "Nov." -msgstr "11月" +#: templates/calendar.php:13 templates/part.eventform.php:3 +msgid "Title" +msgstr "标题" -#: templates/calendar.php:35 -msgid "Dec." -msgstr "12月" +#: templates/calendar.php:15 +msgid "From Date" +msgstr "从" -#: templates/calendar.php:36 templates/calendar.php:50 -#: templates/calendar.php:116 +#: templates/calendar.php:16 +msgid "From Time" +msgstr "从" + +#: templates/calendar.php:17 +msgid "To Date" +msgstr "至" + +#: templates/calendar.php:18 +msgid "To Time" +msgstr "至" + +#: templates/calendar.php:19 +msgid "The event ends before it starts" +msgstr "事件在开始前已结束" + +#: templates/calendar.php:20 +msgid "There was a database fail" +msgstr "数据库访问失败" + +#: templates/calendar.php:38 msgid "Week" msgstr "星期" -#: templates/calendar.php:37 templates/calendar.php:51 -msgid "Weeks" -msgstr "星期" - -#: templates/calendar.php:38 -msgid "More before {startdate}" -msgstr "" - #: templates/calendar.php:39 -msgid "More after {enddate}" -msgstr "" - -#: templates/calendar.php:49 -msgid "Day" -msgstr "天" - -#: templates/calendar.php:52 msgid "Month" msgstr "月" -#: templates/calendar.php:53 +#: templates/calendar.php:40 msgid "List" -msgstr "" +msgstr "列表" -#: templates/calendar.php:58 +#: templates/calendar.php:46 msgid "Today" msgstr "今天" -#: templates/calendar.php:59 +#: templates/calendar.php:47 msgid "Calendars" msgstr "日历" -#: templates/calendar.php:76 templates/calendar.php:94 -msgid "Time" -msgstr "时间" - -#: templates/calendar.php:169 +#: templates/calendar.php:65 msgid "There was a fail, while parsing the file." msgstr "解析文件失败" +#: templates/lAfix.php:9 +msgid "Sun." +msgstr "周日" + +#: templates/lAfix.php:10 +msgid "Mon." +msgstr "周一" + +#: templates/lAfix.php:11 +msgid "Tue." +msgstr "周二" + +#: templates/lAfix.php:12 +msgid "Wed." +msgstr "周三" + +#: templates/lAfix.php:13 +msgid "Thu." +msgstr "周四" + +#: templates/lAfix.php:14 +msgid "Fri." +msgstr "周五" + +#: templates/lAfix.php:15 +msgid "Sat." +msgstr "周六" + +#: templates/lAfix.php:28 +msgid "Jan." +msgstr "1月" + +#: templates/lAfix.php:29 +msgid "Feb." +msgstr "2月" + +#: templates/lAfix.php:30 +msgid "Mar." +msgstr "3月" + +#: templates/lAfix.php:31 +msgid "Apr." +msgstr "4月" + +#: templates/lAfix.php:32 +msgid "May." +msgstr "5月" + +#: templates/lAfix.php:33 +msgid "Jun." +msgstr "6月" + +#: templates/lAfix.php:34 +msgid "Jul." +msgstr "7月" + +#: templates/lAfix.php:35 +msgid "Aug." +msgstr "8月" + +#: templates/lAfix.php:36 +msgid "Sep." +msgstr "9月" + +#: templates/lAfix.php:37 +msgid "Oct." +msgstr "10月" + +#: templates/lAfix.php:38 +msgid "Nov." +msgstr "11月" + +#: templates/lAfix.php:39 +msgid "Dec." +msgstr "12月" + #: templates/part.choosecalendar.php:1 msgid "Choose active calendars" msgstr "选择活动日历" -#: templates/part.choosecalendar.php:15 -msgid "New Calendar" -msgstr "" - #: templates/part.choosecalendar.php:20 #: templates/part.choosecalendar.rowfields.php:4 msgid "CalDav Link" -msgstr "" +msgstr "CalDav 链接" #: templates/part.choosecalendar.rowfields.php:4 msgid "Download" msgstr "下载" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.eventinfo.php:64 msgid "Edit" msgstr "编辑" #: templates/part.choosecalendar.rowfields.php:4 -#: templates/part.editevent.php:8 +#: templates/part.editevent.php:9 msgid "Delete" -msgstr "" +msgstr "删除" #: templates/part.editcalendar.php:9 msgid "New calendar" -msgstr "" +msgstr "新日历" #: templates/part.editcalendar.php:9 msgid "Edit calendar" @@ -376,90 +457,181 @@ msgstr "显示名称" msgid "Active" msgstr "激活" -#: templates/part.editcalendar.php:29 templates/part.eventform.php:88 -#: templates/part.eventinfo.php:58 -msgid "Description" -msgstr "描述" - -#: templates/part.editcalendar.php:35 +#: templates/part.editcalendar.php:29 msgid "Calendar color" msgstr "日历颜色" -#: templates/part.editcalendar.php:41 +#: templates/part.editcalendar.php:42 msgid "Save" -msgstr "" +msgstr "保存" -#: templates/part.editcalendar.php:41 templates/part.editevent.php:7 +#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 #: templates/part.newevent.php:6 msgid "Submit" msgstr "提交" -#: templates/part.editcalendar.php:42 +#: templates/part.editcalendar.php:43 msgid "Cancel" -msgstr "" +msgstr "取消" -#: templates/part.editevent.php:1 templates/part.eventinfo.php:1 +#: templates/part.editevent.php:1 msgid "Edit an event" msgstr "编辑事件" -#: templates/part.eventform.php:3 templates/part.eventinfo.php:4 -msgid "Title" -msgstr "标题" +#: templates/part.editevent.php:10 +msgid "Export" +msgstr "导出" #: templates/part.eventform.php:5 msgid "Title of the Event" msgstr "事件标题" -#: templates/part.eventform.php:9 templates/part.eventinfo.php:9 -msgid "Location" -msgstr "地点" - #: templates/part.eventform.php:11 -msgid "Location of the Event" -msgstr "事件地点" - -#: templates/part.eventform.php:17 templates/part.eventinfo.php:16 msgid "Category" msgstr "分类" -#: templates/part.eventform.php:19 +#: templates/part.eventform.php:13 msgid "Select category" -msgstr "" +msgstr "选择分类" -#: templates/part.eventform.php:45 templates/part.eventinfo.php:28 +#: templates/part.eventform.php:37 msgid "All Day Event" msgstr "全天事件" -#: templates/part.eventform.php:49 templates/part.eventinfo.php:31 +#: templates/part.eventform.php:41 msgid "From" msgstr "自" -#: templates/part.eventform.php:57 templates/part.eventinfo.php:38 +#: templates/part.eventform.php:49 msgid "To" msgstr "至" -#: templates/part.eventform.php:65 templates/part.eventinfo.php:44 +#: templates/part.eventform.php:57 +msgid "Advanced options" +msgstr "高级选项" + +#: templates/part.eventform.php:61 msgid "Repeat" msgstr "重复" -#: templates/part.eventform.php:81 templates/part.eventinfo.php:51 -msgid "Attendees" -msgstr "参加者" +#: templates/part.eventform.php:68 +msgid "Advanced" +msgstr "高级" -#: templates/part.eventform.php:89 +#: templates/part.eventform.php:112 +msgid "Select weekdays" +msgstr "选择星期中的某天" + +#: templates/part.eventform.php:125 templates/part.eventform.php:138 +msgid "Select days" +msgstr "选择某天" + +#: templates/part.eventform.php:130 +msgid "and the events day of year." +msgstr "选择每年事件发生的日子" + +#: templates/part.eventform.php:143 +msgid "and the events day of month." +msgstr "选择每月事件发生的日子" + +#: templates/part.eventform.php:151 +msgid "Select months" +msgstr "选择月份" + +#: templates/part.eventform.php:164 +msgid "Select weeks" +msgstr "选择星期" + +#: templates/part.eventform.php:169 +msgid "and the events week of year." +msgstr "选择每年的事件发生的星期" + +#: templates/part.eventform.php:175 +msgid "Interval" +msgstr "间隔" + +#: templates/part.eventform.php:181 +msgid "End" +msgstr "结束" + +#: templates/part.eventform.php:193 +msgid "occurrences" +msgstr "次" + +#: templates/part.eventform.php:208 +msgid "Location" +msgstr "地点" + +#: templates/part.eventform.php:210 +msgid "Location of the Event" +msgstr "事件地点" + +#: templates/part.eventform.php:216 +msgid "Description" +msgstr "描述" + +#: templates/part.eventform.php:218 msgid "Description of the Event" msgstr "事件描述" -#: templates/part.eventinfo.php:63 -msgid "Close" -msgstr "关闭" +#: templates/part.import.php:1 +msgid "Import a calendar file" +msgstr "导入日历文件" + +#: templates/part.import.php:6 +msgid "Please choose the calendar" +msgstr "请选择日历" + +#: templates/part.import.php:10 +msgid "create a new calendar" +msgstr "创建新日历" + +#: templates/part.import.php:15 +msgid "Name of new calendar" +msgstr "新日历名称" + +#: templates/part.import.php:17 +msgid "Import" +msgstr "导入" + +#: templates/part.import.php:20 +msgid "Importing calendar" +msgstr "导入日历" + +#: templates/part.import.php:23 +msgid "Calendar imported successfully" +msgstr "导入日历成功" + +#: templates/part.import.php:24 +msgid "Close Dialog" +msgstr "关闭对话框" #: templates/part.newevent.php:1 msgid "Create a new event" msgstr "创建新事件" -#: templates/settings.php:11 +#: templates/settings.php:13 msgid "Timezone" msgstr "时区" +#: templates/settings.php:30 +msgid "Check always for changes of the timezone" +msgstr "选中则总是按照时区变化" + +#: templates/settings.php:32 +msgid "Timeformat" +msgstr "时间格式" + +#: templates/settings.php:34 +msgid "24h" +msgstr "24小时" + +#: templates/settings.php:35 +msgid "12h" +msgstr "12小时" + +#: templates/settings.php:41 +msgid "Calendar CalDAV syncing address:" +msgstr "日历CalDAV 同步地址:" + diff --git a/l10n/zh_CN/contacts.po b/l10n/zh_CN/contacts.po index 1fd7ecb9646..e2f1c8d81b8 100644 --- a/l10n/zh_CN/contacts.po +++ b/l10n/zh_CN/contacts.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 20:10+0200\n" -"PO-Revision-Date: 2011-09-23 18:10+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" "Language-Team: Chinese (China) (http://www.transifex.net/projects/p/owncloud/team/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,164 +18,265 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0\n" -#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 -#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 -#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 -#: ajax/showsetproperty.php:32 photo.php:32 -msgid "You need to log in." -msgstr "" +#: ajax/activation.php:17 ajax/updateaddressbook.php:26 +msgid "Error (de)activating addressbook." +msgstr "(取消)激活地址簿错误。" -#: ajax/addcard.php:37 +#: ajax/addcard.php:79 +msgid "There was an error adding the contact." +msgstr "添加联系人时出错。" + +#: ajax/addproperty.php:39 +msgid "Cannot add empty property." +msgstr "无法添加空属性。" + +#: ajax/addproperty.php:51 +msgid "At least one of the address fields has to be filled out." +msgstr "至少需要填写一项地址。" + +#: ajax/addproperty.php:78 +msgid "Error adding contact property." +msgstr "添加联系人属性错误。" + +#: ajax/createaddressbook.php:20 +msgid "Error adding addressbook." +msgstr "添加地址簿错误。" + +#: ajax/createaddressbook.php:26 +msgid "Error activating addressbook." +msgstr "激活地址簿错误。" + +#: ajax/deleteproperty.php:40 +msgid "Error deleting contact property." +msgstr "删除联系人属性错误。" + +#: ajax/setproperty.php:79 +msgid "Error updating contact property." +msgstr "更新联系人属性错误。" + +#: ajax/updateaddressbook.php:20 +msgid "Error updating addressbook." +msgstr "更新地址簿错误" + +#: appinfo/app.php:21 templates/settings.php:3 +msgid "Contacts" +msgstr "联系人" + +#: lib/app.php:52 msgid "This is not your addressbook." -msgstr "" +msgstr "这不是您的地址簿。" -#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 -#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 -#: ajax/showsetproperty.php:38 photo.php:39 +#: lib/app.php:61 photo.php:36 msgid "Contact could not be found." -msgstr "" +msgstr "无法找到联系人。" -#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 -#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 -#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 -msgid "This is not your contact." -msgstr "" - -#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 -#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 -msgid "vCard could not be read." -msgstr "" - -#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 -#: ajax/showsetproperty.php:62 +#: lib/app.php:89 msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" +msgstr "vCard 的信息不正确。请重新加载页面。" -#: photo.php:53 -msgid "This card is not RFC compatible." -msgstr "" - -#: photo.php:90 -msgid "This card does not contain a photo." -msgstr "" - -#: templates/index.php:8 -msgid "Add Contact" -msgstr "" - -#: templates/part.addcardform.php:5 -msgid "Group" -msgstr "" - -#: templates/part.addcardform.php:12 templates/part.property.php:3 -msgid "Name" -msgstr "" - -#: templates/part.addcardform.php:14 -msgid "Create Contact" -msgstr "" - -#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +#: lib/app.php:101 templates/part.addcardform.php:54 +#: templates/part.property.php:45 templates/part.setpropertyform.php:7 msgid "Address" -msgstr "" +msgstr "地址" -#: templates/part.addpropertyform.php:5 +#: lib/app.php:102 templates/part.addcardform.php:43 msgid "Telephone" -msgstr "" +msgstr "电话" -#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +#: lib/app.php:103 templates/part.addcardform.php:37 +#: templates/part.property.php:16 templates/part.setpropertyform.php:51 msgid "Email" -msgstr "" +msgstr "电子邮件" -#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +#: lib/app.php:104 templates/part.addcardform.php:27 +#: templates/part.property.php:9 templates/part.setpropertyform.php:54 msgid "Organization" -msgstr "" +msgstr "组织" -#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +#: lib/app.php:116 lib/app.php:123 msgid "Work" -msgstr "" +msgstr "工作" -#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +#: lib/app.php:117 lib/app.php:121 msgid "Home" -msgstr "" +msgstr "家庭" -#: templates/part.addpropertyform.php:20 templates/part.property.php:48 -#: templates/part.setpropertyform.php:5 -msgid "PO Box" -msgstr "" - -#: templates/part.addpropertyform.php:21 templates/part.property.php:51 -#: templates/part.setpropertyform.php:6 -msgid "Extended" -msgstr "" - -#: templates/part.addpropertyform.php:22 templates/part.property.php:54 -#: templates/part.setpropertyform.php:7 -msgid "Street" -msgstr "" - -#: templates/part.addpropertyform.php:23 templates/part.property.php:57 -#: templates/part.setpropertyform.php:8 -msgid "City" -msgstr "" - -#: templates/part.addpropertyform.php:24 templates/part.property.php:60 -#: templates/part.setpropertyform.php:9 -msgid "Region" -msgstr "" - -#: templates/part.addpropertyform.php:25 templates/part.property.php:63 -#: templates/part.setpropertyform.php:10 -msgid "Zipcode" -msgstr "" - -#: templates/part.addpropertyform.php:26 templates/part.property.php:66 -#: templates/part.setpropertyform.php:11 -msgid "Country" -msgstr "" - -#: templates/part.addpropertyform.php:31 +#: lib/app.php:122 msgid "Mobile" -msgstr "" +msgstr "移动电话" -#: templates/part.addpropertyform.php:33 +#: lib/app.php:124 msgid "Text" -msgstr "" +msgstr "文本" -#: templates/part.addpropertyform.php:34 +#: lib/app.php:125 msgid "Voice" -msgstr "" +msgstr "语音" -#: templates/part.addpropertyform.php:35 +#: lib/app.php:126 msgid "Fax" -msgstr "" +msgstr "传真" -#: templates/part.addpropertyform.php:36 +#: lib/app.php:127 msgid "Video" -msgstr "" +msgstr "视频" -#: templates/part.addpropertyform.php:37 +#: lib/app.php:128 msgid "Pager" -msgstr "" +msgstr "传呼机" -#: templates/part.details.php:33 +#: lib/search.php:22 +msgid "Contact" +msgstr "联系人" + +#: photo.php:42 +msgid "This is not your contact." +msgstr "这不是您的联系人。" + +#: templates/index.php:6 +msgid "Add Contact" +msgstr "添加联系人" + +#: templates/index.php:7 +msgid "Addressbooks" +msgstr "地址簿" + +#: templates/part.addcardform.php:8 +msgid "Addressbook" +msgstr "地址簿" + +#: templates/part.addcardform.php:21 +msgid "Name" +msgstr "名称" + +#: templates/part.addcardform.php:57 templates/part.details.php:43 +#: templates/part.details.php:79 templates/part.setpropertyform.php:10 +#: templates/part.setpropertyform.php:47 +msgid "Type" +msgstr "类型" + +#: templates/part.addcardform.php:65 templates/part.details.php:49 +#: templates/part.setpropertyform.php:16 +msgid "PO Box" +msgstr "邮箱" + +#: templates/part.addcardform.php:72 templates/part.details.php:53 +#: templates/part.setpropertyform.php:20 +msgid "Extended" +msgstr "扩展" + +#: templates/part.addcardform.php:78 templates/part.details.php:57 +#: templates/part.setpropertyform.php:24 +msgid "Street" +msgstr "街道" + +#: templates/part.addcardform.php:84 templates/part.details.php:61 +#: templates/part.setpropertyform.php:28 +msgid "City" +msgstr "城市" + +#: templates/part.addcardform.php:90 templates/part.details.php:65 +#: templates/part.setpropertyform.php:32 +msgid "Region" +msgstr "地区" + +#: templates/part.addcardform.php:96 templates/part.details.php:69 +#: templates/part.setpropertyform.php:36 +msgid "Zipcode" +msgstr "邮编" + +#: templates/part.addcardform.php:102 templates/part.details.php:73 +#: templates/part.setpropertyform.php:40 +msgid "Country" +msgstr "国家" + +#: templates/part.addcardform.php:109 +msgid "Create Contact" +msgstr "创建联系人" + +#: templates/part.chooseaddressbook.php:1 +msgid "Choose active Address Books" +msgstr "选择激活地址簿" + +#: templates/part.chooseaddressbook.php:16 +msgid "New Address Book" +msgstr "新建地址簿" + +#: templates/part.chooseaddressbook.php:21 +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "CardDav Link" +msgstr "CardDav 链接" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Download" +msgstr "下载" + +#: templates/part.chooseaddressbook.rowfields.php:5 +msgid "Edit" +msgstr "编辑" + +#: templates/part.chooseaddressbook.rowfields.php:5 msgid "Delete" -msgstr "" +msgstr "删除" + +#: templates/part.details.php:3 +msgid "Download contact" +msgstr "下载联系人" + +#: templates/part.details.php:4 +msgid "Delete contact" +msgstr "删除联系人" #: templates/part.details.php:34 -msgid "Add Property" -msgstr "" +msgid "Add" +msgstr "添加" -#: templates/part.property.php:9 +#: templates/part.editaddressbook.php:9 +msgid "New Addressbook" +msgstr "新建地址簿" + +#: templates/part.editaddressbook.php:9 +msgid "Edit Addressbook" +msgstr "编辑地址簿" + +#: templates/part.editaddressbook.php:12 +msgid "Displayname" +msgstr "显示名称" + +#: templates/part.editaddressbook.php:23 +msgid "Active" +msgstr "激活" + +#: templates/part.editaddressbook.php:29 +msgid "Save" +msgstr "保存" + +#: templates/part.editaddressbook.php:29 +msgid "Submit" +msgstr "提交" + +#: templates/part.editaddressbook.php:30 +msgid "Cancel" +msgstr "取消" + +#: templates/part.property.php:3 msgid "Birthday" -msgstr "" +msgstr "生日" -#: templates/part.property.php:29 +#: templates/part.property.php:23 +msgid "Preferred" +msgstr "偏好" + +#: templates/part.property.php:23 templates/part.setpropertyform.php:45 msgid "Phone" -msgstr "" +msgstr "电话" -#: templates/part.setpropertyform.php:17 -msgid "Edit" -msgstr "" +#: templates/part.setpropertyform.php:57 +msgid "Update" +msgstr "更新" + +#: templates/settings.php:4 +msgid "CardDAV syncing address:" +msgstr "CardDAV 同步地址:" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 1d6281a1f51..afe32762564 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011. +# , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-23 18:17+0200\n" -"PO-Revision-Date: 2011-09-04 17:07+0000\n" +"POT-Creation-Date: 2012-01-24 00:25+0100\n" +"PO-Revision-Date: 2012-01-22 07:23+0000\n" "Last-Translator: csslayer \n" "Language-Team: Chinese (China) (http://www.transifex.net/projects/p/owncloud/team/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,51 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0\n" +#: lostpassword/index.php:24 +msgid "Owncloud password reset" +msgstr "重置 Owncloud 密码" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "使用以下链接重置您的密码:{link}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "您将会收到包含可以重置密码链接的邮件。" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "已请求" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "登录失败!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:22 +#: templates/login.php:8 +msgid "Username" +msgstr "用户名" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "请求重置" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "您的密码已重置" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "到登录页面" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "新密码" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "重置密码" + #: strings.php:5 msgid "Personal" msgstr "个人" @@ -46,54 +91,50 @@ msgstr "未找到云" msgid "Create an admin account" msgstr "创建管理员账号" -#: templates/installation.php:21 -msgid "Username" -msgstr "用户名" - -#: templates/installation.php:22 +#: templates/installation.php:26 templates/login.php:12 msgid "Password" msgstr "密码" -#: templates/installation.php:27 -msgid "Configure the database" -msgstr "配置数据库" - -#: templates/installation.php:32 templates/installation.php:43 -#: templates/installation.php:53 -msgid "will be used" -msgstr "将被使用" - -#: templates/installation.php:64 -msgid "Database user" -msgstr "数据库用户" - -#: templates/installation.php:65 -msgid "Database password" -msgstr "数据库密码" - -#: templates/installation.php:66 -msgid "Database name" -msgstr "数据库名" - -#: templates/installation.php:72 +#: templates/installation.php:32 msgid "Advanced" msgstr "高级" -#: templates/installation.php:75 -msgid "Database host" -msgstr "数据库主机" - -#: templates/installation.php:76 +#: templates/installation.php:34 msgid "Data folder" msgstr "数据目录" +#: templates/installation.php:41 +msgid "Configure the database" +msgstr "配置数据库" + +#: templates/installation.php:46 templates/installation.php:57 +#: templates/installation.php:67 +msgid "will be used" +msgstr "将被使用" + #: templates/installation.php:79 +msgid "Database user" +msgstr "数据库用户" + +#: templates/installation.php:83 +msgid "Database password" +msgstr "数据库密码" + +#: templates/installation.php:87 +msgid "Database name" +msgstr "数据库名" + +#: templates/installation.php:93 +msgid "Database host" +msgstr "数据库主机" + +#: templates/installation.php:98 msgid "Finish setup" msgstr "安装完成" #: templates/layout.guest.php:35 -msgid "gives you freedom and control over your own data" -msgstr "自由掌控您的数据" +msgid "web services under your control" +msgstr "由您掌控的网络服务" #: templates/layout.user.php:34 msgid "Log out" @@ -103,38 +144,22 @@ msgstr "注销" msgid "Settings" msgstr "设置" -#: templates/login.php:4 +#: templates/login.php:5 msgid "Lost your password?" msgstr "忘记密码?" -#: templates/login.php:9 templates/login.php:13 +#: templates/login.php:15 msgid "remember" msgstr "记住" +#: templates/login.php:16 +msgid "Log in" +msgstr "登录" + #: templates/logout.php:1 msgid "You are logged out." msgstr "您已注销。" -#: templates/lostpassword.php:3 -msgid "You will receive a link to reset your password via Email." -msgstr "您将通过邮件收到一个用于重置密码的链接" - -#: templates/lostpassword.php:5 -msgid "Requested" -msgstr "请求已发送" - -#: templates/lostpassword.php:8 -msgid "Login failed!" -msgstr "登陆失败!" - -#: templates/lostpassword.php:10 -msgid "Username or Email" -msgstr "用户名或电子邮件" - -#: templates/lostpassword.php:11 -msgid "Request reset" -msgstr "请求重置" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "上一页" @@ -143,16 +168,4 @@ msgstr "上一页" msgid "next" msgstr "下一页" -#: templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "您的密码已重置" - -#: templates/resetpassword.php:6 -msgid "New password" -msgstr "新密码" - -#: templates/resetpassword.php:7 -msgid "Reset password" -msgstr "重置密码" - diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 4a30d9d0c1f..cd794d7514e 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011. +# , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" -"POT-Creation-Date: 2011-09-24 23:05+0200\n" -"PO-Revision-Date: 2011-09-24 21:05+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2012-01-24 00:25+0100\n" +"PO-Revision-Date: 2012-01-22 07:23+0000\n" +"Last-Translator: csslayer \n" "Language-Team: Chinese (China) (http://www.transifex.net/projects/p/owncloud/team/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,33 +18,33 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0\n" -#: ajax/upload.php:24 +#: ajax/upload.php:19 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "没有发生错误,文件上传成功。" -#: ajax/upload.php:25 +#: ajax/upload.php:20 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" +msgstr "上传的文件大小超过了php.ini 中指定的upload_max_filesize" -#: ajax/upload.php:26 +#: ajax/upload.php:21 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "" +msgstr "上传的文件超过了在HTML 表单中指定的MAX_FILE_SIZE" -#: ajax/upload.php:27 +#: ajax/upload.php:22 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "只上传了文件的一部分" -#: ajax/upload.php:28 +#: ajax/upload.php:23 msgid "No file was uploaded" -msgstr "" +msgstr "文件没有上传" -#: ajax/upload.php:29 +#: ajax/upload.php:24 msgid "Missing a temporary folder" -msgstr "" +msgstr "缺少临时目录" -#: appinfo/app.php:7 +#: appinfo/app.php:8 msgid "Files" msgstr "文件" @@ -52,43 +52,55 @@ msgstr "文件" msgid "Maximum upload size" msgstr "最大上传大小" +#: templates/index.php:7 +msgid "New" +msgstr "新建" + #: templates/index.php:10 +msgid "Text file" +msgstr "文本文件" + +#: templates/index.php:11 +msgid "Folder" +msgstr "文件夹" + +#: templates/index.php:12 +msgid "From the web" +msgstr "来自网络" + +#: templates/index.php:22 msgid "Upload" msgstr "上传" -#: templates/index.php:17 -msgid "New Folder" -msgstr "新建文件夹" - -#: templates/index.php:31 +#: templates/index.php:35 msgid "Nothing in here. Upload something!" msgstr "这里还什么都没有。上传些东西吧!" -#: templates/index.php:39 +#: templates/index.php:43 msgid "Name" msgstr "名称" -#: templates/index.php:41 +#: templates/index.php:45 msgid "Download" msgstr "下载" -#: templates/index.php:45 +#: templates/index.php:49 msgid "Size" msgstr "大小" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Modified" msgstr "修改日期" -#: templates/index.php:46 +#: templates/index.php:50 msgid "Delete" msgstr "删除" -#: templates/index.php:54 +#: templates/index.php:58 msgid "Upload too large" msgstr "上传文件过大" -#: templates/index.php:56 +#: templates/index.php:60 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." diff --git a/l10n/zh_CN/gallery.po b/l10n/zh_CN/gallery.po new file mode 100644 index 00000000000..5ba9a6462fb --- /dev/null +++ b/l10n/zh_CN/gallery.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Bartek , 2012. +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:24+0100\n" +"PO-Revision-Date: 2012-01-23 23:25+0000\n" +"Last-Translator: icewind \n" +"Language-Team: Chinese (China) (http://www.transifex.net/projects/p/owncloud/team/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: appinfo/app.php:41 +msgid "Gallery" +msgstr "图库" + +#: js/album_cover.js:40 +msgid "Scanning directories" +msgstr "扫描目录" + +#: js/album_cover.js:48 +msgid "No photos found" +msgstr "" + +#: js/album_cover.js:51 js/album_cover.js:60 +msgid "Creating thumbnails" +msgstr "创建缩略图" + +#: js/album_cover.js:81 +msgid "Do you wan't to remove album" +msgstr "您是否想要移除相册" + +#: js/album_cover.js:94 +msgid "Input new gallery name" +msgstr "输入新图库名称" + +#: templates/index.php:10 +msgid "Rescan" +msgstr "重新扫描" + +#: templates/view_album.php:19 +msgid "Back" +msgstr "返回" + + diff --git a/l10n/zh_CN/media.po b/l10n/zh_CN/media.po index f80f1839a1d..868e222190d 100644 --- a/l10n/zh_CN/media.po +++ b/l10n/zh_CN/media.po @@ -2,14 +2,15 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# Translators: # , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-09-03 14:50+0200\n" -"PO-Revision-Date: 2011-09-03 12:53+0000\n" -"Last-Translator: csslayer \n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-11 00:19+0100\n" +"PO-Revision-Date: 2012-01-10 23:43+0000\n" +"Last-Translator: icewind \n" "Language-Team: Chinese (China) (http://www.transifex.net/projects/p/owncloud/team/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,15 +18,15 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0\n" -#: appinfo/app.php:31 +#: appinfo/app.php:32 msgid "Music" msgstr "音乐" -#: templates/music.php:3 +#: templates/music.php:3 templates/player.php:13 msgid "Play" msgstr "播放" -#: templates/music.php:4 templates/music.php:30 +#: templates/music.php:4 templates/music.php:26 templates/player.php:14 msgid "Pause" msgstr "暂停" @@ -33,7 +34,7 @@ msgstr "暂停" msgid "Previous" msgstr "前一首" -#: templates/music.php:6 +#: templates/music.php:6 templates/player.php:15 msgid "Next" msgstr "后一首" @@ -45,11 +46,7 @@ msgstr "静音" msgid "Unmute" msgstr "取消静音" -#: templates/music.php:28 -msgid "Songs scanned" -msgstr "歌曲已扫描" - -#: templates/music.php:29 +#: templates/music.php:25 msgid "Rescan Collection" msgstr "重新扫描收藏" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index f960000e2fc..25c0fccc72c 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -2,13 +2,14 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # -# , 2011. +# Translators: +# , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-09-03 15:07+0200\n" -"PO-Revision-Date: 2011-09-03 13:29+0000\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2012-01-24 00:25+0100\n" +"PO-Revision-Date: 2012-01-22 07:26+0000\n" "Last-Translator: csslayer \n" "Language-Team: Chinese (China) (http://www.transifex.net/projects/p/owncloud/team/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -17,22 +18,30 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0\n" -#: ajax/openid.php:13 ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "验证错误" +#: ajax/lostpassword.php:14 +msgid "email Changed" +msgstr "电子邮件已修改" -#: ajax/openid.php:21 -msgid "OpenID Changed" -msgstr "OpenID 已修改" - -#: ajax/openid.php:23 ajax/setlanguage.php:23 +#: ajax/lostpassword.php:16 ajax/openid.php:17 ajax/setlanguage.php:16 msgid "Invalid request" msgstr "非法请求" -#: ajax/setlanguage.php:21 +#: ajax/openid.php:15 +msgid "OpenID Changed" +msgstr "OpenID 已修改" + +#: ajax/setlanguage.php:14 msgid "Language changed" msgstr "语言已修改" +#: personal.php:36 personal.php:37 +msgid "__language_name__" +msgstr "简体中文" + +#: templates/admin.php:13 +msgid "Log level" +msgstr "日志级别" + #: templates/apps.php:8 msgid "Add your application" msgstr "加入您的应用程序" @@ -53,15 +62,15 @@ msgstr "由" msgid "Ask a question" msgstr "提问" -#: templates/help.php:17 +#: templates/help.php:20 msgid "Problems connecting to help database." msgstr "连接帮助数据库错误 " -#: templates/help.php:18 +#: templates/help.php:21 msgid "Go there manually." msgstr "手动访问" -#: templates/help.php:26 +#: templates/help.php:29 msgid "Answer" msgstr "回答" @@ -97,35 +106,51 @@ msgstr "显示" msgid "Change password" msgstr "修改密码" -#: templates/personal.php:24 templates/personal.php:25 +#: templates/personal.php:24 +msgid "Email" +msgstr "电子邮件" + +#: templates/personal.php:25 +msgid "Your email address" +msgstr "您的电子邮件" + +#: templates/personal.php:26 +msgid "Fill in an email address to enable password recovery" +msgstr "填写电子邮件地址以启用密码恢复" + +#: templates/personal.php:32 templates/personal.php:33 msgid "Language" msgstr "语言" -#: templates/personal.php:30 -msgid "Help translating" +#: templates/personal.php:38 +msgid "Help translate" msgstr "帮助翻译" -#: templates/personal.php:36 +#: templates/personal.php:45 msgid "use this address to connect to your ownCloud in your file manager" msgstr "在文件管理器中使用这个地址来连接到您的 ownCloud" -#: templates/users.php:16 +#: templates/users.php:15 templates/users.php:30 msgid "Name" msgstr "名称" -#: templates/users.php:17 +#: templates/users.php:16 templates/users.php:31 msgid "Password" msgstr "密码" -#: templates/users.php:18 templates/users.php:36 +#: templates/users.php:17 templates/users.php:32 templates/users.php:46 msgid "Groups" msgstr "组" -#: templates/users.php:24 +#: templates/users.php:23 msgid "Create" msgstr "创建" -#: templates/users.php:48 +#: templates/users.php:33 +msgid "Quota" +msgstr "配额" + +#: templates/users.php:58 msgid "Delete" msgstr "删除" diff --git a/lib/MDB2/Driver/Datatype/sqlite3.php b/lib/MDB2/Driver/Datatype/sqlite3.php index 378d5540cbe..d74badbe4f1 100644 --- a/lib/MDB2/Driver/Datatype/sqlite3.php +++ b/lib/MDB2/Driver/Datatype/sqlite3.php @@ -1,49 +1,24 @@ . + * + */ require_once('MDB2/Driver/Datatype/Common.php'); diff --git a/lib/MDB2/Driver/Function/sqlite3.php b/lib/MDB2/Driver/Function/sqlite3.php index 0d6b329f0ad..a013aea165a 100644 --- a/lib/MDB2/Driver/Function/sqlite3.php +++ b/lib/MDB2/Driver/Function/sqlite3.php @@ -1,48 +1,24 @@ | -// +----------------------------------------------------------------------+ -// -// +/** + * ownCloud + * + * @author Robin Appelman + * @copyright 2011 Robin Appelman icewind1991@gmail.com + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see . + * + */ require_once('MDB2/Driver/Function/Common.php'); diff --git a/lib/MDB2/Driver/Manager/sqlite3.php b/lib/MDB2/Driver/Manager/sqlite3.php index eabbb72b3c2..8f4e1312eb8 100644 --- a/lib/MDB2/Driver/Manager/sqlite3.php +++ b/lib/MDB2/Driver/Manager/sqlite3.php @@ -1,48 +1,24 @@ | -// +----------------------------------------------------------------------+ -// -// +/** + * ownCloud + * + * @author Robin Appelman + * @copyright 2011 Robin Appelman icewind1991@gmail.com + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see . + * + */ require_once('MDB2/Driver/Manager/Common.php'); @@ -192,9 +168,6 @@ class MDB2_Driver_Manager_sqlite3 extends MDB2_Driver_Manager_Common if (PEAR::isError($query_fields)) { return $query_fields; } - if (!empty($options['primary'])) { - $query_fields.= ', PRIMARY KEY ('.implode(', ', array_keys($options['primary'])).')'; - } if (!empty($options['foreign_keys'])) { foreach ($options['foreign_keys'] as $fkname => $fkdef) { if (empty($fkdef)) { @@ -558,9 +531,26 @@ class MDB2_Driver_Manager_sqlite3 extends MDB2_Driver_Manager_Common return MDB2_OK; } + if (empty($changes['remove']) and empty($changes['rename']) and empty($changes['change']) ){//if only rename or add changes are required, we can use ALTER TABLE + $query = ''; + if (!empty($changes['name'])) { + $change_name = $db->quoteIdentifier($changes['name'], true); + $query = 'RENAME TO ' . $change_name; + $db->exec("ALTER TABLE $name $query"); + } + + if (!empty($changes['add']) && is_array($changes['add'])) { + foreach ($changes['add'] as $field_name => $field) { + $query= 'ADD ' . $db->getDeclaration($field['type'], $field_name, $field); + $db->exec("ALTER TABLE $name $query"); + } + } + return MDB2_OK; + } + $db->loadModule('Reverse', null, true); - // actually sqlite 2.x supports no ALTER TABLE at all .. so we emulate it + // for other operations we need to emulate them with sqlite3 $fields = $db->manager->listTableFields($name); if (PEAR::isError($fields)) { return $fields; @@ -660,44 +650,54 @@ class MDB2_Driver_Manager_sqlite3 extends MDB2_Driver_Manager_Common } } + //rename the old table so we can create the new one + $db->exec("ALTER TABLE $name RENAME TO __$name"); $data = null; - if (!empty($select_fields)) { - $query = 'SELECT '.implode(', ', $select_fields).' FROM '.$db->quoteIdentifier($name, true); - $data = $db->queryAll($query, null, MDB2_FETCHMODE_ORDERED); - } - $result = $this->dropTable($name); - if (PEAR::isError($result)) { - return $result; - } $result = $this->createTable($name_new, $fields, $options); if (PEAR::isError($result)) { return $result; } - foreach ($indexes as $index => $definition) { - $this->createIndex($name_new, $index, $definition); + //these seem to only give errors + +// foreach ($indexes as $index => $definition) { +// $this->createIndex($name_new, $index, $definition); +// } + +// foreach ($constraints as $constraint => $definition) { +// $this->createConstraint($name_new, $constraint, $definition); +// } + + //fill the new table with data from the old one + if (!empty($select_fields)) { + $query = 'INSERT INTO '.$db->quoteIdentifier($name_new, true); + $query.= '('.implode(', ', array_slice(array_keys($fields), 0, count($select_fields))).')'; + $query .= ' SELECT '.implode(', ', $select_fields).' FROM '.$db->quoteIdentifier('__'.$name, true); + $db->exec($query); } - foreach ($constraints as $constraint => $definition) { - $this->createConstraint($name_new, $constraint, $definition); - } +// if (!empty($select_fields) && !empty($data)) { +// $query = 'INSERT INTO '.$db->quoteIdentifier($name_new, true); +// $query.= '('.implode(', ', array_slice(array_keys($fields), 0, count($select_fields))).')'; +// $query.=' VALUES (?'.str_repeat(', ?', (count($select_fields) - 1)).')'; +// $stmt =$db->prepare($query, null, MDB2_PREPARE_MANIP); +// if (PEAR::isError($stmt)) { +// return $stmt; +// } +// foreach ($data as $row) { +// $result = $stmt->execute($row); +// if (PEAR::isError($result)) { +// return $result; +// } +// } +// } - if (!empty($select_fields) && !empty($data)) { - $query = 'INSERT INTO '.$db->quoteIdentifier($name_new, true); - $query.= '('.implode(', ', array_slice(array_keys($fields), 0, count($select_fields))).')'; - $query.=' VALUES (?'.str_repeat(', ?', (count($select_fields) - 1)).')'; - $stmt =$db->prepare($query, null, MDB2_PREPARE_MANIP); - if (PEAR::isError($stmt)) { - return $stmt; - } - foreach ($data as $row) { - $result = $stmt->execute($row); - if (PEAR::isError($result)) { - return $result; - } - } + //remove the old table + $result = $this->dropTable('__'.$name); + if (PEAR::isError($result)) { + return $result; } return MDB2_OK; } @@ -822,7 +822,7 @@ class MDB2_Driver_Manager_sqlite3 extends MDB2_Driver_Manager_Common return $db; } - $query = "SELECT name FROM sqlite_master WHERE type='table' AND sql NOT NULL ORDER BY name"; + $query = "SELECT name FROM sqlite_master WHERE type='table' AND sql NOT NULL AND name!='sqlite_sequence' ORDER BY name"; $table_names = $db->queryCol($query); if (PEAR::isError($table_names)) { return $table_names; diff --git a/lib/MDB2/Driver/Native/sqlite3.php b/lib/MDB2/Driver/Native/sqlite3.php index 81dc67dea65..de650107238 100644 --- a/lib/MDB2/Driver/Native/sqlite3.php +++ b/lib/MDB2/Driver/Native/sqlite3.php @@ -1,48 +1,24 @@ | -// +----------------------------------------------------------------------+ -// -// +/** + * ownCloud + * + * @author Robin Appelman + * @copyright 2011 Robin Appelman icewind1991@gmail.com + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see . + * + */ require_once 'MDB2/Driver/Native/Common.php'; /** diff --git a/lib/MDB2/Driver/Reverse/sqlite3.php b/lib/MDB2/Driver/Reverse/sqlite3.php index d488977b158..33e5b590268 100644 --- a/lib/MDB2/Driver/Reverse/sqlite3.php +++ b/lib/MDB2/Driver/Reverse/sqlite3.php @@ -1,48 +1,24 @@ | -// +----------------------------------------------------------------------+ -// -// +/** + * ownCloud + * + * @author Robin Appelman + * @copyright 2011 Robin Appelman icewind1991@gmail.com + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see . + * + */ require_once('MDB2/Driver/Reverse/Common.php'); @@ -93,7 +69,7 @@ class MDB2_Driver_Reverse_sqlite3 extends MDB2_Driver_Reverse_Common return $db->raiseError(MDB2_ERROR_UNSUPPORTED, null, null, 'unexpected empty table column definition list', __FUNCTION__); } - $regexp = '/^\s*([^\s]+) +(CHAR|VARCHAR|VARCHAR2|TEXT|BOOLEAN|SMALLINT|INT|INTEGER|DECIMAL|BIGINT|DOUBLE|FLOAT|DATETIME|DATE|TIME|LONGTEXT|LONGBLOB)( ?\(([1-9][0-9]*)(:([1-9][0-9]*))?\))?( NULL| NOT NULL)?( UNSIGNED)?( NULL| NOT NULL)?( PRIMARY KEY)?( DEFAULT (\'[^\']*\'|[^ ]+))?( NULL| NOT NULL)?( PRIMARY KEY)?(\s*\-\-.*)?$/i'; + $regexp = '/^\s*([^\s]+) +(CHAR|VARCHAR|VARCHAR2|TEXT|BOOLEAN|SMALLINT|INT|INTEGER|DECIMAL|BIGINT|DOUBLE|FLOAT|DATETIME|DATE|TIME|LONGTEXT|LONGBLOB)( ?\(([1-9][0-9]*)(:([1-9][0-9]*))?\))?( NULL| NOT NULL)?( UNSIGNED)?( NULL| NOT NULL)?( PRIMARY KEY)?( AUTOINCREMENT)?( DEFAULT (\'[^\']*\'|[^ ]+))?( NULL| NOT NULL)?( PRIMARY KEY)?(\s*\-\-.*)?$/i'; $regexp2 = '/^\s*([^ ]+) +(PRIMARY|UNIQUE|CHECK)$/i'; for ($i=0, $j=0; $i<$count; ++$i) { if (!preg_match($regexp, trim($column_sql[$i]), $matches)) { @@ -114,11 +90,16 @@ class MDB2_Driver_Reverse_sqlite3 extends MDB2_Driver_Reverse_Common if (isset($matches[8]) && strlen($matches[8])) { $columns[$j]['unsigned'] = true; } - if (isset($matches[9]) && strlen($matches[9])) { + if (isset($matches[10]) && strlen($matches[10])) { $columns[$j]['autoincrement'] = true; + $columns[$j]['notnull']=true; } - if (isset($matches[12]) && strlen($matches[12])) { - $default = $matches[12]; + if (isset($matches[10]) && strlen($matches[10])) { + $columns[$j]['autoincrement'] = true; + $columns[$j]['notnull']=true; + } + if (isset($matches[13]) && strlen($matches[13])) { + $default = $matches[13]; if (strlen($default) && $default[0]=="'") { $default = str_replace("''", "'", substr($default, 1, strlen($default)-2)); } @@ -131,8 +112,8 @@ class MDB2_Driver_Reverse_sqlite3 extends MDB2_Driver_Reverse_Common $columns[$j]['notnull'] = ($matches[7] === ' NOT NULL'); } else if (isset($matches[9]) && strlen($matches[9])) { $columns[$j]['notnull'] = ($matches[9] === ' NOT NULL'); - } else if (isset($matches[13]) && strlen($matches[13])) { - $columns[$j]['notnull'] = ($matches[13] === ' NOT NULL'); + } else if (isset($matches[14]) && strlen($matches[14])) { + $columns[$j]['notnull'] = ($matches[14] === ' NOT NULL'); } ++$j; } diff --git a/lib/MDB2/Driver/sqlite3.php b/lib/MDB2/Driver/sqlite3.php index a41aeed4850..e42d36176c4 100644 --- a/lib/MDB2/Driver/sqlite3.php +++ b/lib/MDB2/Driver/sqlite3.php @@ -1,48 +1,24 @@ | -// +----------------------------------------------------------------------+ -// -// +/** + * ownCloud + * + * @author Robin Appelman + * @copyright 2011 Robin Appelman icewind1991@gmail.com + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see . + * + */ /** * MDB2 SQLite3 driver diff --git a/lib/app.php b/lib/app.php index b9eea483a55..37a99823e3d 100644 --- a/lib/app.php +++ b/lib/app.php @@ -94,19 +94,28 @@ class OC_App{ */ public static function enable( $app ){ if(!OC_Installer::isInstalled($app)){ - OC_Installer::installShippedApp($app); + // check if app is a shipped app or not. OCS apps have an integer as id, shipped apps use a string + if(!is_numeric($app)){ + OC_Installer::installShippedApp($app); + }else{ + $download=OC_OCSClient::getApplicationDownload($app,1); + if(isset($download['downloadlink']) and $download['downloadlink']<>'') { + $app=OC_Installer::installApp(array('source'=>'http','href'=>$download['downloadlink'])); + } + } } OC_Appconfig::setValue( $app, 'enabled', 'yes' ); } /** - * @brief enables an app + * @brief disables an app * @param $app app * @returns true/false * - * This function set an app as enabled in appconfig. + * This function set an app as disabled in appconfig. */ public static function disable( $app ){ + // check if app is a shiped app or not. if not delete OC_Appconfig::setValue( $app, 'enabled', 'no' ); } @@ -222,11 +231,10 @@ class OC_App{ $settings[] = array( "id" => "core_users", "order" => 2, "href" => OC_Helper::linkTo( "settings", "users.php" ), "name" => $l->t("Users"), "icon" => OC_Helper::imagePath( "settings", "users.svg" )); // admin apps menu $settings[] = array( "id" => "core_apps", "order" => 3, "href" => OC_Helper::linkTo( "settings", "apps.php?installed" ), "name" => $l->t("Apps"), "icon" => OC_Helper::imagePath( "settings", "apps.svg" )); + // admin log menu + $settings[] = array( "id" => "core_log", "order" => 4, "href" => OC_Helper::linkTo( "settings", "log.php" ), "name" => $l->t("Log"), "icon" => OC_Helper::imagePath( "settings", "log.svg" )); - // if there're some admin forms - if(!empty(self::$adminForms)) - // admins menu - $settings[]=array( "id" => "admin", "order" => 1000, "href" => OC_Helper::linkTo( "settings", "admin.php" ), "name" => $l->t("Admin"), "icon" => OC_Helper::imagePath( "settings", "admin.svg" )); + $settings[]=array( "id" => "admin", "order" => 1000, "href" => OC_Helper::linkTo( "settings", "admin.php" ), "name" => $l->t("Admin"), "icon" => OC_Helper::imagePath( "settings", "admin.svg" )); } } @@ -363,4 +371,36 @@ class OC_App{ } return $apps; } + + /** + * check if any apps need updating and update those + */ + public static function updateApps(){ + // The rest comes here + $apps = OC_Appconfig::getApps(); + foreach( $apps as $app ){ + $installedVersion=OC_Appconfig::getValue($app,'installed_version'); + $appInfo=OC_App::getAppInfo($app); + if (isset($appInfo['version'])) { + $currentVersion=$appInfo['version']; + if (version_compare($currentVersion, $installedVersion, '>')) { + OC_App::updateApp($app); + OC_Appconfig::setValue($app,'installed_version',$appInfo['version']); + } + } + } + } + + /** + * update the database for the app and call the update script + * @param string appid + */ + public static function updateApp($appid){ + if(file_exists(OC::$SERVERROOT.'/apps/'.$appid.'/appinfo/database.xml')){ + OC_DB::updateDbFromStructure(OC::$SERVERROOT.'/apps/'.$appid.'/appinfo/database.xml'); + } + if(file_exists(OC::$SERVERROOT.'/apps/'.$appid.'/appinfo/update.php')){ + include OC::$SERVERROOT.'/apps/'.$appid.'/appinfo/update.php'; + } + } } diff --git a/lib/appconfig.php b/lib/appconfig.php index f43ef141732..2b5cef59adc 100644 --- a/lib/appconfig.php +++ b/lib/appconfig.php @@ -47,7 +47,7 @@ class OC_Appconfig{ */ public static function getApps(){ // No magic in here! - $query = OC_DB::prepare( 'SELECT DISTINCT( appid ) FROM *PREFIX*appconfig' ); + $query = OC_DB::prepare( 'SELECT DISTINCT appid FROM *PREFIX*appconfig' ); $result = $query->execute(); $apps = array(); diff --git a/lib/base.php b/lib/base.php index ade4d889631..ab7cb2990ed 100644 --- a/lib/base.php +++ b/lib/base.php @@ -70,6 +70,31 @@ class OC{ } } + /** + * autodetects the formfactor of the used device + * default -> the normal desktop browser interface + * mobile -> interface for smartphones + * tablet -> interface for tablets + * standalone -> the default interface but without header, footer and sidebar. just the application. useful to ue just a specific app on the desktop in a standalone window. + */ + public static function detectFormfactor(){ + // please add more useragent strings for other devices + if(isset($_SERVER['HTTP_USER_AGENT'])){ + if(stripos($_SERVER['HTTP_USER_AGENT'],'ipad')>0) { + $mode='tablet'; + }elseif(stripos($_SERVER['HTTP_USER_AGENT'],'iphone')>0){ + $mode='mobile'; + }elseif((stripos($_SERVER['HTTP_USER_AGENT'],'N9')>0) and (stripos($_SERVER['HTTP_USER_AGENT'],'nokia')>0)){ + $mode='mobile'; + }else{ + $mode='default'; + } + }else{ + $mode='default'; + } + return($mode); + } + public static function init(){ // register autoloader spl_autoload_register(array('OC','autoload')); @@ -77,6 +102,9 @@ class OC{ // set some stuff //ob_start(); error_reporting(E_ALL | E_STRICT); + if (defined('DEBUG') && DEBUG){ + ini_set('display_errors', 1); + } date_default_timezone_set('Europe/Berlin'); ini_set('arg_separator.output','&'); @@ -89,6 +117,14 @@ class OC{ $_SERVER['PHP_AUTH_PW'] = strip_tags($password); } + //set http auth headers for apache+php-cgi work around if variable gets renamed by apache + if (isset($_SERVER['REDIRECT_HTTP_AUTHORIZATION']) && preg_match('/Basic\s+(.*)$/i', $_SERVER['REDIRECT_HTTP_AUTHORIZATION'], $matches)) + { + list($name, $password) = explode(':', base64_decode($matches[1])); + $_SERVER['PHP_AUTH_USER'] = strip_tags($name); + $_SERVER['PHP_AUTH_PW'] = strip_tags($password); + } + // calculate the documentroot OC::$DOCUMENTROOT=realpath($_SERVER['DOCUMENT_ROOT']); OC::$SERVERROOT=str_replace("\\",'/',substr(__FILE__,0,-13)); @@ -116,12 +152,37 @@ class OC{ } } + if(OC_Config::getValue('installed', false)){ + $installedVersion=OC_Config::getValue('version','0.0.0'); + $currentVersion=implode('.',OC_Util::getVersion()); + if (version_compare($currentVersion, $installedVersion, '>')) { + $result=OC_DB::updateDbFromStructure(OC::$SERVERROOT.'/db_structure.xml'); + if(!$result){ + echo 'Error while upgrading the database'; + die(); + } + OC_Config::setValue('version',implode('.',OC_Util::getVersion())); + } + + OC_App::updateApps(); + } + ini_set('session.cookie_httponly','1;'); session_start(); + // if the formfactor is not yet autodetected do the autodetection now. For possible forfactors check the detectFormfactor documentation + if(!isset($_SESSION['formfactor'])){ + $_SESSION['formfactor']=OC::detectFormfactor(); + } + // allow manual override via GET parameter + if(isset($_GET['formfactor'])){ + $_SESSION['formfactor']=$_GET['formfactor']; + } + + // Add the stuff we need always OC_Util::addScript( "jquery-1.6.4.min" ); - OC_Util::addScript( "jquery-ui-1.8.14.custom.min" ); + OC_Util::addScript( "jquery-ui-1.8.16.custom.min" ); OC_Util::addScript( "jquery-showpassword" ); OC_Util::addScript( "jquery.infieldlabel.min" ); OC_Util::addScript( "jquery-tipsy" ); @@ -130,7 +191,7 @@ class OC{ OC_Util::addScript('search','result'); OC_Util::addStyle( "styles" ); OC_Util::addStyle( "multiselect" ); - OC_Util::addStyle( "jquery-ui-1.8.14.custom" ); + OC_Util::addStyle( "jquery-ui-1.8.16.custom" ); OC_Util::addStyle( "jquery-tipsy" ); $errors=OC_Util::checkServer(); @@ -154,13 +215,6 @@ class OC{ OC_User::useBackend( OC_Config::getValue( "userbackend", "database" )); OC_Group::setBackend( OC_Config::getValue( "groupbackend", "database" )); - // Load Apps - // This includes plugins for users and filesystems as well - global $RUNTIME_NOAPPS; - if(!$RUNTIME_NOAPPS ){ - OC_App::loadApps(); - } - // Was in required file ... put it here OC_Filesystem::registerStorageType('local','OC_Filestorage_Local',array('datadir'=>'string')); @@ -170,6 +224,13 @@ class OC{ OC_Util::setupFS(); } + // Load Apps + // This includes plugins for users and filesystems as well + global $RUNTIME_NOAPPS; + if(!$RUNTIME_NOAPPS ){ + OC_App::loadApps(); + } + // Last part: connect some hooks OC_HOOK::connect('OC_User', 'post_createUser', 'OC_Connector_Sabre_Principal', 'addPrincipal'); OC_HOOK::connect('OC_User', 'post_deleteUser', 'OC_Connector_Sabre_Principal', 'deletePrincipal'); @@ -184,23 +245,26 @@ if( !isset( $RUNTIME_NOAPPS )){ $RUNTIME_NOAPPS = false; } -OC::init(); - -if(!function_exists('sys_get_temp_dir')) { - function sys_get_temp_dir() { - if( $temp=getenv('TMP') ) return $temp; - if( $temp=getenv('TEMP') ) return $temp; - if( $temp=getenv('TMPDIR') ) return $temp; - $temp=tempnam(__FILE__,''); - if (file_exists($temp)) { - unlink($temp); - return dirname($temp); - } - return null; - } +if(!function_exists('get_temp_dir')) { + function get_temp_dir() { + if( $temp=ini_get('upload_tmp_dir') ) return $temp; + if( $temp=getenv('TMP') ) return $temp; + if( $temp=getenv('TEMP') ) return $temp; + if( $temp=getenv('TMPDIR') ) return $temp; + $temp=tempnam(__FILE__,''); + if (file_exists($temp)) { + unlink($temp); + return dirname($temp); + } + return null; + } } +OC::init(); + require_once('fakedirstream.php'); + + // FROM search.php new OC_Search_Provider_File(); diff --git a/lib/config.php b/lib/config.php index 3aa69327f56..8d03271b3ea 100644 --- a/lib/config.php +++ b/lib/config.php @@ -94,7 +94,6 @@ class OC_Config{ // Write changes self::writeData(); - return true; } @@ -175,7 +174,7 @@ class OC_Config{ $result=@file_put_contents( OC::$SERVERROOT."/config/config.php", $content ); if(!$result) { $tmpl = new OC_Template( '', 'error', 'guest' ); - $tmpl->assign('errors',array(1=>array('error'=>"Can't write into config directory 'config'",'hint'=>"You can usually fix this by setting the owner of 'config' to the user that the web server uses (".OC_Util::checkWebserverUser().")"))); + $tmpl->assign('errors',array(1=>array('error'=>"Can't write into config directory 'config'",'hint'=>"You can usually fix this by giving the webserver use write access to the config directory in owncloud"))); $tmpl->printPage(); exit; } diff --git a/lib/db.php b/lib/db.php index 7ba08cb48d9..4860651b323 100644 --- a/lib/db.php +++ b/lib/db.php @@ -25,7 +25,13 @@ * MDB2 with some adaptions. */ class OC_DB { - static private $DBConnection=false; + const BACKEND_PDO=0; + const BACKEND_MDB2=1; + + static private $connection; //the prefered connection to use, either PDO or MDB2 + static private $backend=null; + static private $MDB2=false; + static private $PDO=false; static private $schema=false; static private $affected=0; static private $result=false; @@ -36,106 +42,163 @@ class OC_DB { * * Connects to the database as specified in config.php */ - static public function connect(){ + public static function connect($backend=null){ + if(self::$connection){ + return; + } + if(is_null($backend)){ + $backend=self::BACKEND_MDB2; + if(class_exists('PDO') && OC_Config::getValue('installed', false)){//check if we can use PDO, else use MDB2 (instalation always needs to be done my mdb2) + $type = OC_Config::getValue( "dbtype", "sqlite" ); + if($type=='sqlite3') $type='sqlite'; + $drivers=PDO::getAvailableDrivers(); + if(array_search($type,$drivers)!==false){ + $backend=self::BACKEND_PDO; + } + } + } + if($backend==self::BACKEND_PDO){ + self::connectPDO(); + self::$connection=self::$PDO; + self::$backend=self::BACKEND_PDO; + }else{ + self::connectMDB2(); + self::$connection=self::$MDB2; + self::$backend=self::BACKEND_MDB2; + } + } + + /** + * connect to the database using pdo + */ + public static function connectPDO(){ + if(self::$connection){ + if(self::$backend==self::BACKEND_MDB2){ + self::disconnect(); + }else{ + return; + } + } // The global data we need - $CONFIG_DBNAME = OC_Config::getValue( "dbname", "owncloud" );; - $CONFIG_DBHOST = OC_Config::getValue( "dbhost", "" );; - $CONFIG_DBUSER = OC_Config::getValue( "dbuser", "" );; - $CONFIG_DBPASSWORD = OC_Config::getValue( "dbpassword", "" );; - $CONFIG_DBTYPE = OC_Config::getValue( "dbtype", "sqlite" );; - $datadir=OC_Config::getValue( "datadirectory", OC::$SERVERROOT."/data" ); + $name = OC_Config::getValue( "dbname", "owncloud" ); + $host = OC_Config::getValue( "dbhost", "" ); + $user = OC_Config::getValue( "dbuser", "" ); + $pass = OC_Config::getValue( "dbpassword", "" ); + $type = OC_Config::getValue( "dbtype", "sqlite" ); + $datadir=OC_Config::getValue( "datadirectory", OC::$SERVERROOT.'/data' ); + + // do nothing if the connection already has been established + if(!self::$PDO){ + // Add the dsn according to the database type + switch($type){ + case 'sqlite': + $dsn='sqlite2:'.$datadir.'/'.$name.'.db'; + break; + case 'sqlite3': + $dsn='sqlite:'.$datadir.'/'.$name.'.db'; + break; + case 'mysql': + $dsn='mysql:dbname='.$name.';host='.$host; + break; + case 'pgsql': + $dsn='pgsql:dbname='.$name.';host='.$host; + break; + } + try{ + self::$PDO=new PDO($dsn,$user,$pass); + }catch(PDOException $e){ + echo( 'can not connect to database, using '.$type.'. ('.$e->getMessage().')'); + die(); + } + // We always, really always want associative arrays + self::$PDO->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE,PDO::FETCH_ASSOC); + self::$PDO->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION); + } + return true; + } + + /** + * connect to the database using mdb2 + */ + public static function connectMDB2(){ + if(self::$connection){ + if(self::$backend==self::BACKEND_PDO){ + self::disconnect(); + }else{ + return; + } + } + // The global data we need + $name = OC_Config::getValue( "dbname", "owncloud" ); + $host = OC_Config::getValue( "dbhost", "" ); + $user = OC_Config::getValue( "dbuser", "" ); + $pass = OC_Config::getValue( "dbpassword", "" ); + $type = OC_Config::getValue( "dbtype", "sqlite" ); + $SERVERROOT=OC::$SERVERROOT; + $datadir=OC_Config::getValue( "datadirectory", "$SERVERROOT/data" ); // do nothing if the connection already has been established - if(!self::$DBConnection){ + if(!self::$MDB2){ // Require MDB2.php (not required in the head of the file so we only load it when needed) require_once('MDB2.php'); // Prepare options array $options = array( - 'portability' => MDB2_PORTABILITY_ALL, + 'portability' => MDB2_PORTABILITY_ALL & (!MDB2_PORTABILITY_FIX_CASE), 'log_line_break' => '
    ', 'idxname_format' => '%s', 'debug' => true, 'quote_identifier' => true ); // Add the dsn according to the database type - if( $CONFIG_DBTYPE == 'sqlite' or $CONFIG_DBTYPE == 'sqlite3' ){ - // sqlite - $dsn = array( - 'phptype' => $CONFIG_DBTYPE, - 'database' => "$datadir/$CONFIG_DBNAME.db", - 'mode' => '0644' ); + switch($type){ + case 'sqlite': + case 'sqlite3': + $dsn = array( + 'phptype' => $type, + 'database' => "$datadir/$name.db", + 'mode' => '0644' + ); + break; + case 'mysql': + $dsn = array( + 'phptype' => 'mysql', + 'username' => $user, + 'password' => $pass, + 'hostspec' => $host, + 'database' => $name + ); + break; + case 'pgsql': + $dsn = array( + 'phptype' => 'pgsql', + 'username' => $user, + 'password' => $pass, + 'hostspec' => $host, + 'database' => $name + ); + break; } - elseif( $CONFIG_DBTYPE == 'mysql' ){ - // MySQL - $dsn = array( - 'phptype' => 'mysql', - 'username' => $CONFIG_DBUSER, - 'password' => $CONFIG_DBPASSWORD, - 'hostspec' => $CONFIG_DBHOST, - 'database' => $CONFIG_DBNAME ); - } - elseif( $CONFIG_DBTYPE == 'pgsql' ){ - // PostgreSQL - $dsn = array( - 'phptype' => 'pgsql', - 'username' => $CONFIG_DBUSER, - 'password' => $CONFIG_DBPASSWORD, - 'hostspec' => $CONFIG_DBHOST, - 'database' => $CONFIG_DBNAME ); - } - + // Try to establish connection - self::$DBConnection = MDB2::factory( $dsn, $options ); - + self::$MDB2 = MDB2::factory( $dsn, $options ); + // Die if we could not connect - if( PEAR::isError( self::$DBConnection )){ - echo( 'can not connect to database, using '.$CONFIG_DBTYPE.'. ('.self::$DBConnection->getUserInfo().')'); - $error = self::$DBConnection->getMessage(); - if(defined("DEBUG") && DEBUG) {error_log( $error);} - if(defined("DEBUG") && DEBUG) {error_log( self::$DBConnection->getUserInfo());} + if( PEAR::isError( self::$MDB2 )){ + echo( 'can not connect to database, using '.$type.'. ('.self::$MDB2->getUserInfo().')'); + OC_Log::write('core',self::$MDB2->getUserInfo(),OC_Log::FATAL); + OC_Log::write('core',self::$MDB2->getMessage(),OC_Log::FATAL); die( $error ); } - + // We always, really always want associative arrays - self::$DBConnection->setFetchMode(MDB2_FETCHMODE_ASSOC); - - //we need to function module for query pre-procesing - self::$DBConnection->loadModule('Function'); + self::$MDB2->setFetchMode(MDB2_FETCHMODE_ASSOC); } - + // we are done. great! return true; } - /** - * @brief SQL query - * @param $query Query string - * @returns result as MDB2_Result - * - * SQL query via MDB2 query() - */ - static public function query( $query ){ - // Optimize the query - $query = self::processQuery( $query ); - - self::connect(); - //fix differences between sql versions - - // return the result - $result = self::$DBConnection->exec( $query ); - - // Die if we have an error (error means: bad query, not 0 results!) - if( PEAR::isError($result)) { - $entry = 'DB Error: "'.$result->getMessage().'"
    '; - $entry .= 'Offending command was: '.$query.'
    '; - if(defined("DEBUG") && DEBUG) {error_log( $entry );} - die( $entry ); - } - - return $result; - } - /** * @brief Prepare a SQL query * @param $query Query string @@ -149,21 +212,33 @@ class OC_DB { self::connect(); // return the result - $result = self::$DBConnection->prepare( $query ); + if(self::$backend==self::BACKEND_MDB2){ + $result = self::$connection->prepare( $query ); - // Die if we have an error (error means: bad query, not 0 results!) - if( PEAR::isError($result)) { - $entry = 'DB Error: "'.$result->getMessage().'"
    '; - $entry .= 'Offending command was: '.$query.'
    '; - if(defined("DEBUG") && DEBUG) {error_log( $entry );} - die( $entry ); + // Die if we have an error (error means: bad query, not 0 results!) + if( PEAR::isError($result)) { + $entry = 'DB Error: "'.$result->getMessage().'"
    '; + $entry .= 'Offending command was: '.$query.'
    '; + OC_Log::write('core',$entry,OC_Log::FATAL); + die( $entry ); + } + }else{ + try{ + $result=self::$connection->prepare($query); + }catch(PDOException $e){ + $entry = 'DB Error: "'.$e->getMessage().'"
    '; + $entry .= 'Offending command was: '.$query.'
    '; + OC_Log::write('core',$entry,OC_Log::FATAL); + die( $entry ); + } + $result=new PDOStatementWrapper($result); } - return $result; } /** * @brief gets last value of autoincrement + * @param $table string The optional table name (will replace *PREFIX*) and add sequence suffix * @returns id * * MDB2 lastInsertID() @@ -171,9 +246,14 @@ class OC_DB { * Call this method right after the insert command or other functions may * cause trouble! */ - public static function insertid(){ + public static function insertid($table=null){ self::connect(); - return self::$DBConnection->lastInsertID(); + if($table !== null){ + $prefix = OC_Config::getValue( "dbtableprefix", "oc_" ); + $suffix = OC_Config::getValue( "dbsequencesuffix", "_id_seq" ); + $table = str_replace( '*PREFIX*', $prefix, $table ); + } + return self::$connection->lastInsertId($table.$suffix); } /** @@ -184,26 +264,18 @@ class OC_DB { */ public static function disconnect(){ // Cut connection if required - if(self::$DBConnection){ - self::$DBConnection->disconnect(); - self::$DBConnection=false; + if(self::$connection){ + if(self::$backend==self::BACKEND_MDB2){ + self::$connection->disconnect(); + } + self::$connection=false; + self::$MDB2=false; + self::$PDO=false; } return true; } - /** - * @brief Escapes bad characters - * @param $string string with dangerous characters - * @returns escaped string - * - * MDB2 escape() - */ - public static function escape( $string ){ - self::connect(); - return self::$DBConnection->escape( $string ); - } - /** * @brief saves database scheme to xml file * @param $file name of file @@ -211,7 +283,7 @@ class OC_DB { * * TODO: write more documentation */ - public static function getDbStructure( $file ){ + public static function getDbStructure( $file ,$mode=MDB2_SCHEMA_DUMP_STRUCTURE){ self::connectScheme(); // write the scheme @@ -221,7 +293,7 @@ class OC_DB { 'output' => $file, 'end_of_line' => "\n" ); - self::$schema->dumpDatabase( $definition, $dump_options, MDB2_SCHEMA_DUMP_STRUCTURE ); + self::$schema->dumpDatabase( $definition, $dump_options, $mode ); return true; } @@ -244,10 +316,10 @@ class OC_DB { $content = file_get_contents( $file ); // Make changes and save them to a temporary file - $file2 = tempnam( sys_get_temp_dir(), 'oc_db_scheme_' ); + $file2 = tempnam( get_temp_dir(), 'oc_db_scheme_' ); $content = str_replace( '*dbname*', $CONFIG_DBNAME, $content ); $content = str_replace( '*dbprefix*', $CONFIG_DBTABLEPREFIX, $content ); - if( $CONFIG_DBTYPE == 'pgsql' ){ //mysql support it too but sqlite don't + if( $CONFIG_DBTYPE == 'pgsql' ){ //mysql support it too but sqlite doesn't $content = str_replace( '0000-00-00 00:00:00', 'CURRENT_TIMESTAMP', $content ); } file_put_contents( $file2, $content ); @@ -274,6 +346,47 @@ class OC_DB { return true; } + + /** + * @brief update the database scheme + * @param $file file to read structure from + */ + public static function updateDbFromStructure($file){ + $CONFIG_DBTABLEPREFIX = OC_Config::getValue( "dbtableprefix", "oc_" ); + $CONFIG_DBTYPE = OC_Config::getValue( "dbtype", "sqlite" ); + + self::connectScheme(); + + // read file + $content = file_get_contents( $file ); + + $previousSchema = self::$schema->getDefinitionFromDatabase(); + if (PEAR::isError($previousSchema)) { + $error = $previousSchema->getMessage(); + OC_Log::write('core','Failed to get existing database structure for upgrading ('.$error.')',OC_Log::FATAL); + return false; + } + + // Make changes and save them to a temporary file + $file2 = tempnam( get_temp_dir(), 'oc_db_scheme_' ); + $content = str_replace( '*dbname*', $previousSchema['name'], $content ); + $content = str_replace( '*dbprefix*', $CONFIG_DBTABLEPREFIX, $content ); + if( $CONFIG_DBTYPE == 'pgsql' ){ //mysql support it too but sqlite doesn't + $content = str_replace( '0000-00-00 00:00:00', 'CURRENT_TIMESTAMP', $content ); + } + file_put_contents( $file2, $content ); + $op = self::$schema->updateDatabase($file2, $previousSchema, array(), false); + + // Delete our temporary file + unlink( $file2 ); + + if (PEAR::isError($op)) { + $error = $op->getMessage(); + OC_Log::write('core','Failed to update database structure ('.$error.')',OC_Log::FATAL); + return false; + } + return true; + } /** * @brief connects to a MDB2 database scheme @@ -282,13 +395,15 @@ class OC_DB { * Connects to a MDB2 database scheme */ private static function connectScheme(){ - // We need a database connection - self::connect(); + // We need a mdb2 database connection + self::connectMDB2(); + self::$MDB2->loadModule('Manager'); + self::$MDB2->loadModule('Reverse'); // Connect if this did not happen before if(!self::$schema){ require_once('MDB2/Schema.php'); - self::$schema=MDB2_Schema::factory(self::$DBConnection); + self::$schema=MDB2_Schema::factory(self::$MDB2); } return true; @@ -305,23 +420,25 @@ class OC_DB { private static function processQuery( $query ){ self::connect(); // We need Database type and table prefix - $CONFIG_DBTYPE = OC_Config::getValue( "dbtype", "sqlite" ); - $CONFIG_DBTABLEPREFIX = OC_Config::getValue( "dbtableprefix", "oc_" ); - - // differences is getting the current timestamp - $query = str_replace( 'NOW()', self::$DBConnection->now(), $query ); - $query = str_replace( 'now()', self::$DBConnection->now(), $query ); + $type = OC_Config::getValue( "dbtype", "sqlite" ); + $prefix = OC_Config::getValue( "dbtableprefix", "oc_" ); // differences in escaping of table names ('`' for mysql) and getting the current timestamp - if( $CONFIG_DBTYPE == 'sqlite' || $CONFIG_DBTYPE == 'sqlite3' ){ + if( $type == 'sqlite' || $type == 'sqlite3' ){ $query = str_replace( '`', '\'', $query ); - } - elseif( $CONFIG_DBTYPE == 'pgsql' ){ + $query = str_replace( 'NOW()', 'datetime(\'now\')', $query ); + $query = str_replace( 'now()', 'datetime(\'now\')', $query ); + }elseif( $type == 'mysql' ){ + $query = str_replace( 'NOW()', 'CURRENT_TIMESTAMP', $query ); + $query = str_replace( 'now()', 'CURRENT_TIMESTAMP', $query ); + }elseif( $type == 'pgsql' ){ $query = str_replace( '`', '"', $query ); + $query = str_replace( 'NOW()', 'CURRENT_TIMESTAMP', $query ); + $query = str_replace( 'now()', 'CURRENT_TIMESTAMP', $query ); } // replace table name prefix - $query = str_replace( '*PREFIX*', $CONFIG_DBTABLEPREFIX, $query ); + $query = str_replace( '*PREFIX*', $prefix, $query ); return $query; } @@ -331,9 +448,9 @@ class OC_DB { * @param string $tableNamme the table to drop */ public static function dropTable($tableName){ - self::connect(); - self::$DBConnection->loadModule('Manager'); - self::$DBConnection->dropTable($tableName); + self::connectMDB2(); + self::$MDB2->loadModule('Manager'); + self::$MDB2->dropTable($tableName); } /** @@ -349,7 +466,7 @@ class OC_DB { $content = file_get_contents( $file ); // Make changes and save them to a temporary file - $file2 = tempnam( sys_get_temp_dir(), 'oc_db_scheme_' ); + $file2 = tempnam( get_temp_dir(), 'oc_db_scheme_' ); $content = str_replace( '*dbname*', $CONFIG_DBNAME, $content ); $content = str_replace( '*dbprefix*', $CONFIG_DBTABLEPREFIX, $content ); file_put_contents( $file2, $content ); @@ -365,37 +482,85 @@ class OC_DB { } /** - * Start a transaction or set a savepoint. - * @param string $savePoint (optional) name of the savepoint to set + * Start a transaction */ - public static function beginTransaction($savePoint=''){ + public static function beginTransaction(){ self::connect(); - if (!self::$DBConnection->supports('transactions')) { + if (self::$backend=self::BACKEND_MDB2 && !self::$connection->supports('transactions')) { return false; } - if($savePoint && !self::$DBConnection->supports('savepoints')){ - return false; - } - if($savePoint){ - self::$DBConnection->beginTransaction($savePoint); - }else{ - self::$DBConnection->beginTransaction(); - } + self::$connection->beginTransaction(); } /** - * Commit the database changes done during a transaction that is in progress or release a savepoint. - * @param string $savePoint (optional) name of the savepoint to commit + * Commit the database changes done during a transaction that is in progress */ public static function commit($savePoint=''){ self::connect(); - if(!self::$DBConnection->inTransaction()){ + if(!self::$connection->inTransaction()){ return false; } - if($savePoint){ - self::$DBConnection->commit($savePoint); - }else{ - self::$DBConnection->commit(); - } + self::$connection->commit(); + } +} + +/** + * small wrapper around PDOStatement to make it behave ,more like an MDB2 Statement + */ +class PDOStatementWrapper{ + private $statement=null; + private $lastArguments=array(); + + public function __construct($statement){ + $this->statement=$statement; + } + + /** + * make execute return the result instead of a bool + */ + public function execute($input=array()){ + $this->lastArguments=$input; + if(count($input)>0){ + $this->statement->execute($input); + }else{ + $this->statement->execute(); + } + return $this; + } + + /** + * provide numRows + */ + public function numRows(){ + $regex = '/^SELECT\s+(?:ALL\s+|DISTINCT\s+)?(?:.*?)\s+FROM\s+(.*)$/i'; + if (preg_match($regex, $this->statement->queryString, $output) > 0) { + $query = OC_DB::prepare("SELECT COUNT(*) FROM {$output[1]}", PDO::FETCH_NUM); + return $query->execute($this->lastArguments)->fetchColumn(); + }else{ + return $this->statement->rowCount(); + } + } + + /** + * provide an alias for fetch + */ + public function fetchRow(){ + return $this->statement->fetch(); + } + + /** + * pass all other function directly to the PDOStatement + */ + public function __call($name,$arguments){ + return call_user_func_array(array($this->statement,$name),$arguments); + } + + /** + * Provide a simple fetchOne. + * fetch single column from the next row + * @param int $colnum the column number to fetch + */ + public function fetchOne($colnum = 0){ + return $this->statement->fetchColumn($colnum); } } diff --git a/lib/files.php b/lib/files.php index 631726bf9b5..9ae5320ad1d 100644 --- a/lib/files.php +++ b/lib/files.php @@ -91,7 +91,7 @@ class OC_Files { if(is_array($files)){ $zip = new ZipArchive(); - $filename = sys_get_temp_dir()."/ownCloud.zip"; + $filename = get_temp_dir()."/ownCloud.zip"; if ($zip->open($filename, ZIPARCHIVE::CREATE)!==TRUE) { exit("cannot open <$filename>\n"); } @@ -108,7 +108,7 @@ class OC_Files { $zip->close(); }elseif(OC_Filesystem::is_dir($dir.'/'.$files)){ $zip = new ZipArchive(); - $filename = sys_get_temp_dir()."/ownCloud.zip"; + $filename = get_temp_dir()."/ownCloud.zip"; if ($zip->open($filename, ZIPARCHIVE::CREATE)!==TRUE) { exit("cannot open <$filename>\n"); } @@ -183,8 +183,8 @@ class OC_Files { */ public static function move($sourceDir,$source,$targetDir,$target){ if(OC_User::isLoggedIn()){ - $targetFile=$targetDir.'/'.$target; - $sourceFile=$sourceDir.'/'.$source; + $targetFile=self::normalizePath($targetDir.'/'.$target); + $sourceFile=self::normalizePath($sourceDir.'/'.$source); return OC_Filesystem::rename($sourceFile,$targetFile); } } @@ -271,7 +271,7 @@ class OC_Files { * @return string guessed mime type */ static function pull($source,$token,$dir,$file){ - $tmpfile=tempnam(sys_get_temp_dir(),'remoteCloudFile'); + $tmpfile=tempnam(get_temp_dir(),'remoteCloudFile'); $fp=fopen($tmpfile,'w+'); $url=$source.="/files/pull.php?token=$token"; $ch=curl_init(); @@ -305,4 +305,19 @@ class OC_Files { $content.= "Options -Indexes\n"; @file_put_contents(OC::$SERVERROOT.'/.htaccess', $content); //supress errors in case we don't have permissions for it } + + /** + * normalize a path, removing any double, add leading /, etc + * @param string $path + * @return string + */ + static public function normalizePath($path){ + $path='/'.$path; + $old=''; + while($old!=$path){//replace any multiplicity of slashes with a single one + $old=$path; + $path=str_replace('//','/',$path); + } + return $path; + } } diff --git a/lib/filestorage/local.php b/lib/filestorage/local.php index d1fe87ec4c2..e846aa420e4 100644 --- a/lib/filestorage/local.php +++ b/lib/filestorage/local.php @@ -38,7 +38,7 @@ class OC_Filestorage_Local extends OC_Filestorage{ public function filetype($path){ $filetype=filetype($this->datadir.$path); if($filetype=='link'){ - $filetype=filetype(readlink($this->datadir.$path)); + $filetype=filetype(realpath($this->datadir.$path)); } return $filetype; } @@ -53,7 +53,7 @@ class OC_Filestorage_Local extends OC_Filestorage{ return is_readable($this->datadir.$path); } public function is_writeable($path){ - return is_writeable($this->datadir.$path); + return is_writable($this->datadir.$path); } public function file_exists($path){ return file_exists($this->datadir.$path); @@ -84,6 +84,11 @@ class OC_Filestorage_Local extends OC_Filestorage{ return $return; } public function rename($path1,$path2){ + if(! $this->file_exists($path1)){ + OC_Log::write('core','unable to rename, file does not exists : '.$path1,OC_Log::ERROR); + return false; + } + if($return=rename($this->datadir.$path1,$this->datadir.$path2)){ $this->clearFolderSizeCache($path1); $this->clearFolderSizeCache($path2); @@ -127,6 +132,13 @@ class OC_Filestorage_Local extends OC_Filestorage{ public function getMimeType($fspath){ if($this->is_readable($fspath)){ $mimeType='application/octet-stream'; + if ($mimeType=='application/octet-stream') { + self::$mimetypes = include('mimetypes.fixlist.php'); + $extention=strtolower(strrchr(basename($fspath), ".")); + $extention=substr($extention,1);//remove leading . + $mimeType=(isset(self::$mimetypes[$extention]))?self::$mimetypes[$extention]:'application/octet-stream'; + + } if (@is_dir($this->datadir.$fspath)) { // directories are easy return "httpd/unix-directory"; @@ -153,7 +165,7 @@ class OC_Filestorage_Local extends OC_Filestorage{ } if ($mimeType=='application/octet-stream') { // Fallback solution: (try to guess the type by the file extension - if(!self::$mimetypes){ + if(!self::$mimetypes || self::$mimetypes != include('mimetypes.list.php')){ self::$mimetypes=include('mimetypes.list.php'); } $extention=strtolower(strrchr(basename($fspath), ".")); @@ -165,7 +177,7 @@ class OC_Filestorage_Local extends OC_Filestorage{ } public function toTmpFile($path){ - $tmpFolder=sys_get_temp_dir(); + $tmpFolder=get_temp_dir(); $filename=tempnam($tmpFolder,'OC_TEMP_FILE_'.substr($path,strrpos($path,'.'))); $fileStats = stat($this->datadir.$path); if(copy($this->datadir.$path,$filename)){ @@ -199,7 +211,6 @@ class OC_Filestorage_Local extends OC_Filestorage{ } private function delTree($dir) { - if(defined("DEBUG") && DEBUG) {error_log('del'.$dir);} $dirRelative=$dir; $dir=$this->datadir.$dir; if (!file_exists($dir)) return true; diff --git a/lib/filestorage/remote.php b/lib/filestorage/remote.php index fb14c4121a2..88bdbca481c 100644 --- a/lib/filestorage/remote.php +++ b/lib/filestorage/remote.php @@ -211,7 +211,7 @@ class OC_Filestorage_Remote extends OC_Filestorage{ $parent=dirname($path); $name=substr($path,strlen($parent)+1); $file=$this->remote->getFile($parent,$name); - $file=tempnam(sys_get_temp_dir(),'oc_'); + $file=tempnam(get_temp_dir(),'oc_'); file_put_contents($file,$data); if($return=$this->remote->sendTmpFile($file,$parent,$name)){ $this->notifyObservers($path,OC_FILEACTION_WRITE); diff --git a/lib/filesystem.php b/lib/filesystem.php index 3d0c92e622e..bd953deb210 100644 --- a/lib/filesystem.php +++ b/lib/filesystem.php @@ -44,10 +44,96 @@ */ class OC_Filesystem{ static private $storages=array(); + static private $mounts=array(); static private $fakeRoot=''; static private $storageTypes=array(); + + /** + * classname which used for hooks handling + * used as signalclass in OC_Hooks::emit() + */ + const CLASSNAME = 'OC_Filesystem'; + + /** + * signalname emited before file renaming + * @param oldpath + * @param newpath + */ + const signal_rename = 'rename'; + + /** + * signal emited after file renaming + * @param oldpath + * @param newpath + */ + const signal_post_rename = 'post_rename'; + /** + * signal emited before file/dir creation + * @param path + * @param run changing this flag to false in hook handler will cancel event + */ + const signal_create = 'create'; + + /** + * signal emited after file/dir creation + * @param path + * @param run changing this flag to false in hook handler will cancel event + */ + const signal_post_create = 'post_create'; + + /** + * signal emits before file/dir copy + * @param oldpath + * @param newpath + * @param run changing this flag to false in hook handler will cancel event + */ + const signal_copy = 'copy'; + + /** + * signal emits after file/dir copy + * @param oldpath + * @param newpath + */ + const signal_post_copy = 'post_copy'; + + /** + * signal emits before file/dir save + * @param path + * @param run changing this flag to false in hook handler will cancel event + */ + const signal_write = 'write'; + + /** + * signal emits after file/dir save + * @param path + */ + const signal_post_write = 'post_write'; + /** + * signal emits when reading file/dir + * @param path + */ + const signal_read = 'read'; + + /** + * signal emits when removing file/dir + * @param path + */ + const signal_delete = 'delete'; + + /** + * parameters definitions for signals + */ + const signal_param_path = 'path'; + const signal_param_oldpath = 'oldpath'; + const signal_param_newpath = 'newpath'; + + /** + * run - changing this flag to false in hook handler will cancel event + */ + const signal_param_run = 'run'; + /** * register a storage type * @param string type @@ -91,7 +177,7 @@ class OC_Filesystem{ * @param array arguments * @return OC_Filestorage */ - static public function createStorage($type,$arguments){ + static private function createStorage($type,$arguments){ if(!self::hasStorageType($type)){ return false; } @@ -129,45 +215,27 @@ class OC_Filesystem{ return $internalPath; } - /** - * check if the current users has the right premissions to read a file - * @param string path - * @return bool - */ - static private function canRead($path){ - if(substr($path,0,1)!=='/'){ - $path='/'.$path; - } - if(strstr($path,'/../') || strrchr($path, '/') === '/..' ){ - return false; - } - return true;//dummy untill premissions are correctly implemented, also the correcty value because for now users are locked in their seperate data dir and can read/write everything in there - } - /** - * check if the current users has the right premissions to write a file - * @param string path - * @return bool - */ - static private function canWrite($path){ - if(substr($path,0,1)!=='/'){ - $path='/'.$path; - } - if(strstr($path,'/../') || strrchr($path, '/') === '/..' ){ - return false; - } - return true;//dummy untill premissions are correctly implemented, also the correcty value because for now users are locked in their seperate data dir and can read/write everything in there - } - /** * mount an OC_Filestorage in our virtual filesystem * @param OC_Filestorage storage * @param string mountpoint */ - static public function mount($storage,$mountpoint){ + static public function mount($type,$arguments,$mountpoint){ if(substr($mountpoint,0,1)!=='/'){ $mountpoint='/'.$mountpoint; } - self::$storages[self::$fakeRoot.$mountpoint]=$storage; + self::$mounts[$mountpoint]=array('type'=>$type,'arguments'=>$arguments); + } + + /** + * create all storage backends mounted in the filesystem + */ + static private function mountAll(){ + foreach(self::$mounts as $mountPoint=>$mount){ + if(!isset(self::$storages[$mountPoint])){ + self::$storages[$mountPoint]=self::createStorage($mount['type'],$mount['arguments']); + } + } } /** @@ -178,6 +246,10 @@ class OC_Filesystem{ static public function getStorage($path){ $mountpoint=self::getMountPoint($path); if($mountpoint){ + if(!isset(self::$storages[$mountpoint])){ + $mount=self::$mounts[$mountpoint]; + self::$storages[$mountpoint]=self::createStorage($mount['type'],$mount['arguments']); + } return self::$storages[$mountpoint]; } } @@ -201,7 +273,7 @@ class OC_Filesystem{ } $path=self::$fakeRoot.$path; $foundMountPoint=''; - foreach(self::$storages as $mountpoint=>$storage){ + foreach(self::$mounts as $mountpoint=>$storage){ if(substr($mountpoint,-1)!=='/'){ $mountpoint=$mountpoint.'/'; } @@ -223,11 +295,26 @@ class OC_Filesystem{ */ static public function getLocalFile($path){ $parent=substr($path,0,strrpos($path,'/')); - if(self::canRead($parent) and $storage=self::getStorage($path)){ + if(self::isValidPath($parent) and $storage=self::getStorage($path)){ return $storage->getLocalFile(self::getInternalPath($path)); } } + /** + * check if the requested path is valid + * @param string path + * @return bool + */ + static public function isValidPath($path){ + if(substr($path,0,1)!=='/'){ + $path='/'.$path; + } + if(strstr($path,'/../') || strrchr($path, '/') === '/..' ){ + return false; + } + return true; + } + static public function mkdir($path){ return self::basicOperation('mkdir',$path,array('create','write')); } @@ -292,9 +379,9 @@ class OC_Filesystem{ return self::basicOperation('unlink',$path,array('delete')); } static public function rename($path1,$path2){ - if(OC_FileProxy::runPreProxies('rename',$path1,$path2) and self::canWrite($path1) and self::canWrite($path2)){ + if(OC_FileProxy::runPreProxies('rename',$path1,$path2) and self::is_writeable($path1) and self::isValidPath($path2)){ $run=true; - OC_Hook::emit( 'OC_Filesystem', 'rename', array( 'oldpath' => $path1 ,'newpath'=>$path2, 'run' => &$run)); + OC_Hook::emit( self::CLASSNAME, self::signal_rename, array( self::signal_param_oldpath => $path1 , self::signal_param_newpath=>$path2, self::signal_param_run => &$run)); if($run){ $mp1=self::getMountPoint($path1); $mp2=self::getMountPoint($path2); @@ -307,21 +394,21 @@ class OC_Filesystem{ $result=$storage2->fromTmpFile($tmpFile,self::getInternalPath($path2)); $storage1->unlink(self::getInternalPath($path1)); } - OC_Hook::emit( 'OC_Filesystem', 'post_rename', array( 'oldpath' => $path1, 'newpath'=>$path2)); + OC_Hook::emit( self::CLASSNAME, self::signal_post_rename, array( self::signal_param_oldpath => $path1, self::signal_param_newpath=>$path2)); return $result; } } } static public function copy($path1,$path2){ - if(OC_FileProxy::runPreProxies('copy',$path1,$path2) and self::canRead($path1) and self::canWrite($path2)){ + if(OC_FileProxy::runPreProxies('copy',$path1,$path2) and self::is_readable($path1) and self::isValidPath($path2)){ $run=true; - OC_Hook::emit( 'OC_Filesystem', 'copy', array( 'oldpath' => $path1 ,'newpath'=>$path2, 'run' => &$run)); + OC_Hook::emit( self::CLASSNAME, self::signal_copy, array( self::signal_param_oldpath => $path1 , self::signal_param_newpath=>$path2, self::signal_param_run => &$run)); $exists=self::file_exists($path2); if($run and !$exists){ - OC_Hook::emit( 'OC_Filesystem', 'create', array( 'path' => $path2, 'run' => &$run)); + OC_Hook::emit( self::CLASSNAME, self::signal_create, array( self::signal_param_path => $path2, self::signal_param_run => &$run)); } if($run){ - OC_Hook::emit( 'OC_Filesystem', 'write', array( 'path' => $path2, 'run' => &$run)); + OC_Hook::emit( self::CLASSNAME, self::signal_write, array( self::signal_param_path => $path2, self::signal_param_run => &$run)); } if($run){ $mp1=self::getMountPoint($path1); @@ -334,11 +421,11 @@ class OC_Filesystem{ $tmpFile=$storage1->toTmpFile(self::getInternalPath($path1)); $result=$storage2->fromTmpFile($tmpFile,self::getInternalPath($path2)); } - OC_Hook::emit( 'OC_Filesystem', 'post_copy', array( 'oldpath' => $path1 ,'newpath'=>$path2)); + OC_Hook::emit( self::CLASSNAME, self::signal_post_copy, array( self::signal_param_oldpath => $path1 , self::signal_param_newpath=>$path2)); if(!$exists){ - OC_Hook::emit( 'OC_Filesystem', 'post_create', array( 'path' => $path2)); + OC_Hook::emit( self::CLASSNAME, self::signal_post_create, array( self::signal_param_path => $path2)); } - OC_Hook::emit( 'OC_Filesystem', 'post_write', array( 'path' => $path2)); + OC_Hook::emit( self::CLASSNAME, self::signal_post_write, array( self::signal_param_path => $path2)); return $result; } } @@ -368,47 +455,47 @@ class OC_Filesystem{ return self::basicOperation('fopen',$path,$hooks,$mode); } static public function toTmpFile($path){ - if(OC_FileProxy::runPreProxies('toTmpFile',$path) and self::canRead($path) and $storage=self::getStorage($path)){ - OC_Hook::emit( 'OC_Filesystem', 'read', array( 'path' => $path)); + if(OC_FileProxy::runPreProxies('toTmpFile',$path) and self::isValidPath($path) and $storage=self::getStorage($path)){ + OC_Hook::emit( self::CLASSNAME, self::signal_read, array( self::signal_param_path => $path)); return $storage->toTmpFile(self::getInternalPath($path)); } } static public function fromTmpFile($tmpFile,$path){ - if(OC_FileProxy::runPreProxies('copy',$tmpFile,$path) and self::canWrite($path) and $storage=self::getStorage($path)){ + if(OC_FileProxy::runPreProxies('copy',$tmpFile,$path) and self::isValidPath($path) and $storage=self::getStorage($path)){ $run=true; $exists=self::file_exists($path); if(!$exists){ - OC_Hook::emit( 'OC_Filesystem', 'create', array( 'path' => $path, 'run' => &$run)); + OC_Hook::emit( self::CLASSNAME, self::signal_create, array( self::signal_param_path => $path, self::signal_param_run => &$run)); } if($run){ - OC_Hook::emit( 'OC_Filesystem', 'write', array( 'path' => $path, 'run' => &$run)); + OC_Hook::emit( self::CLASSNAME, self::signal_write, array( self::signal_param_path => $path, self::signal_param_run => &$run)); } if($run){ $result=$storage->fromTmpFile($tmpFile,self::getInternalPath($path)); if(!$exists){ - OC_Hook::emit( 'OC_Filesystem', 'post_create', array( 'path' => $path)); + OC_Hook::emit( self::CLASSNAME, self::signal_post_create, array( self::signal_param_path => $path)); } - OC_Hook::emit( 'OC_Filesystem', 'post_write', array( 'path' => $path)); + OC_Hook::emit( self::CLASSNAME, self::signal_post_write, array( self::signal_param_path => $path)); return $result; } } } static public function fromUploadedFile($tmpFile,$path){ - if(OC_FileProxy::runPreProxies('fromUploadedFile',$tmpFile,$path) and self::canWrite($path) and $storage=self::getStorage($path)){ + if(OC_FileProxy::runPreProxies('fromUploadedFile',$tmpFile,$path) and self::isValidPath($path) and $storage=self::getStorage($path)){ $run=true; $exists=self::file_exists($path); if(!$exists){ - OC_Hook::emit( 'OC_Filesystem', 'create', array( 'path' => $path, 'run' => &$run)); + OC_Hook::emit( self::CLASSNAME, self::signal_create, array( self::signal_param_path => $path, self::signal_param_run => &$run)); } if($run){ - OC_Hook::emit( 'OC_Filesystem', 'write', array( 'path' => $path, 'run' => &$run)); + OC_Hook::emit( self::CLASSNAME, self::signal_write, array( self::signal_param_path => $path, self::signal_param_run => &$run)); } if($run){ $result=$storage->fromUploadedFile($tmpFile,self::getInternalPath($path)); if(!$exists){ - OC_Hook::emit( 'OC_Filesystem', 'post_create', array( 'path' => $path)); + OC_Hook::emit( self::CLASSNAME, self::signal_post_create, array( self::signal_param_path => $path)); } - OC_Hook::emit( 'OC_Filesystem', 'post_write', array( 'path' => $path)); + OC_Hook::emit( self::CLASSNAME, self::signal_post_write, array( self::signal_param_path => $path)); return $result; } } @@ -425,6 +512,7 @@ class OC_Filesystem{ } static public function search($query){ + self::mountAll(); $files=array(); $fakeRoot=self::$fakeRoot; $fakeRootLength=strlen($fakeRoot); @@ -443,6 +531,10 @@ class OC_Filesystem{ return $files; } + + static public function update_session_file_hash($sessionname,$sessionvalue){ + $_SESSION[$sessionname] = $sessionvalue; + } /** * abstraction for running most basic operations @@ -453,14 +545,14 @@ class OC_Filesystem{ * @return mixed */ private static function basicOperation($operation,$path,$hooks=array(),$extraParam=null){ - if(OC_FileProxy::runPreProxies($operation,$path, $extraParam) and self::canRead($path) and $storage=self::getStorage($path)){ + if(OC_FileProxy::runPreProxies($operation,$path, $extraParam) and self::isValidPath($path) and $storage=self::getStorage($path)){ $interalPath=self::getInternalPath($path); $run=true; foreach($hooks as $hook){ if($hook!='read'){ - OC_Hook::emit( 'OC_Filesystem', $hook, array( 'path' => $path, 'run' => &$run)); + OC_Hook::emit( self::CLASSNAME, $hook, array( self::signal_param_path => $path, self::signal_param_run => &$run)); }else{ - OC_Hook::emit( 'OC_Filesystem', $hook, array( 'path' => $path)); + OC_Hook::emit( self::CLASSNAME, $hook, array( self::signal_param_path => $path)); } } if($run){ @@ -472,7 +564,7 @@ class OC_Filesystem{ $result=OC_FileProxy::runPostProxies($operation,$path,$result); foreach($hooks as $hook){ if($hook!='read'){ - OC_Hook::emit( 'OC_Filesystem', 'post_'.$hook, array( 'path' => $path)); + OC_Hook::emit( self::CLASSNAME, 'post_'.$hook, array( self::signal_param_path => $path)); } } return $result; diff --git a/lib/helper.php b/lib/helper.php index c2a81ba3306..4d1219d78d4 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -56,7 +56,7 @@ class OC_Helper { if($absolute){ // Checking if the request was made through HTTPS. The last in line is for IIS - $protocol = isset($_SERVER['HTTPS']) && ($_SERVER['HTTPS']) && ($_SERVER['HTTPS']!='off'); + $protocol = isset($_SERVER['HTTPS']) && !empty($_SERVER['HTTPS']) && ($_SERVER['HTTPS']!='off'); $urlLinkTo = ($protocol?'https':'http') . '://' . $_SERVER['HTTP_HOST'] . $urlLinkTo; } @@ -96,6 +96,12 @@ class OC_Helper { * Returns the path to the image of this file type. */ public static function mimetypeIcon( $mimetype ){ + $alias=array('application/xml'=>'code/xml'); +// echo $mimetype; + if(isset($alias[$mimetype])){ + $mimetype=$alias[$mimetype]; +// echo $mimetype; + } // Replace slash with a minus $mimetype = str_replace( "/", "-", $mimetype ); @@ -154,24 +160,25 @@ class OC_Helper { */ public static function computerFileSize( $str ){ $bytes = 0; + $str=strtolower($str); $bytes_array = array( - 'B' => 1, - 'K' => 1024, - 'KB' => 1024, - 'MB' => 1024 * 1024, - 'M' => 1024 * 1024, - 'GB' => 1024 * 1024 * 1024, - 'G' => 1024 * 1024 * 1024, - 'TB' => 1024 * 1024 * 1024 * 1024, - 'T' => 1024 * 1024 * 1024 * 1024, - 'PB' => 1024 * 1024 * 1024 * 1024 * 1024, - 'P' => 1024 * 1024 * 1024 * 1024 * 1024, + 'b' => 1, + 'k' => 1024, + 'kb' => 1024, + 'mb' => 1024 * 1024, + 'm' => 1024 * 1024, + 'gb' => 1024 * 1024 * 1024, + 'g' => 1024 * 1024 * 1024, + 'tb' => 1024 * 1024 * 1024 * 1024, + 't' => 1024 * 1024 * 1024 * 1024, + 'pb' => 1024 * 1024 * 1024 * 1024 * 1024, + 'p' => 1024 * 1024 * 1024 * 1024 * 1024, ); $bytes = floatval($str); - if (preg_match('#([KMGTP]?B?)$#si', $str, $matches) && !empty($bytes_array[$matches[1]])) { + if (preg_match('#([kmgtp]?b?)$#si', $str, $matches) && !empty($bytes_array[$matches[1]])) { $bytes *= $bytes_array[$matches[1]]; } diff --git a/lib/hook.php b/lib/hook.php index b069a7da6c0..83a16106bf0 100644 --- a/lib/hook.php +++ b/lib/hook.php @@ -20,7 +20,7 @@ class OC_Hook{ * TODO: write example */ static public function connect( $signalclass, $signalname, $slotclass, $slotname ){ - // Cerate the data structure + // Create the data structure if( !array_key_exists( $signalclass, self::$registered )){ self::$registered[$signalclass] = array(); } diff --git a/lib/image.php b/lib/image.php new file mode 100644 index 00000000000..6de3ed9104d --- /dev/null +++ b/lib/image.php @@ -0,0 +1,557 @@ + +* +* This library is free software; you can redistribute it and/or +* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE +* License as published by the Free Software Foundation; either +* version 3 of the License, or any later version. +* +* This library is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU AFFERO GENERAL PUBLIC LICENSE for more details. +* +* You should have received a copy of the GNU Affero General Public +* License along with this library. If not, see . +* +*/ + +//From user comments at http://dk2.php.net/manual/en/function.exif-imagetype.php +if ( ! function_exists( 'exif_imagetype' ) ) { + function exif_imagetype ( $filename ) { + if ( ( list($width, $height, $type, $attr) = getimagesize( $filename ) ) !== false ) { + return $type; + } + return false; + } +} + +function ellipsis($str, $maxlen) { + if (strlen($str) > $maxlen) { + $characters = floor($maxlen / 2); + return substr($str, 0, $characters) . '...' . substr($str, -1 * $characters); + } + return $str; +} + +/** + * Class for basic image manipulation + * + */ +class OC_Image { + static private $resource = false; // tmp resource. + static private $destroy = false; // if the resource is created withing the object. + static private $imagetype = IMAGETYPE_PNG; // Default to png if file type isn't evident. + static private $filepath = null; + /** + * @brief Constructor. + * @param $imageref The path to a local file, a base64 encoded string or a resource created by an imagecreate* function. + * If a resource is passed it is the job of the caller to destroy it using imagedestroy($var) + * @returns bool False on error + */ + function __construct($imageref = null) { + //OC_Log::write('core','OC_Image::__construct, start', OC_Log::DEBUG); + if(!extension_loaded('gd') || !function_exists('gd_info')) { + //if(!function_exists('imagecreatefromjpeg')) { + OC_Log::write('core','OC_Image::__construct, GD module not installed', OC_Log::ERROR); + return false; + } + if(!is_null($imageref)) { + self::load($imageref); + } + } + + /** + * @brief Destructor. + */ + function __destruct() { + if(is_resource(self::$resource) && self::$destroy) { + imagedestroy(self::$resource); // Why does this issue a warning. + } + } + + /** + * @brief Determine whether the object contains an image resource. + * @returns bool + */ + public function valid() { // apparently you can't name a method 'empty'... + $ret = is_resource(self::$resource); + return $ret; + } + + /** + * @brief Returns the MIME type of the image or an empty string if no image is loaded. + * @returns int + */ + public function mimeType() { + return is_resource(self::$resource) ? image_type_to_mime_type(self::$imagetype) : ''; + } + + /** + * @brief Returns the width of the image or -1 if no image is loaded. + * @returns int + */ + public function width() { + return is_resource(self::$resource) ? imagesx(self::$resource) : -1; + } + + /** + * @brief Returns the height of the image or -1 if no image is loaded. + * @returns int + */ + public function height() { + return is_resource(self::$resource) ? imagesy(self::$resource) : -1; + } + + /** + * @brief Outputs the image. + * @returns bool + */ + public function show() { + return $this->_output(); + } + + /** + * @brief Saves the image. + * @returns bool + */ + + public function save($filepath=null) { + if($filepath === null && self::$filepath === null) { + OC_Log::write('core','OC_Image::save. save() called with no path.', OC_Log::ERROR); + return false; + } elseif($filepath === null && $this->filepath !== null) { + $filepath = $this->filepath; + } + return $this->_output($filepath, true); + } + + /** + * @brief Outputs/saves the image. + */ + private function _output($filepath=null, $really=false) { + if($really === false) { + header('Content-Type: '.self::mimeType()); + $filepath = null; // Just being cautious ;-) + } else { + if(!is_writable(dirname($filepath))) { + OC_Log::write('core','OC_Image::_output. Directory \''.dirname($filepath).'\' is not writable.', OC_Log::ERROR); + return false; + } elseif(is_writable(dirname($filepath)) && file_exists($filepath) && !is_writable($filepath)) { + OC_Log::write('core','OC_Image::_output. File \''.$filepath.'\' is not writable.', OC_Log::ERROR); + return false; + } + } + $retval = false; + switch(self::$imagetype) { + case IMAGETYPE_GIF: + $retval = imagegif(self::$resource, $filepath); + break; + case IMAGETYPE_JPEG: + $retval = imagejpeg(self::$resource, $filepath); + break; + case IMAGETYPE_PNG: + $retval = imagepng(self::$resource, $filepath); + break; + case IMAGETYPE_XBM: + $retval = imagexbm(self::$resource, $filepath); + break; + case IMAGETYPE_WBMP: + case IMAGETYPE_BMP: + $retval = imagewbmp(self::$resource, $filepath); + break; + default: + $retval = imagepng(self::$resource, $filepath); + } + return $retval; + } + + /** + * @brief Prints the image when called as $image(). + */ + public function __invoke() { + return self::show(); + } + + /** + * @returns Returns the image resource in any. + */ + public function resource() { + return self::$resource; + } + + /** + * @returns Returns a base64 encoded string suitable for embedding in a VCard. + */ + function __toString() { + ob_start(); + $res = imagepng(self::$resource); + if (!$res) { + OC_Log::write('core','OC_Image::_string. Error writing image',OC_Log::ERROR); + } + return base64_encode(ob_get_clean()); + } + + /** + * (I'm open for suggestions on better method name ;) + * @brief Fixes orientation based on EXIF data. + * @returns bool. + */ + public function fixOrientation() { + if(!is_callable('exif_read_data')){ + OC_Log::write('core','OC_Image::fixOrientation() Exif module not enabled.', OC_Log::DEBUG); + return false; + } + if(!is_resource(self::$resource)) { + OC_Log::write('core','OC_Image::fixOrientation() No image loaded.', OC_Log::DEBUG); + return false; + } + if(is_null(self::$filepath) || !is_readable(self::$filepath)) { + OC_Log::write('core','OC_Image::fixOrientation() No readable file path set.', OC_Log::DEBUG); + return false; + } + $exif = exif_read_data(self::$filepath, 'IFD0'); + if(!$exif) { + return false; + } + if(!isset($exif['Orientation'])) { + return true; // Nothing to fix + } + $o = $exif['Orientation']; + OC_Log::write('core','OC_Image::fixOrientation() Orientation: '.$o, OC_Log::DEBUG); + $rotate = 0; + $flip = false; + switch($o) { + case 1: + $rotate = 0; + $flip = false; + break; + case 2: // Not tested + $rotate = 0; + $flip = true; + break; + case 3: + $rotate = 180; + $flip = false; + break; + case 4: // Not tested + $rotate = 180; + $flip = true; + break; + case 5: // Not tested + $rotate = 90; + $flip = true; + break; + case 6: + //$rotate = 90; + $rotate = 270; + $flip = false; + break; + case 7: // Not tested + $rotate = 270; + $flip = true; + break; + case 8: + $rotate = 270; + $flip = false; + break; + } + if($rotate) { + $res = imagerotate(self::$resource, $rotate, -1); + if($res) { + if(imagealphablending($res, true)) { + if(imagesavealpha($res, true)) { + self::$resource = $res; + return true; + } else { + OC_Log::write('core','OC_Image::fixOrientation() Error during alphasaving.', OC_Log::DEBUG); + return false; + } + } else { + OC_Log::write('core','OC_Image::fixOrientation() Error during alphablending.', OC_Log::DEBUG); + return false; + } + } else { + OC_Log::write('core','OC_Image::fixOrientation() Error during oriention fixing.', OC_Log::DEBUG); + return false; + } + } + } + + /** + * @brief Loads an image from a local file, a base64 encoded string or a resource created by an imagecreate* function. + * @param $imageref The path to a local file, a base64 encoded string or a resource created by an imagecreate* function. + * If a resource is passed it is the job of the caller to destroy it using imagedestroy($var) + * @returns An image resource or false on error + */ + public function load($imageref) { + if(self::loadFromFile($imageref) !== false) { + return self::$resource; + } elseif(self::loadFromBase64($imageref) !== false) { + return self::$resource; + } elseif(self::loadFromData($imageref) !== false) { + return self::$resource; + } elseif(self::loadFromResource($imageref) !== false) { + return self::$resource; + } else { + OC_Log::write('core','OC_Image::load, couldn\'t load anything. Giving up!', OC_Log::DEBUG); + return false; + } + } + + /** + * @brief Loads an image from a local file. + * @param $imageref The path to a local file. + * @returns An image resource or false on error + */ + public function loadFromFile($imagepath=false) { + if(!is_file($imagepath) || !file_exists($imagepath) || !is_readable($imagepath)) { + // Debug output disabled because this method is tried before loadFromBase64? + OC_Log::write('core','OC_Image::loadFromFile, couldn\'t load: '.ellipsis($imagepath, 50), OC_Log::DEBUG); + return false; + } + $itype = exif_imagetype($imagepath); + switch($itype) { + case IMAGETYPE_GIF: + if (imagetypes() & IMG_GIF) { + self::$resource = imagecreatefromgif($imagepath); + } else { + OC_Log::write('core','OC_Image::loadFromFile, GIF images not supported: '.$imagepath, OC_Log::DEBUG); + } + break; + case IMAGETYPE_JPEG: + if (imagetypes() & IMG_JPG) { + self::$resource = imagecreatefromjpeg($imagepath); + } else { + OC_Log::write('core','OC_Image::loadFromFile, JPG images not supported: '.$imagepath, OC_Log::DEBUG); + } + break; + case IMAGETYPE_PNG: + if (imagetypes() & IMG_PNG) { + self::$resource = imagecreatefrompng($imagepath); + } else { + OC_Log::write('core','OC_Image::loadFromFile, PNG images not supported: '.$imagepath, OC_Log::DEBUG); + } + break; + case IMAGETYPE_XBM: + if (imagetypes() & IMG_XPM) { + self::$resource = imagecreatefromxbm($imagepath); + } else { + OC_Log::write('core','OC_Image::loadFromFile, XBM/XPM images not supported: '.$imagepath, OC_Log::DEBUG); + } + break; + case IMAGETYPE_WBMP: + case IMAGETYPE_BMP: + if (imagetypes() & IMG_WBMP) { + self::$resource = imagecreatefromwbmp($imagepath); + } else { + OC_Log::write('core','OC_Image::loadFromFile, (W)BMP images not supported: '.$imagepath, OC_Log::DEBUG); + } + break; + /* + case IMAGETYPE_TIFF_II: // (intel byte order) + break; + case IMAGETYPE_TIFF_MM: // (motorola byte order) + break; + case IMAGETYPE_JPC: + break; + case IMAGETYPE_JP2: + break; + case IMAGETYPE_JPX: + break; + case IMAGETYPE_JB2: + break; + case IMAGETYPE_SWC: + break; + case IMAGETYPE_IFF: + break; + case IMAGETYPE_ICO: + break; + case IMAGETYPE_SWF: + break; + case IMAGETYPE_PSD: + break; + */ + default: + self::$resource = imagecreatefromstring(file_get_contents($imagepath)); + $itype = IMAGETYPE_PNG; + OC_Log::write('core','OC_Image::loadFromFile, Default', OC_Log::DEBUG); + break; + } + if($this->valid()) { + self::$imagetype = $itype; + self::$filepath = $imagepath; + self::$destroy = true; + } + return self::$resource; + } + + /** + * @brief Loads an image from a string of data. + * @param $str A string of image data as read from a file. + * @returns An image resource or false on error + */ + public function loadFromData($str) { + if(is_resource($str)) { + return false; + } + self::$resource = imagecreatefromstring($str); + if(!self::$resource) { + OC_Log::write('core','OC_Image::loadFromData, couldn\'t load', OC_Log::DEBUG); + return false; + } + self::$destroy = true; + return self::$resource; + } + + /** + * @brief Loads an image from a base64 encoded string. + * @param $str A string base64 encoded string of image data. + * @returns An image resource or false on error + */ + public function loadFromBase64($str) { + if(!is_string($str)) { + return false; + } + $data = base64_decode($str); + if($data) { // try to load from string data + self::$resource = imagecreatefromstring($data); + if(!self::$resource) { + OC_Log::write('core','OC_Image::loadFromBase64, couldn\'t load', OC_Log::DEBUG); + return false; + } + self::$destroy = true; + return self::$resource; + } else { + return false; + } + } + + /** + * @brief Checks if image resource is valid and assigns it to self::$resource. + * @param $res An image resource. + * @returns An image resource or false on error + */ + public function loadFromResource($res) { + if(!is_resource($res)) { + return false; + } + self::$resource = $res; + } + + /** + * @brief Resizes the image preserving ratio. + * @param $maxsize The maximum size of either the width or height. + * @returns bool + */ + public function resize($maxsize) { + if(!self::$resource) { + OC_Log::write('core','OC_Image::resize, No image loaded', OC_Log::ERROR); + return false; + } + $width_orig=imageSX(self::$resource); + $height_orig=imageSY(self::$resource); + $ratio_orig = $width_orig/$height_orig; + + if ($ratio_orig > 1) { + $new_height = round($maxsize/$ratio_orig); + $new_width = $maxsize; + } else { + $new_width = round($maxsize*$ratio_orig); + $new_height = $maxsize; + } + + $process = imagecreatetruecolor(round($new_width), round($new_height)); + if ($process == false) { + OC_Log::write('core','OC_Image::resize. Error creating true color image',OC_Log::ERROR); + imagedestroy($process); + return false; + } + + imagecopyresampled($process, self::$resource, 0, 0, 0, 0, $new_width, $new_height, $width_orig, $height_orig); + if ($process == false) { + OC_Log::write('core','OC_Image::resize. Error resampling process image '.$new_width.'x'.$new_height,OC_Log::ERROR); + imagedestroy($process); + return false; + } + self::$resource = $process; + return true; + } + + /** + * @brief Crops the image to the middle square. If the image is already square it just returns. + * @returns bool for success or failure + */ + public function centerCrop() { + if(!self::$resource) { + OC_Log::write('core','OC_Image::centerCrop, No image loaded', OC_Log::ERROR); + return false; + } + $width_orig=imageSX(self::$resource); + $height_orig=imageSY(self::$resource); + if($width_orig === $height_orig) { + return true; + } + $ratio_orig = $width_orig/$height_orig; + $width = $height = min($width_orig, $height_orig); + + if ($ratio_orig > 1) { + $x = ($width_orig/2) - ($width/2); + $y = 0; + } else { + $y = ($height_orig/2) - ($height/2); + $x = 0; + } + $process = imagecreatetruecolor($width, $height); + if ($process == false) { + OC_Log::write('core','OC_Image::centerCrop. Error creating true color image',OC_Log::ERROR); + imagedestroy($process); + return false; + } + imagecopyresampled($process, self::$resource, 0, 0, $x, $y, $width, $height, $width, $height); + if ($process == false) { + OC_Log::write('core','OC_Image::centerCrop. Error resampling process image '.$width.'x'.$height,OC_Log::ERROR); + imagedestroy($process); + return false; + } + self::$resource = $process; + return true; + } + + /** + * @brief Crops the image from point $x$y with dimension $wx$h. + * @param $x Horizontal position + * @param $y Vertical position + * @param $w Width + * @param $h Hight + * @returns bool for success or failure + */ + public function crop($x, $y, $w, $h) { + if(!self::$resource) { + OC_Log::write('core','OC_Image::crop, No image loaded', OC_Log::ERROR); + return false; + } + $width_orig=imageSX(self::$resource); + $height_orig=imageSY(self::$resource); + //OC_Log::write('core','OC_Image::crop. Original size: '.$width_orig.'x'.$height_orig, OC_Log::DEBUG); + $process = imagecreatetruecolor($w, $h); + if ($process == false) { + OC_Log::write('core','OC_Image::crop. Error creating true color image',OC_Log::ERROR); + imagedestroy($process); + return false; + } + imagecopyresampled($process, self::$resource, 0, 0, $x, $y, $w, $h, $w, $h); + if ($process == false) { + OC_Log::write('core','OC_Image::crop. Error resampling process image '.$w.'x'.$h,OC_Log::ERROR); + imagedestroy($process); + return false; + } + self::$resource = $process; + return true; + } +} diff --git a/lib/installer.php b/lib/installer.php index 0febb2cab46..b2f817e702f 100644 --- a/lib/installer.php +++ b/lib/installer.php @@ -56,28 +56,28 @@ class OC_Installer{ */ public static function installApp( $data = array()){ if(!isset($data['source'])){ - if(defined("DEBUG") && DEBUG) {error_log("No source specified when installing app");} + OC_Log::write('core','No source specified when installing app',OC_Log::ERROR); return false; } //download the file if necesary if($data['source']=='http'){ - $path=tempnam(sys_get_temp_dir(),'oc_installer_'); + $path=tempnam(get_temp_dir(),'oc_installer_'); if(!isset($data['href'])){ - if(defined("DEBUG") && DEBUG) {error_log("No href specified when installing app from http");} + OC_Log::write('core','No href specified when installing app from http',OC_Log::ERROR); return false; } copy($data['href'],$path); }else{ if(!isset($data['path'])){ - if(defined("DEBUG") && DEBUG) {error_log("No path specified when installing app from local file");} + OC_Log::write('core','No path specified when installing app from local file',OC_Log::ERROR); return false; } $path=$data['path']; } //extract the archive in a temporary folder - $extractDir=tempnam(sys_get_temp_dir(),'oc_installer_uncompressed_'); + $extractDir=tempnam(get_temp_dir(),'oc_installer_uncompressed_'); unlink($extractDir); mkdir($extractDir); $zip = new ZipArchive; @@ -85,7 +85,7 @@ class OC_Installer{ $zip->extractTo($extractDir); $zip->close(); } else { - if(defined("DEBUG") && DEBUG) {error_log("Failed to open archive when installing app");} + OC_Log::write('core','Failed to open archive when installing app',OC_Log::ERROR); OC_Helper::rmdirr($extractDir); if($data['source']=='http'){ unlink($path); @@ -95,7 +95,7 @@ class OC_Installer{ //load the info.xml file of the app if(!is_file($extractDir.'/appinfo/info.xml')){ - if(defined("DEBUG") && DEBUG) {error_log("App does not provide an info.xml file");} + OC_Log::write('core','App does not provide an info.xml file',OC_Log::ERROR); OC_Helper::rmdirr($extractDir); if($data['source']=='http'){ unlink($path); @@ -107,7 +107,7 @@ class OC_Installer{ //check if an app with the same id is already installed if(self::isInstalled( $info['id'] )){ - if(defined("DEBUG") && DEBUG) {error_log("App already installed");} + OC_Log::write('core','App already installed',OC_Log::WARN); OC_Helper::rmdirr($extractDir); if($data['source']=='http'){ unlink($path); @@ -117,7 +117,7 @@ class OC_Installer{ //check if the destination directory already exists if(is_dir($basedir)){ - if(defined("DEBUG") && DEBUG) {error_log("App's directory already exists");} + OC_Log::write('core','App directory already exists',OC_Log::WARN); OC_Helper::rmdirr($extractDir); if($data['source']=='http'){ unlink($path); @@ -131,7 +131,7 @@ class OC_Installer{ //copy the app to the correct place if(!mkdir($basedir)){ - if(defined("DEBUG") && DEBUG) {error_log('Can\'t create app folder ('.$basedir.')');} + OC_Log::write('core','Can\'t create app folder ('.$basedir.')',OC_Log::ERROR); OC_Helper::rmdirr($extractDir); if($data['source']=='http'){ unlink($path); @@ -152,14 +152,14 @@ class OC_Installer{ } //run appinfo/install.php - if(!isset($data['noinstall']) or $data['noinstall']==false and is_file($basedir.'/appinfo/install.php')){ + if((!isset($data['noinstall']) or $data['noinstall']==false) and file_exists($basedir.'/appinfo/install.php')){ include($basedir.'/appinfo/install.php'); } //set the installed version OC_Appconfig::setValue($info['id'],'installed_version',$info['version']); OC_Appconfig::setValue($info['id'],'enabled','no'); - return true; + return $info['id']; } /** diff --git a/lib/l10n.php b/lib/l10n.php index 54331d44ae4..a5544eb3a27 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -109,6 +109,22 @@ class OC_L10N{ return vsprintf($text, $parameters); } + /** + * @brief Translating + * @param $textArray The text array we need a translation for + * @returns Translation or the same text + * + * Returns the translation. If no translation is found, $textArray will be + * returned. + */ + public function tA($textArray){ + $result = array(); + foreach($textArray as $key => $text){ + $result[$key] = $this->t($text); + } + return $result; + } + /** * @brief getTranslations * @returns Fetch all translations diff --git a/lib/log.php b/lib/log.php new file mode 100644 index 00000000000..446ddd48848 --- /dev/null +++ b/lib/log.php @@ -0,0 +1,74 @@ +. + * + */ + +/** + *logging utilities + * + * Log is saved at data/owncloud.log (on default) + */ + +class OC_Log{ + const DEBUG=0; + const INFO=1; + const WARN=2; + const ERROR=3; + const FATAL=4; + + /** + * write a message in the log + * @param string $app + * @param string $message + * @param int level + */ + public static function write($app,$message,$level){ + $minLevel=OC_Config::getValue( "loglevel", 2 ); + if($level>=$minLevel){ + $datadir=OC_Config::getValue( "datadirectory", OC::$SERVERROOT.'/data' ); + $logFile=OC_Config::getValue( "logfile", $datadir.'/owncloud.log' ); + $entry=array('app'=>$app,'message'=>$message,'level'=>$level,'time'=>time()); + $fh=fopen($logFile,'a'); + fwrite($fh,json_encode($entry)."\n"); + fclose($fh); + } + } + + public static function getEntries(){ + $datadir=OC_Config::getValue( "datadirectory", OC::$SERVERROOT.'/data' ); + $logFile=OC_Config::getValue( "logfile", $datadir.'/owncloud.log' ); + $entries=array(); + if(!file_exists($logFile)){ + return array(); + } + $fh=fopen($logFile,'r'); + if($fh === false){ // Unable to read log file! + return array(); + } + while(!feof($fh)){ + $line=fgets($fh); + if($line){ + $entries[]=json_decode($line); + } + } + fclose($fh); + return $entries; + } +} diff --git a/lib/mimetypes.fixlist.php b/lib/mimetypes.fixlist.php new file mode 100644 index 00000000000..1c6acbc4438 --- /dev/null +++ b/lib/mimetypes.fixlist.php @@ -0,0 +1,14 @@ +'text/calendar', + 'ical'=>'text/calendar', + 'js'=>'application/javascript', + 'odt'=>'application/vnd.oasis.opendocument.text', + 'ods'=>'application/vnd.oasis.opendocument.spreadsheet', + 'odg'=>'application/vnd.oasis.opendocument.graphics', + 'odp'=>'application/vnd.oasis.opendocument.presentation', + 'pl'=>'text/x-script.perl', + 'py'=>'text/x-script.phyton', + 'vcf' => 'text/vcard', + 'vcard' => 'text/vcard' +); diff --git a/lib/ocsclient.php b/lib/ocsclient.php index 654c5e0527b..9d5932fb720 100644 --- a/lib/ocsclient.php +++ b/lib/ocsclient.php @@ -108,6 +108,7 @@ class OC_OCSClient{ $xml=@file_get_contents($url); if($xml==FALSE){ + OC_Log::write('core','Unable to parse OCS content',OC_Log::FATAL); return NULL; } $data=simplexml_load_string($xml); @@ -129,6 +130,33 @@ class OC_OCSClient{ return $app; } + /** + * @brief Get the download url for an application from the OCS server + * @returns array with application data + * + * This function returns an download url for an applications from the OCS server + */ + public static function getApplicationDownload($id,$item){ + $url='http://api.apps.owncloud.com/v1/content/download/'.urlencode($id).'/'.urlencode($item); + + $xml=@file_get_contents($url); + if($xml==FALSE){ + OC_Log::write('core','Unable to parse OCS content',OC_Log::FATAL); + return NULL; + } + $data=simplexml_load_string($xml); + + $tmp=$data->data->content; + $app=array(); + if(isset($tmp->downloadlink)) { + $app['downloadlink']=$tmp->downloadlink; + }else{ + $app['downloadlink']=''; + } + return $app; + } + + /** * @brief Get all the knowledgebase entries from the OCS server * @returns array with q and a data @@ -143,6 +171,7 @@ class OC_OCSClient{ $kbe=array(); $xml=@file_get_contents($url); if($xml==FALSE){ + OC_Log::write('core','Unable to parse knowledgebase content',OC_Log::FATAL); return NULL; } $data=simplexml_load_string($xml); diff --git a/lib/preferences.php b/lib/preferences.php index 6d8aa17afd5..75201f455ba 100644 --- a/lib/preferences.php +++ b/lib/preferences.php @@ -140,7 +140,6 @@ class OC_Preferences{ // Check if the key does exist $query = OC_DB::prepare( 'SELECT configvalue FROM *PREFIX*preferences WHERE userid = ? AND appid = ? AND configkey = ?' ); $values=$query->execute(array($user,$app,$key))->fetchAll(); - if(defined("DEBUG") && DEBUG) {error_log(print_r($values,true));} $exists=(count($values)>0); if( !$exists ){ diff --git a/lib/remote/cloud.php b/lib/remote/cloud.php index 75d60155d06..a9c74e8bf5f 100644 --- a/lib/remote/cloud.php +++ b/lib/remote/cloud.php @@ -17,7 +17,7 @@ class OC_REMOTE_CLOUD{ */ private function apiCall($action,$parameters=false,$assoc=false){ if(!$this->cookiefile){ - $this->cookiefile=sys_get_temp_dir().'/remoteCloudCookie'.uniqid(); + $this->cookiefile=get_temp_dir().'/remoteCloudCookie'.uniqid(); } $url=$this->path.='/files/api.php'; $fields_string="action=$action&"; @@ -168,9 +168,9 @@ class OC_REMOTE_CLOUD{ } $ch=curl_init(); if(!$this->cookiefile){ - $this->cookiefile=sys_get_temp_dir().'/remoteCloudCookie'.uniqid(); + $this->cookiefile=get_temp_dir().'/remoteCloudCookie'.uniqid(); } - $tmpfile=tempnam(sys_get_temp_dir(),'remoteCloudFile'); + $tmpfile=tempnam(get_temp_dir(),'remoteCloudFile'); $fp=fopen($tmpfile,'w+'); $url=$this->path.="/files/api.php?action=get&dir=$dir&file=$file"; curl_setopt($ch,CURLOPT_URL,$url); @@ -191,7 +191,7 @@ class OC_REMOTE_CLOUD{ public function sendTmpFile($tmp,$targetDir,$targetFile){ $token=sha1(uniqid().$tmp); - $file=sys_get_temp_dir().'/'.'remoteCloudFile'.$token; + $file=get_temp_dir().'/'.'remoteCloudFile'.$token; rename($tmp,$file); if( OC_Config::getValue( "forcessl", false ) or isset($_SERVER['HTTPS']) and $_SERVER['HTTPS'] == 'on') { $url = "https://". $_SERVER['SERVER_NAME'] . OC::$WEBROOT; diff --git a/lib/setup.php b/lib/setup.php index 36ee966c556..30a91b4681b 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -84,7 +84,7 @@ class OC_Setup { $dbpass = $options['dbpass']; $dbname = $options['dbname']; $dbhost = $options['dbhost']; - $dbtableprefix = $options['dbtableprefix']; + $dbtableprefix = isset($options['dbtableprefix']) ? $options['dbtableprefix'] : 'oc_'; OC_Config::setValue('dbname', $dbname); OC_Config::setValue('dbhost', $dbhost); OC_Config::setValue('dbtableprefix', $dbtableprefix); @@ -98,35 +98,45 @@ class OC_Setup { ); } else { + $oldUser=OC_Config::getValue('dbuser', false); + $oldPassword=OC_Config::getValue('dbpassword', false); + $query="SELECT user FROM mysql.user WHERE user='$dbuser'"; //this should be enough to check for admin rights in mysql if(mysql_query($query, $connection)) { //use the admin login data for the new database user //add prefix to the mysql user name to prevent collissions - $dbusername=substr('oc_mysql_'.$username,0,16); - //hash the password so we don't need to store the admin config in the config file - $dbpassword=md5(time().$password); - - self::createDBUser($dbusername, $dbpassword, $connection); - - OC_Config::setValue('dbuser', $dbusername); - OC_Config::setValue('dbpassword', $dbpassword); + $dbusername=substr('oc_'.$username,0,16); + if($dbusername!=$oldUser){ + //hash the password so we don't need to store the admin config in the config file + $dbpassword=md5(time().$password); + + self::createDBUser($dbusername, $dbpassword, $connection); + + OC_Config::setValue('dbuser', $dbusername); + OC_Config::setValue('dbpassword', $dbpassword); + } //create the database self::createDatabase($dbname, $dbusername, $connection); } else { - OC_Config::setValue('dbuser', $dbuser); - OC_Config::setValue('dbpassword', $dbpass); + if($dbuser!=$oldUser){ + OC_Config::setValue('dbuser', $dbuser); + OC_Config::setValue('dbpassword', $dbpass); + } //create the database self::createDatabase($dbname, $dbuser, $connection); } //fill the database if needed - $query="SELECT * FROM $dbname.{$dbtableprefix}users"; + $query="select count(*) from information_schema.tables where table_schema='$dbname' AND table_name = '{$dbtableprefix}users';"; $result = mysql_query($query,$connection); - if(!$result) { + if($result){ + $row=mysql_fetch_row($result); + } + if(!$result or $row[0]==0) { OC_DB::createDbFromStructure('db_structure.xml'); } mysql_close($connection); @@ -160,8 +170,8 @@ class OC_Setup { //add prefix to the postgresql user name to prevent collissions $dbusername='oc_'.$username; - //hash the password so we don't need to store the admin config in the config file - $dbpassword=md5(time().$password); + //create a new password so we don't need to store the admin config in the config file + $dbpassword=md5(time()); self::pg_createDBUser($dbusername, $dbpassword, $connection); @@ -179,13 +189,29 @@ class OC_Setup { self::pg_createDatabase($dbname, $dbuser, $connection); } - //fill the database if needed - $query = "SELECT relname FROM pg_class WHERE relname='{$dbtableprefix}users' limit 1"; - $result = pg_query($connection, $query); - if(!$result) { - OC_DB::createDbFromStructure('db_structure.xml'); - } + // the connection to dbname=postgres is not needed anymore pg_close($connection); + + // connect to the ownCloud database (dbname=$dbname) an check if it needs to be filled + $dbuser = OC_CONFIG::getValue('dbuser'); + $dbpass = OC_CONFIG::getValue('dbpassword'); + $connection_string = "host=$dbhost dbname=$dbname user=$dbuser password=$dbpass"; + $connection = @pg_connect($connection_string); + if(!$connection) { + $error[] = array( + 'error' => 'PostgreSQL username and/or password not valid', + 'hint' => 'You need to enter either an existing account or the administrator.' + ); + } else { + $query = "select count(*) FROM pg_class WHERE relname='{$dbtableprefix}users' limit 1"; + $result = pg_query($connection, $query); + if($result) { + $row = pg_fetch_row($result); + } + if(!$result or $row[0]==0) { + OC_DB::createDbFromStructure('db_structure.xml'); + } + } } } else { @@ -221,7 +247,7 @@ class OC_Setup { } public static function createDatabase($name,$user,$connection) { - //we cant user OC_BD functions here because we need to connect as the administrative user. + //we cant use OC_BD functions here because we need to connect as the administrative user. $query = "CREATE DATABASE IF NOT EXISTS `$name`"; $result = mysql_query($query, $connection); if(!$result) { @@ -243,7 +269,7 @@ class OC_Setup { } public static function pg_createDatabase($name,$user,$connection) { - //we cant user OC_BD functions here because we need to connect as the administrative user. + //we cant use OC_BD functions here because we need to connect as the administrative user. $query = "CREATE DATABASE $name OWNER $user"; $result = pg_query($connection, $query); if(!$result) { @@ -275,7 +301,7 @@ class OC_Setup { $content.= "php_value post_max_size 512M\n"; $content.= "SetEnv htaccessWorking true\n"; $content.= "\n"; - $content.= "\n"; + $content.= "\n"; $content.= "RewriteEngine on\n"; $content.= "RewriteRule .* - [env=HTTP_AUTHORIZATION:%{HTTP:Authorization},last]\n"; $content.= "\n"; diff --git a/lib/template.php b/lib/template.php index 440b62003e7..881d2a27b1e 100644 --- a/lib/template.php +++ b/lib/template.php @@ -98,6 +98,33 @@ function relative_modified_date($timestamp) { else { return $l->t('years ago'); } } +function html_select_options($options, $selected, $params=array()) { + if (!is_array($selected)){ + $selected=array($selected); + } + if (isset($params['combine']) && $params['combine']){ + $options = array_combine($options, $options); + } + $value_name = $label_name = false; + if (isset($params['value'])){ + $value_name = $params['value']; + } + if (isset($params['label'])){ + $label_name = $params['label']; + } + $html = ''; + foreach($options as $value => $label){ + if ($value_name && is_array($label)){ + $value = $label[$value_name]; + } + if ($label_name && is_array($label)){ + $label = $label[$label_name]; + } + $select = in_array($value, $selected) ? ' selected="selected"' : ''; + $html .= ''."\n"; + } + return $html; +} /** * This class provides the templates for owncloud. diff --git a/lib/updater.php b/lib/updater.php index e4db719a62c..e992e4dcf11 100644 --- a/lib/updater.php +++ b/lib/updater.php @@ -52,13 +52,9 @@ class OC_Updater{ $tmp['url'] = $data->url; $tmp['web'] = $data->web; - return $tmp; - } - - public static function ShowUpdatingHint(){ $data=OC_Updater::check(); if(isset($data['version']) and $data['version']<>'') { @@ -67,10 +63,8 @@ class OC_Updater{ $txt='Your ownCloud is up to date'; } return($txt); - } - /** * do ownCloud update */ @@ -83,9 +77,4 @@ class OC_Updater{ //update version in config } - } - - - -?> diff --git a/lib/user.php b/lib/user.php index 241d9aa8b10..34f44f572e0 100644 --- a/lib/user.php +++ b/lib/user.php @@ -120,7 +120,7 @@ class OC_User { return false; } // No empty username - if( !$uid ){ + if(trim($uid) == ''){ return false; } // Check if user already exists @@ -169,7 +169,8 @@ class OC_User { foreach( OC_Group::getUserGroups( $uid ) as $i ){ OC_Group::removeFromGroup( $uid, $i ); } - + // Delete the user's keys in preferences + OC_Preferences::deleteUser($uid); // Emit and exit OC_Hook::emit( "OC_User", "post_deleteUser", array( "uid" => $uid )); return true; diff --git a/lib/util.php b/lib/util.php index 2b2238f9220..2fba1206bff 100644 --- a/lib/util.php +++ b/lib/util.php @@ -24,7 +24,7 @@ class OC_Util { $success=@mkdir($CONFIG_DATADIRECTORY_ROOT); if(!$success) { $tmpl = new OC_Template( '', 'error', 'guest' ); - $tmpl->assign('errors',array(1=>array('error'=>"Can't create data directory (".$CONFIG_DATADIRECTORY_ROOT.")",'hint'=>"You can usually fix this by setting the owner of '".OC::$SERVERROOT."' to the user that the web server uses (".OC_Util::checkWebserverUser().")"))); + $tmpl->assign('errors',array(1=>array('error'=>"Can't create data directory (".$CONFIG_DATADIRECTORY_ROOT.")",'hint'=>"You can usually fix this by giving the webserver write access to the ownCloud directory '".OC::$SERVERROOT."' "))); $tmpl->printPage(); exit; } @@ -36,42 +36,14 @@ class OC_Util { } if( $user != "" ){ //if we aren't logged in, there is no use to set up the filesystem - //first set up the local "root" storage and the backupstorage if needed - $rootStorage=OC_Filesystem::createStorage('local',array('datadir'=>$CONFIG_DATADIRECTORY_ROOT)); -// if( OC_Config::getValue( "enablebackup", false )){ -// // This creates the Directorys recursively -// if(!is_dir( "$CONFIG_BACKUPDIRECTORY/$user/$root" )){ -// mkdir( "$CONFIG_BACKUPDIRECTORY/$user/$root", 0755, true ); -// } -// $backupStorage=OC_Filesystem::createStorage('local',array('datadir'=>$CONFIG_BACKUPDIRECTORY)); -// $backup=new OC_FILEOBSERVER_BACKUP(array('storage'=>$backupStorage)); -// $rootStorage->addObserver($backup); -// } - OC_Filesystem::mount($rootStorage,'/'); - - // TODO add this storage provider in a proper way - $sharedStorage = OC_Filesystem::createStorage('shared',array('datadir'=>'/'.OC_User::getUser().'/files/Shared')); - OC_Filesystem::mount($sharedStorage,'/'.OC_User::getUser().'/files/Shared/'); + //first set up the local "root" storage + OC_Filesystem::mount('local',array('datadir'=>$CONFIG_DATADIRECTORY_ROOT),'/'); OC::$CONFIG_DATADIRECTORY = $CONFIG_DATADIRECTORY_ROOT."/$user/$root"; if( !is_dir( OC::$CONFIG_DATADIRECTORY )){ mkdir( OC::$CONFIG_DATADIRECTORY, 0755, true ); } -// TODO: find a cool way for doing this -// //set up the other storages according to the system settings -// foreach($CONFIG_FILESYSTEM as $storageConfig){ -// if(OC_Filesystem::hasStorageType($storageConfig['type'])){ -// $arguments=$storageConfig; -// unset($arguments['type']); -// unset($arguments['mountpoint']); -// $storage=OC_Filesystem::createStorage($storageConfig['type'],$arguments); -// if($storage){ -// OC_Filesystem::mount($storage,$storageConfig['mountpoint']); -// } -// } -// } - //jail the user into his "home" directory OC_Filesystem::chroot("/$user/$root"); $quotaProxy=new OC_FileProxy_Quota(); @@ -90,7 +62,7 @@ class OC_Util { * @return array */ public static function getVersion(){ - return array(2,00,1); + return array(3,00,0); } /** @@ -98,7 +70,7 @@ class OC_Util { * @return string */ public static function getVersionString(){ - return '2'; + return '3'; } /** @@ -153,7 +125,7 @@ class OC_Util { */ public static function formatDate( $timestamp,$dateOnly=false){ if(isset($_SESSION['timezone'])){//adjust to clients timezone if we know it - $systemTimeZone = intval(exec('date +%z')); + $systemTimeZone = intval(date('O')); $systemTimeZone=(round($systemTimeZone/100,0)*60)+($systemTimeZone%100); $clientTimeZone=$_SESSION['timezone']*60; $offset=$clientTimeZone-$systemTimeZone; @@ -203,15 +175,14 @@ class OC_Util { $errors=array(); //check for database drivers - if(!is_callable('sqlite_open') and !is_callable('mysql_connect')){ - $errors[]=array('error'=>'No database drivers (sqlite or mysql) installed.
    ','hint'=>'');//TODO: sane hint + if(!(is_callable('sqlite_open') or class_exists('SQLite3')) and !is_callable('mysql_connect') and !is_callable('pg_connect')){ + $errors[]=array('error'=>'No database drivers (sqlite, mysql, or postgresql) installed.
    ','hint'=>'');//TODO: sane hint } $CONFIG_DBTYPE = OC_Config::getValue( "dbtype", "sqlite" ); $CONFIG_DBNAME = OC_Config::getValue( "dbname", "owncloud" ); - $serverUser=OC_Util::checkWebserverUser(); //common hint for all file permissons error messages - $permissionsHint="Permissions can usually be fixed by setting the owner of the file or directory to the user the web server runs as ($serverUser)"; + $permissionsHint="Permissions can usually be fixed by giving the webserver write access to the ownCloud directory"; //check for correct file permissions if(!stristr(PHP_OS, 'WIN')){ @@ -255,6 +226,10 @@ class OC_Util { $errors[]=array('error'=>'PHP module ctype is not installed.
    ','hint'=>'Please ask your server administrator to install the module.'); } + if(file_exists(OC::$SERVERROOT."/config/config.php") and !is_writeable(OC::$SERVERROOT."/config/config.php")){ + $errors[]=array('error'=>"Can't write into config directory 'config'",'hint'=>"You can usually fix this by giving the webserver use write access to the config directory in owncloud"); + } + return $errors; } @@ -267,22 +242,6 @@ class OC_Util { OC_Template::printGuestPage("", "login", $parameters); } - /** - * Try to get the username the httpd server runs on, used in hints - */ - public static function checkWebserverUser(){ - $stat=stat($_SERVER['DOCUMENT_ROOT']); - if(is_callable('posix_getpwuid')){ - $serverUser=posix_getpwuid($stat['uid']); - $serverUser='\''.$serverUser['name'].'\''; - }elseif(exec('whoami')){ - $serverUser=exec('whoami'); - }else{ - $serverUser='\'www-data\' for ubuntu/debian'; //TODO: try to detect the distro and give a guess based on that - } - return $serverUser; - } - /** * Check if the app is enabled, send json error msg if not diff --git a/lib/vobject.php b/lib/vobject.php new file mode 100644 index 00000000000..e3479fc6d36 --- /dev/null +++ b/lib/vobject.php @@ -0,0 +1,207 @@ +. + * + */ + +/** + * This class provides a streamlined interface to the Sabre VObject classes + */ +class OC_VObject{ + /** @var Sabre_VObject_Component */ + protected $vobject; + + /** + * @returns Sabre_VObject_Component + */ + public function getVObject(){ + return $this->vobject; + } + + /** + * @brief Parses the VObject + * @param string VObject as string + * @returns Sabre_VObject or null + */ + public static function parse($data){ + try { + Sabre_VObject_Reader::$elementMap['LAST-MODIFIED'] = 'Sabre_VObject_Element_DateTime'; + $vobject = Sabre_VObject_Reader::read($data); + if ($vobject instanceof Sabre_VObject_Component){ + $vobject = new OC_VObject($vobject); + } + return $vobject; + } catch (Exception $e) { + OC_Log::write('vobject', $e->getMessage(), OC_Log::ERROR); + return null; + } + } + + /** + * @brief Escapes semicolons + * @param string $value + * @return string + */ + public static function escapeSemicolons($value){ + foreach($value as &$i ){ + $i = implode("\\\\;", explode(';', $i)); + } + return implode(';',$value); + } + + /** + * @brief Creates an array out of a multivalue property + * @param string $value + * @return array + */ + public static function unescapeSemicolons($value){ + $array = explode(';',$value); + for($i=0;$ivobject = $vobject_or_name; + } else { + $this->vobject = new Sabre_VObject_Component($vobject_or_name); + } + } + + public function add($item, $itemValue = null){ + if ($item instanceof OC_VObject){ + $item = $item->getVObject(); + } + $this->vobject->add($item, $itemValue); + } + + /** + * @brief Add property to vobject + * @param object $name of property + * @param object $value of property + * @param object $parameters of property + * @returns Sabre_VObject_Property newly created + */ + public function addProperty($name, $value, $parameters=array()){ + if(is_array($value)){ + $value = OC_VObject::escapeSemicolons($value); + } + $property = new Sabre_VObject_Property( $name, $value ); + foreach($parameters as $name => $value){ + $property->parameters[] = new Sabre_VObject_Parameter($name, $value); + } + + $this->vobject->add($property); + return $property; + } + + public function setUID(){ + $uid = substr(md5(rand().time()),0,10); + $this->vobject->add('UID',$uid); + } + + public function setString($name, $string){ + if ($string != ''){ + $string = strtr($string, array("\r\n"=>"\n")); + $this->vobject->__set($name, $string); + }else{ + $this->vobject->__unset($name); + } + } + + /** + * Sets or unsets the Date and Time for a property. + * When $datetime is set to 'now', use the current time + * When $datetime is null, unset the property + * + * @param string property name + * @param DateTime $datetime + * @param int $dateType + * @return void + */ + public function setDateTime($name, $datetime, $dateType=Sabre_VObject_Element_DateTime::LOCALTZ){ + if ($datetime == 'now'){ + $datetime = new DateTime(); + } + if ($datetime instanceof DateTime){ + $datetime_element = new Sabre_VObject_Element_DateTime($name); + $datetime_element->setDateTime($datetime, $dateType); + $this->vobject->__set($name, $datetime_element); + }else{ + $this->vobject->__unset($name); + } + } + + public function getAsString($name){ + return $this->vobject->__isset($name) ? + $this->vobject->__get($name)->value : + ''; + } + + public function getAsArray($name){ + $values = array(); + if ($this->vobject->__isset($name)){ + $values = explode(',', $this->getAsString($name)); + $values = array_map('trim', $values); + } + return $values; + } + + public function &__get($name){ + if ($name == 'children'){ + return $this->vobject->children; + } + $return = $this->vobject->__get($name); + if ($return instanceof Sabre_VObject_Component){ + $return = new OC_VObject($return); + } + return $return; + } + + public function __set($name, $value){ + return $this->vobject->__set($name, $value); + } + + public function __unset($name){ + return $this->vobject->__unset($name); + } + + public function __isset($name){ + return $this->vobject->__isset($name); + } + + public function __call($function,$arguments){ + return call_user_func_array(array($this->vobject, $function), $arguments); + } +} diff --git a/settings/admin.php b/settings/admin.php index 81ed6aa9516..9ee79002b5e 100644 --- a/settings/admin.php +++ b/settings/admin.php @@ -9,10 +9,12 @@ require_once('../lib/base.php'); OC_Util::checkAdminUser(); OC_Util::addStyle( "settings", "settings" ); +OC_Util::addScript( "settings", "admin" ); OC_App::setActiveNavigationEntry( "admin" ); $tmpl = new OC_Template( 'settings', 'admin', 'user'); $forms=OC_App::getForms('admin'); +$tmpl->assign('loglevel',OC_Config::getValue( "loglevel", 2 )); $tmpl->assign('forms',array()); foreach($forms as $form){ $tmpl->append('forms',$form); diff --git a/settings/ajax/setloglevel.php b/settings/ajax/setloglevel.php new file mode 100644 index 00000000000..298cbd64738 --- /dev/null +++ b/settings/ajax/setloglevel.php @@ -0,0 +1,15 @@ + + * This file is licensed under the Affero General Public License version 3 or later. + * See the COPYING-README file. + */ + +require_once('../../lib/base.php'); +OC_Util::checkAdminUser(); + +OC_Config::setValue( 'loglevel', $_POST['level'] ); + +echo 'true'; + +?> \ No newline at end of file diff --git a/settings/ajax/setquota.php b/settings/ajax/setquota.php index edbf5b74516..5c07285cfca 100644 --- a/settings/ajax/setquota.php +++ b/settings/ajax/setquota.php @@ -10,6 +10,6 @@ $quota= OC_Helper::computerFileSize($_POST["quota"]); // Return Success story OC_Preferences::setValue($username,'files','quota',$quota); -OC_JSON::success(array("data" => array( "username" => $username ,'quota'=>$quota))); +OC_JSON::success(array("data" => array( "username" => $username ,'quota'=>OC_Helper::humanFileSize($quota)))); ?> diff --git a/settings/apps.php b/settings/apps.php index 27b4c17f9e6..0889b0c45ed 100644 --- a/settings/apps.php +++ b/settings/apps.php @@ -43,22 +43,38 @@ foreach($registeredApps as $app){ } } -// dissabled for now -// $catagoryNames=OC_OCSClient::getCategories(); -// if(is_array($catagoryNames)){ -// $categories=array_keys($catagoryNames); -// $externalApps=OC_OCSClient::getApplications($categories); -// foreach($externalApps as $app){ -// $apps[]=array( -// 'name'=>$app['name'], -// 'id'=>$app['id'], -// 'active'=>false, -// 'description'=>$app['description'], -// 'author'=>$app['personid'], -// 'license'=>$app['license'], -// ); -// } -// } +function app_sort($a, $b){ + if ($a['active'] != $b['active']){ + return $b['active'] - $a['active']; + } + return strcmp($a['name'], $b['name']); +} +usort($apps, 'app_sort'); + +// apps from external repo via OCS + $catagoryNames=OC_OCSClient::getCategories(); + if(is_array($catagoryNames)){ + $categories=array_keys($catagoryNames); + $externalApps=OC_OCSClient::getApplications($categories); + foreach($externalApps as $app){ + // show only external apps that are not exist yet + $local=false; + foreach($apps as $a){ + if($a['name']==$app['name']) $local=true; + } + + if(!$local) { + $apps[]=array( + 'name'=>$app['name'], + 'id'=>$app['id'], + 'active'=>false, + 'description'=>$app['description'], + 'author'=>$app['personid'], + 'license'=>$app['license'], + ); + } + } + } diff --git a/settings/img/log Icon License b/settings/img/log Icon License new file mode 100644 index 00000000000..b5c3167d733 --- /dev/null +++ b/settings/img/log Icon License @@ -0,0 +1,2 @@ +CC BY 3.0 +http://thenounproject.com/en-us/noun/printer/#icon-No109 \ No newline at end of file diff --git a/settings/img/log.png b/settings/img/log.png new file mode 100644 index 00000000000..c84b3b29f19 Binary files /dev/null and b/settings/img/log.png differ diff --git a/settings/img/log.svg b/settings/img/log.svg new file mode 100755 index 00000000000..72d4758aceb --- /dev/null +++ b/settings/img/log.svg @@ -0,0 +1,86 @@ + + + +image/svg+xml + + + + + + + + \ No newline at end of file diff --git a/settings/js/admin.js b/settings/js/admin.js new file mode 100644 index 00000000000..a3585f7e1c2 --- /dev/null +++ b/settings/js/admin.js @@ -0,0 +1,5 @@ +$(document).ready(function(){ + $('#loglevel').change(function(){ + $.post(OC.filePath('settings','ajax','setloglevel.php'), { level: $(this).val() } ); + }) +}); \ No newline at end of file diff --git a/settings/js/users.js b/settings/js/users.js index 64a132b427e..c9b1d855db0 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -30,9 +30,10 @@ $(document).ready(function(){ } element.multiSelect({ createText:'add group', - checked:checked, - oncheck:checkHandeler, - onuncheck:checkHandeler + checked:checked, + oncheck:checkHandeler, + onuncheck:checkHandeler, + minWidth: 100, }); } $('select[multiple]').each(function(index,element){ @@ -101,8 +102,11 @@ $(document).ready(function(){ if($(this).val().length>0){ $.post( OC.filePath('settings','ajax','setquota.php'), - {username:uid,quota:$(this).val()}, - function(result){} + {username:uid,quota:$(this).val()}, + function(result){ + img.parent().children('span').text(result.data.quota) + $(this).parent().attr('data-quota',result.data.quota); + } ); input.blur(); }else{ @@ -111,7 +115,7 @@ $(document).ready(function(){ } }); input.blur(function(){ - var quota=$(this).parent().data('quota'); + var quota=$(this).parent().attr('data-quota'); $(this).replaceWith($(''+quota+'')); img.css('display',''); }); @@ -123,12 +127,16 @@ $(document).ready(function(){ $('#newuser').submit(function(event){ event.preventDefault(); var username=$('#newusername').val(); - if(username == '') { + if($('#content table tbody tr').filterAttr('data-uid',username).length>0){ + return; + } + if($.trim(username) == '') { alert('Please provide a username!'); return false; } var password=$('#newuserpassword').val(); var groups=$('#newusergroups').prev().children('div').data('settings').checked; + var tr $.post( OC.filePath('settings','ajax','createuser.php'), { @@ -137,10 +145,12 @@ $(document).ready(function(){ groups:groups, }, function(result){ - + if(result.status!='success'){ + tr.remove(); + } } ); - var tr=$('#content table tbody tr').first().clone(); + tr=$('#content table tbody tr').first().clone(); tr.attr('data-uid',username); tr.find('td.name').text(username); var select=$(' + + + + + + diff --git a/settings/templates/help.php b/settings/templates/help.php index 4e3cdd7b908..754bf8b6376 100644 --- a/settings/templates/help.php +++ b/settings/templates/help.php @@ -9,7 +9,10 @@ printPage(); + if($pageNavi) + { + $pageNavi->printPage(); + } ?>
    diff --git a/settings/templates/log.php b/settings/templates/log.php new file mode 100644 index 00000000000..bcf5258f5f5 --- /dev/null +++ b/settings/templates/log.php @@ -0,0 +1,29 @@ + + * This file is licensed under the Affero General Public License version 3 or later. + * See the COPYING-README file. + */ +$levels=array('Debug','Info','Warning','Error','Fatal'); +?> + +
    + +
    + + + + + + + + + +
    + level];?> + + app;?> + + message;?> + + l('datetime',$entry->time);?> +
    \ No newline at end of file diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 2c219ecf9d4..80d2cb0a86f 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -35,7 +35,7 @@ -
    t('Help translating');?> + t('Help translate');?> @@ -51,6 +51,7 @@

    ownCloud
    + developed by the ownCloud community

    source code licensed freely under AGPL